/PHP-7.4/ext/standard/tests/file/windows_links/ |
H A D | bug76335.phpt | 18 $l1 = $d1 . DIRECTORY_SEPARATOR . "b"; 29 var_dump(link($d1 . DIRECTORY_SEPARATOR . ".." . DIRECTORY_SEPARATOR . "file", $l1)); 41 $l1 = $d1 . DIRECTORY_SEPARATOR . "b"; 44 unlink($l1);
|
/PHP-7.4/ext/standard/ |
H A D | levenshtein.c | 29 static zend_long reference_levdist(const char *s1, size_t l1, const char *s2, size_t l2, zend_long … 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 D | versioning.c | 128 long l1, l2; in php_version_compare() local 159 l1 = strtol(p1, NULL, 10); in php_version_compare() 161 compare = ZEND_NORMALIZE_BOOL(l1 - l2); in php_version_compare()
|
H A D | dns.c | 572 int l1 = 0, l2 = 0; in php_parserr() local 581 while (l1 < dlen) { in php_parserr() 582 n = cp[l1]; in php_parserr() 583 if ((l1 + n) >= dlen) { in php_parserr() 585 n = dlen - (l1 + 1); in php_parserr() 588 memcpy(ZSTR_VAL(tp) + l2 , cp + l1 + 1, n); in php_parserr() 589 add_next_index_stringl(&entries, (char *) cp + l1 + 1, n); in php_parserr() 591 l1 = l1 + n + 1; in php_parserr()
|
H A D | array.c | 141 zend_long l1, l2; in php_array_key_compare() local 148 l1 = (zend_long)f->h; in php_array_key_compare() 169 l1 = 0; in php_array_key_compare() 218 size_t l1, l2; in php_array_key_compare_string_case() local 224 l1 = f->key->len; in php_array_key_compare_string_case() 227 l1 = buf1 + sizeof(buf1) - 1 - s1; in php_array_key_compare_string_case() 251 size_t l1, l2; in php_array_key_compare_string() local 257 l1 = f->key->len; in php_array_key_compare_string() 260 l1 = buf1 + sizeof(buf1) - 1 - s1; in php_array_key_compare_string() 284 size_t l1, l2; in php_array_key_compare_string_natural_general() local [all …]
|
/PHP-7.4/main/ |
H A D | mergesort.c | 108 register u_char *f1, *f2, *t, *b, *tp2, *q, *l1, *l2; in php_mergesort() local 140 f2 = l1 = list1 + (p2 - list2); in php_mergesort() 144 while (f1 < l1 && f2 < l2) { in php_mergesort() 147 b = f1, t = l1; in php_mergesort() 216 } else if (f1 < l1) { in php_mergesort() 218 ICOPY_LIST(f1, tp2, l1); in php_mergesort() 220 CCOPY_LIST(f1, tp2, l1); in php_mergesort()
|
/PHP-7.4/ext/oci8/tests/ |
H A D | pecl_bug8816.phpt | 13 $create_1 = "CREATE TABLE t1 (id INTEGER, l1 LONG)"; 47 t1.l1, t2.l2
|
/PHP-7.4/ext/phar/phar/ |
H A D | clicommand.inc | 218 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 D | pharcommand.inc | 28 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-7.4/ext/soap/ |
H A D | php_sdl.c | 231 size_t l1, l2; in sdl_set_uri_credentials() local 244 if (l1 != l2) { in sdl_set_uri_credentials() 246 if (l1 > 11 && in sdl_set_uri_credentials() 248 ctx->sdl->source[l1-3] == ':' && in sdl_set_uri_credentials() 249 ctx->sdl->source[l1-2] == '8' && in sdl_set_uri_credentials() 250 ctx->sdl->source[l1-1] == '0') { in sdl_set_uri_credentials() 251 l1 -= 3; in sdl_set_uri_credentials() 261 if (l1 > 13 && in sdl_set_uri_credentials() 263 ctx->sdl->source[l1-4] == ':' && in sdl_set_uri_credentials() 267 l1 -= 4; in sdl_set_uri_credentials() [all …]
|
H A D | php_http.c | 324 int l1 = strlen(host); in in_domain() local 326 if (l1 > l2) { in in_domain() 327 return strcmp(host+l1-l2,domain) == 0; in in_domain()
|
/PHP-7.4/docs/ |
H A D | parameter-parsing-api.md | 174 zend_long l1, l2, l3; 186 "lll", &l1, &l2, &l3) == SUCCESS) {
|
/PHP-7.4/ |
H A D | run-tests.php | 2776 function comp_line($l1, $l2, $is_reg) argument 2779 return preg_match('/^' . $l1 . '$/s', $l2); 2781 return !strcmp($l1, $l2); 2861 $l1 = -2; 2868 if ($k1 == $l1 + 1 || $k2 === null) { 2869 $l1 = $k1; 2877 $l1 = $k1;
|
/PHP-7.4/ext/exif/ |
H A D | exif.c | 3797 size_t l1, l2=0; in exif_process_APP12() local 3799 if ((l1 = php_strnlen(buffer+2, length-2)) > 0) { in exif_process_APP12() 3800 exif_iif_add_tag(ImageInfo, SECTION_APP12, "Company", TAG_NONE, TAG_FMT_STRING, l1, buffer+2, l1); in exif_process_APP12() 3801 if (length > 2+l1+1) { in exif_process_APP12() 3802 l2 = php_strnlen(buffer+2+l1+1, length-2-l1-1); in exif_process_APP12() 3803 …exif_iif_add_tag(ImageInfo, SECTION_APP12, "Info", TAG_NONE, TAG_FMT_STRING, l2, buffer+2+l1+1, l2… in exif_process_APP12() 3807 …cref(NULL EXIFERR_CC, ImageInfo, E_NOTICE, "Process section APP12 with l1=%d, l2=%d done", l1, l2); in exif_process_APP12()
|
/PHP-7.4/Zend/ |
H A D | zend_operators.c | 1168 zend_long l1 = 1, l2 = Z_LVAL_P(op1), i = Z_LVAL_P(op2); in pow_function() local 1184 ZEND_SIGNED_MULTIPLY_LONG(l1, l2, l1, dval, overflow); in pow_function() 1193 ZVAL_DOUBLE(result, (double)l1 * pow(dval, i)); in pow_function() 1199 ZVAL_LONG(result, l1); in pow_function()
|