Home
last modified time | relevance | path

Searched refs:length (Results 226 – 250 of 678) sorted by relevance

12345678910>>...28

/php-src/main/
H A Drfc1867.h48 size_t length; member
62 size_t length; member
/php-src/sapi/fpm/tests/
H A Dsocket-uds-too-long-filename-test.phpt33 . '\(found length: %d, maximal length: \d+\)/',
/php-src/ext/snmp/tests/
H A Dsnmp-object-setSecurity_error.phpt66 … for authentication pass phrase '': Generic error (The supplied password length is too short.) in …
69 …or authentication pass phrase 'te': Generic error (The supplied password length is too short.) in …
74 …g a key for privacy pass phrase '': Generic error (The supplied password length is too short.) in …
77 …a key for privacy pass phrase 'ty': Generic error (The supplied password length is too short.) in …
H A Dsnmp3-error.phpt66 … for authentication pass phrase '': Generic error (The supplied password length is too short.) in …
69 …or authentication pass phrase 'te': Generic error (The supplied password length is too short.) in …
73 …g a key for privacy pass phrase '': Generic error (The supplied password length is too short.) in …
76 …a key for privacy pass phrase 'ty': Generic error (The supplied password length is too short.) in …
/php-src/ext/libxml/
H A Dmime_sniff.c98 size_t length = collect_a_sequence_of_code_points(position, end, is_not_quote_or_backslash); in collect_an_http_quoted_string_with_extract_value() local
99 memcpy(ZSTR_VAL(value) + ZSTR_LEN(value), position, length); in collect_an_http_quoted_string_with_extract_value()
100 ZSTR_LEN(value) += length; in collect_an_http_quoted_string_with_extract_value()
101 position += length; in collect_an_http_quoted_string_with_extract_value()
/php-src/Zend/
H A Dzend_operators.c2961 dest[length] = '\0'; in zend_str_tolower_copy()
2969 dest[length] = '\0'; in zend_str_toupper_copy()
2976 return zend_str_tolower_copy((char *)emalloc(length+1), source, length); in zend_str_tolower_dup()
2982 return zend_str_toupper_copy((char *)emalloc(length+1), source, length); in zend_str_toupper_dup()
3014 res[length] = '\0'; in zend_str_tolower_dup_ex()
3170 return ZEND_THREEWAY_COMPARE(MIN(length, len1), MIN(length, len2)); in zend_binary_strncmp()
3216 return ZEND_THREEWAY_COMPARE(MIN(length, len1), MIN(length, len2)); in zend_binary_strncasecmp()
3259 return ZEND_THREEWAY_COMPARE(MIN(length, len1), MIN(length, len2)); in zend_binary_strncasecmp_l()
3517 if (!length) {
3532 length--;
[all …]
H A Dzend_smart_str.h35 …STCALL smart_str_append_escaped_truncated(smart_str *str, const zend_string *value, size_t length);
63 static zend_always_inline char* smart_str_extend(smart_str *dest, size_t length) in smart_str_extend() argument
65 return smart_str_extend_ex(dest, length, false); in smart_str_extend()
166 static zend_always_inline void smart_str_appendl(smart_str *dest, const char *src, size_t length) in smart_str_appendl() argument
168 smart_str_appendl_ex(dest, src, length, false); in smart_str_appendl()
H A Dzend_virtual_cwd.c261 *length = 1; in virtual_getcwd_ex()
278 retval[*length] = '\0'; in virtual_getcwd_ex()
283 *length = 0; in virtual_getcwd_ex()
295 size_t length; in virtual_getcwd() local
303 if (length > size-1) { in virtual_getcwd()
311 memcpy(buf, cwd, length+1); in virtual_getcwd()
1220 if (length == 0) { in virtual_chdir_file()
1223 while(--length < SIZE_MAX && !IS_SLASH(path[length])) { in virtual_chdir_file()
1226 if (length == SIZE_MAX) { in virtual_chdir_file()
1233 length++; in virtual_chdir_file()
[all …]
/php-src/ext/standard/tests/array/
H A Dprev_basic.phpt25 $length = count($array2);
26 for ($i = $length; $i > 0; $i--) {
/php-src/ext/intl/tests/
H A Dresourcebundle_arrayaccess.phpt12 printf( "length: %d\n", count($r) );
35 length: 6
/php-src/ext/dom/lexbor/lexbor/core/
H A Dstrtod.h21 lexbor_strtod_internal(const lxb_char_t *start, size_t length, int exp);
/php-src/ext/standard/tests/file/
H A Dfgets_variation2.phpt23 var_dump( fgets($file_handle) ); // default length
28 var_dump( fgets($file_handle, 10) ); // with specific length
/php-src/ext/standard/tests/file/windows_mb_path/
H A Drecursive_it.phpt2 RecursiveDirectoryIterator with dir path long or of edge case length
9 if (strlen(__DIR__) > 259) die("skip Unsuitable starting path length");
/php-src/ext/hash/
H A Dhash.stub.php35 function hash_update_stream(HashContext $context, $stream, int $length = -1): int {} argument
86 function mhash_keygen_s2k(int $algo, string $password, string $salt, int $length): string|false {}
/php-src/ext/dom/lexbor/lexbor/css/
H A Dbase.h75 size_t length; member
87 size_t length; member
H A Dlog.h56 const lxb_char_t *str, size_t length);
59 lxb_css_log_push(lxb_css_log_t *log, lxb_css_log_type_t type, size_t length);
/php-src/ext/intl/collator/
H A Dcollator_is_numeric.h23 uint8_t collator_is_numeric( UChar *str, int32_t length, zend_long *lval, double *dval, bool allow_…
/php-src/ext/dom/tests/
H A DDOMNode_cloneNode_basic.phpt40 $len = $children->length;
41 for ($index = $children->length - 1; $index >=0; $index--) {
68 for ($index = 0; $index < $children->length; $index++) {
/php-src/ext/standard/tests/strings/
H A Dstr_split_variation6.phpt38 str_split(): Argument #2 ($length) must be greater than 0
127 str_split(): Argument #2 ($length) must be greater than 0
146 str_split(): Argument #2 ($length) must be greater than 0
H A Dchunk_split_variation8.phpt56 chunk_split(): Argument #2 ($length) must be greater than 0
63 chunk_split(): Argument #2 ($length) must be greater than 0
80 chunk_split(): Argument #2 ($length) must be of type int, float given
82 chunk_split(): Argument #2 ($length) must be greater than 0
H A Dbug74041.phpt2 Bug #74041: substr_count with length=0 broken
/php-src/ext/bcmath/libbcmath/src/
H A Dbcmath.h87 bc_num _bc_new_num_ex(size_t length, size_t scale, bool persistent);
149 #define bc_new_num(length, scale) _bc_new_num_ex((length), (scale), 0) argument
/php-src/ext/mbstring/tests/
H A Dmb_decode_numericentity_large_ints.phpt36 …tity immediately after valid decimal entity which is just within maximum length", $ucs4_test1, "\x…
38 …g entity immediately after valid hex entity which is just within maximum length", $ucs4_test2, "\…
57 Starting entity immediately after valid decimal entity which is just within maximum length: 0000002…
58 Starting entity immediately after valid hex entity which is just within maximum length: 00000026000…
/php-src/ext/phar/tests/
H A Dpharfileinfo_getcrc32.phpt16 // compressed file length does not match incompressed length for an uncompressed file
/php-src/ext/dom/lexbor/lexbor/html/tree/
H A Dactive_formatting.h58 if (tree->active_formatting->length == 0) { in lxb_html_tree_active_formatting_current_node()
63 [ (tree->active_formatting->length - 1) ]; in lxb_html_tree_active_formatting_current_node()

Completed in 58 milliseconds

12345678910>>...28