Lines Matching refs:l
298 unsigned int l; in preprocess() local
318 l = p - i; in preprocess()
321 if (l > 252) { in preprocess()
324 strncpy(ident, i, l); in preprocess()
325 ident[l] = '\0'; in preprocess()
343 l = p - i2; in preprocess()
346 if (l > 252) { in preprocess()
349 strncpy(ident2, i2, l); in preprocess()
350 ident2[l] = '\0'; in preprocess()
382 l = p - start; in preprocess()
386 if (l > 253) { in preprocess()
389 strncpy(pname, start, l); in preprocess()
390 pname[l] = '\0'; in preprocess()
395 zend_hash_str_update(named_params, pname, l, &tmp); in preprocess()
417 l = p - start; in preprocess()
420 if (l > 252) { in preprocess()
423 strncpy(ident, start, l); in preprocess()
424 ident[l] = '\0'; in preprocess()
667 char const *co, *l, *r; in firebird_handle_quoter() local
686 for (l = unquoted; (r = strchr(l,'\'')); l = r+1) { in firebird_handle_quoter()
687 strncpy(c, l, r-l+1); in firebird_handle_quoter()
688 c += (r-l+1); in firebird_handle_quoter()
694 strncpy(c, l, *quotedlen-(c-*quoted)-1); in firebird_handle_quoter()
949 HMODULE l = GetModuleHandle("fbclient"); in firebird_handle_get_attribute() local
951 if (!l) { in firebird_handle_get_attribute()
954 info_func = (info_func_t)GetProcAddress(l, "isc_get_client_version"); in firebird_handle_get_attribute()
989 zend_long i = 0, l, sqlcode = isc_sqlcode(s); in pdo_firebird_fetch_error_func() local
994 while ((sizeof(buf)>(i+2))&&(l = fb_interpret(&buf[i],(sizeof(buf)-i-2),&s))) { in pdo_firebird_fetch_error_func()
995 i += l; in pdo_firebird_fetch_error_func()