Lines Matching refs:l

299 	unsigned int l;  in preprocess()  local
319 l = p - i; in preprocess()
322 if (l > 252) { in preprocess()
325 strncpy(ident, i, l); in preprocess()
326 ident[l] = '\0'; in preprocess()
344 l = p - i2; in preprocess()
347 if (l > 252) { in preprocess()
350 strncpy(ident2, i2, l); in preprocess()
351 ident2[l] = '\0'; in preprocess()
383 l = p - start; in preprocess()
387 if (l > 253) { in preprocess()
390 strncpy(pname, start, l); in preprocess()
391 pname[l] = '\0'; in preprocess()
396 zend_hash_str_update(named_params, pname, l, &tmp); in preprocess()
418 l = p - start; in preprocess()
421 if (l > 252) { in preprocess()
424 strncpy(ident, start, l); in preprocess()
425 ident[l] = '\0'; in preprocess()
666 char const *co, *l, *r; in firebird_handle_quoter() local
685 for (l = ZSTR_VAL(unquoted); (r = strchr(l,'\'')); l = r+1) { in firebird_handle_quoter()
686 strncpy(c, l, r-l+1); in firebird_handle_quoter()
687 c += (r-l+1); in firebird_handle_quoter()
693 strncpy(c, l, quotedlen-(c-ZSTR_VAL(quoted_str))-1); in firebird_handle_quoter()
953 HMODULE l = GetModuleHandle("fbclient"); in firebird_handle_get_attribute() local
955 if (!l) { in firebird_handle_get_attribute()
958 info_func = (info_func_t)GetProcAddress(l, "isc_get_client_version"); in firebird_handle_get_attribute()
995 zend_long i = 0, l, sqlcode = isc_sqlcode(s); in pdo_firebird_fetch_error_func() local
1000 while ((sizeof(buf)>(i+2))&&(l = fb_interpret(&buf[i],(sizeof(buf)-i-2),&s))) { in pdo_firebird_fetch_error_func()
1001 i += l; in pdo_firebird_fetch_error_func()