/PHP-8.0/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-8.0/ext/standard/ |
H A D | versioning.c | 126 long l1, l2; in php_version_compare() local 157 l1 = strtol(p1, NULL, 10); in php_version_compare() 159 compare = ZEND_NORMALIZE_BOOL(l1 - l2); in php_version_compare()
|
H A D | dns.c | 563 int l1 = 0, l2 = 0; in php_parserr() local 572 while (l1 < dlen) { in php_parserr() 573 n = cp[l1]; in php_parserr() 574 if ((l1 + n) >= dlen) { in php_parserr() 576 n = dlen - (l1 + 1); in php_parserr() 579 memcpy(ZSTR_VAL(tp) + l2 , cp + l1 + 1, n); in php_parserr() 580 add_next_index_stringl(&entries, (char *) cp + l1 + 1, n); in php_parserr() 582 l1 = l1 + n + 1; in php_parserr()
|
H A D | array.c | 170 zend_long l1, l2; in php_array_key_compare_unstable_i() local 177 l1 = (zend_long)f->h; in php_array_key_compare_unstable_i() 198 l1 = 0; in php_array_key_compare_unstable_i() 230 size_t l1, l2; in php_array_key_compare_string_case_unstable_i() local 236 l1 = f->key->len; in php_array_key_compare_string_case_unstable_i() 239 l1 = buf1 + sizeof(buf1) - 1 - s1; in php_array_key_compare_string_case_unstable_i() 255 size_t l1, l2; in php_array_key_compare_string_unstable_i() local 261 l1 = f->key->len; in php_array_key_compare_string_unstable_i() 264 l1 = buf1 + sizeof(buf1) - 1 - s1; in php_array_key_compare_string_unstable_i() 280 size_t l1, l2; in php_array_key_compare_string_natural_general() local [all …]
|
/PHP-8.0/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-8.0/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-8.0/ext/soap/ |
H A D | php_sdl.c | 229 size_t l1, l2; in sdl_set_uri_credentials() local 242 if (l1 != l2) { in sdl_set_uri_credentials() 244 if (l1 > 11 && in sdl_set_uri_credentials() 246 ctx->sdl->source[l1-3] == ':' && in sdl_set_uri_credentials() 247 ctx->sdl->source[l1-2] == '8' && in sdl_set_uri_credentials() 248 ctx->sdl->source[l1-1] == '0') { in sdl_set_uri_credentials() 249 l1 -= 3; in sdl_set_uri_credentials() 259 if (l1 > 13 && in sdl_set_uri_credentials() 261 ctx->sdl->source[l1-4] == ':' && in sdl_set_uri_credentials() 265 l1 -= 4; in sdl_set_uri_credentials() [all …]
|
H A D | php_http.c | 323 int l1 = strlen(host); in in_domain() local 325 if (l1 > l2) { in in_domain() 326 return strcmp(host+l1-l2,domain) == 0; in in_domain()
|
/PHP-8.0/docs/ |
H A D | parameter-parsing-api.md | 177 zend_long l1, l2, l3; 189 "lll", &l1, &l2, &l3) == SUCCESS) {
|
/PHP-8.0/ |
H A D | run-tests.php | 2860 function comp_line(string $l1, string $l2, bool $is_reg) argument 2863 return preg_match('/^' . $l1 . '$/s', $l2); 2865 return !strcmp($l1, $l2); 2961 $l1 = -2; 2992 if ($k1 == $l1 + 1 || $k2 === null) { 2994 $l1 = $k1; 3005 $l1 = $k1;
|
/PHP-8.0/ext/exif/ |
H A D | exif.c | 3748 size_t l1, l2=0; in exif_process_APP12() local 3750 if ((l1 = php_strnlen(buffer+2, length-2)) > 0) { in exif_process_APP12() 3751 exif_iif_add_tag(ImageInfo, SECTION_APP12, "Company", TAG_NONE, TAG_FMT_STRING, l1, buffer+2, l1); in exif_process_APP12() 3752 if (length > 2+l1+1) { in exif_process_APP12() 3753 l2 = php_strnlen(buffer+2+l1+1, length-2-l1-1); in exif_process_APP12() 3754 …exif_iif_add_tag(ImageInfo, SECTION_APP12, "Info", TAG_NONE, TAG_FMT_STRING, l2, buffer+2+l1+1, l2… in exif_process_APP12() 3758 …cref(NULL EXIFERR_CC, ImageInfo, E_NOTICE, "Process section APP12 with l1=%d, l2=%d done", l1, l2); in exif_process_APP12()
|
/PHP-8.0/ext/opcache/jit/dynasm/ |
H A D | minilua.c | 1310 size_t l1; 1311 for(l1=l;l1>=step;l1-=step) 3111 else if(*l1==(-1)) 3112 *l1=l2; 3114 int list=*l1; 7322 l1=l1-l2; 7323 while(l1>0&&(init=(const char*)memchr(s1,*s2,l1))!=NULL){ 7328 l1-=init-s1; 7361 size_t l1,l2; 7366 else if((size_t)(init)>l1)init=(ptrdiff_t)l1; [all …]
|
/PHP-8.0/Zend/ |
H A D | zend_operators.c | 1172 zend_long l1 = 1, l2 = Z_LVAL_P(op1), i = Z_LVAL_P(op2); in pow_function_base() local 1188 ZEND_SIGNED_MULTIPLY_LONG(l1, l2, l1, dval, overflow); in pow_function_base() 1197 ZVAL_DOUBLE(result, (double)l1 * pow(dval, i)); in pow_function_base() 1203 ZVAL_LONG(result, l1); in pow_function_base()
|