Home
last modified time | relevance | path

Searched refs:l1 (Results 1 – 14 of 14) sorted by relevance

/PHP-5.6/ext/standard/
H A Dlevenshtein.c30 static int reference_levdist(const char *s1, int l1, const char *s2, int l2, int cost_ins, int cost… in reference_levdist() argument
35 if (l1 == 0) { in reference_levdist()
39 return l1 * cost_del; in reference_levdist()
42 if ((l1 > LEVENSHTEIN_MAX_LENGTH) || (l2 > LEVENSHTEIN_MAX_LENGTH)) { in reference_levdist()
51 for (i1 = 0; i1 < l1 ; i1++) { in reference_levdist()
H A Dversioning.c132 long l1, l2; in php_version_compare() local
163 l1 = strtol(p1, NULL, 10); in php_version_compare()
165 compare = sign(l1 - l2); in php_version_compare()
H A Ddns.c534 int l1 = 0, l2 = 0; in php_parserr() local
543 while (l1 < dlen) { in php_parserr()
544 n = cp[l1]; in php_parserr()
545 if ((l1 + n) >= dlen) { in php_parserr()
547 n = dlen - (l1 + 1); in php_parserr()
550 memcpy(tp + l2 , cp + l1 + 1, n); in php_parserr()
551 add_next_index_stringl(entries, cp + l1 + 1, n, 1); in php_parserr()
553 l1 = l1 + n + 1; in php_parserr()
/PHP-5.6/main/
H A Dmergesort.c110 register u_char *f1, *f2, *t, *b, *tp2, *q, *l1, *l2; in php_mergesort() local
142 f2 = l1 = list1 + (p2 - list2); in php_mergesort()
146 while (f1 < l1 && f2 < l2) { in php_mergesort()
149 b = f1, t = l1; in php_mergesort()
218 } else if (f1 < l1) { in php_mergesort()
220 ICOPY_LIST(f1, tp2, l1); in php_mergesort()
222 CCOPY_LIST(f1, tp2, l1); in php_mergesort()
/PHP-5.6/ext/oci8/tests/
H A Dpecl_bug8816.phpt13 $create_1 = "CREATE TABLE t1 (id INTEGER, l1 LONG)";
47 t1.l1, t2.l2
/PHP-5.6/ext/phar/phar/
H A Dclicommand.inc218 function cli_get_SP2($l1, $arg_inf)
220 return str_repeat(' ', $l1 + 2 + 4 + 8);
223 function cli_get_SP3($l1, $l2, $arg_inf)
225 return str_repeat(' ', $l1 + 2 + 4 + 8 + 2 + $l2 + 2);
H A Dpharcommand.inc28 public function cli_get_SP2($l1, $arg_inf)
30 return str_repeat(' ', $l1 + 2 + 4 + 9);
37 * @param string $l1 Eleven
42 function cli_get_SP3($l1, $l2, $arg_inf)
44 return str_repeat(' ', $l1 + 2 + 4 + 9 + 2 + $l2 + 2);
/PHP-5.6/
H A Drun-tests.php2140 function comp_line($l1, $l2, $is_reg) argument
2143 return preg_match('/^'. $l1 . '$/s', $l2);
2145 return !strcmp($l1, $l2);
2223 reset($old1); $k1 = key($old1); $l1 = -2;
2228 if ($k1 == $l1 + 1 || $k2 === null) {
2229 $l1 = $k1;
2237 $l1 = $k1;
H A DREADME.PARAMETER_PARSING_API154 long l1, l2, l3;
166 "lll", &l1, &l2, &l3) == SUCCESS) {
/PHP-5.6/ext/soap/
H A Dphp_sdl.c232 int l1, l2; in sdl_set_uri_credentials() local
245 if (l1 != l2) { in sdl_set_uri_credentials()
247 if (l1 > 11 && in sdl_set_uri_credentials()
249 ctx->sdl->source[l1-3] == ':' && in sdl_set_uri_credentials()
250 ctx->sdl->source[l1-2] == '8' && in sdl_set_uri_credentials()
251 ctx->sdl->source[l1-1] == '0') { in sdl_set_uri_credentials()
252 l1 -= 3; in sdl_set_uri_credentials()
262 if (l1 > 13 && in sdl_set_uri_credentials()
264 ctx->sdl->source[l1-4] == ':' && in sdl_set_uri_credentials()
268 l1 -= 4; in sdl_set_uri_credentials()
[all …]
H A Dphp_http.c321 int l1 = strlen(host); in in_domain() local
323 if (l1 > l2) { in in_domain()
324 return strcmp(host+l1-l2,domain) == 0; in in_domain()
/PHP-5.6/ext/odbc/
H A Dbirdstep.c519 goto l1; in PHP_FUNCTION()
522 l1: in PHP_FUNCTION()
/PHP-5.6/ext/exif/
H A Dexif.c3301 size_t l1, l2=0; in exif_process_APP12() local
3303 if ((l1 = php_strnlen(buffer+2, length-2)) > 0) { in exif_process_APP12()
3304 …exif_iif_add_tag(ImageInfo, SECTION_APP12, "Company", TAG_NONE, TAG_FMT_STRING, l1, buffer+2 TSRML… in exif_process_APP12()
3305 if (length > 2+l1+1) { in exif_process_APP12()
3306 l2 = php_strnlen(buffer+2+l1+1, length-2-l1-1); in exif_process_APP12()
3307 …exif_iif_add_tag(ImageInfo, SECTION_APP12, "Info", TAG_NONE, TAG_FMT_STRING, l2, buffer+2+l1+1 TSR… in exif_process_APP12()
3311 …cref(NULL EXIFERR_CC, ImageInfo, E_NOTICE, "Process section APP12 with l1=%d, l2=%d done", l1, l2); in exif_process_APP12()
/PHP-5.6/Zend/
H A Dzend_operators.c975 long l1 = 1, l2 = Z_LVAL_P(op1), i = Z_LVAL_P(op2); in pow_function() local
991 ZEND_SIGNED_MULTIPLY_LONG(l1, l2, l1, dval, overflow); in pow_function()
1000 ZVAL_DOUBLE(result, (double)l1 * pow(dval, i)); in pow_function()
1006 ZVAL_LONG(result, l1); in pow_function()

Completed in 73 milliseconds