Home
last modified time | relevance | path

Searched refs:length (Results 126 – 150 of 533) sorted by relevance

12345678910>>...22

/PHP-8.0/Zend/
H A Dzend_language_scanner.h55 const char *text, size_t length, void *context);
64 int length; member
/PHP-8.0/ext/standard/tests/streams/
H A Dbug64166_3.phpt10 'line-length' => 74
22 'line-length' => 6
H A Dbug64166_2.phpt13 'line-length' => 74
24 'line-length' => 6
/PHP-8.0/ext/dom/tests/
H A DDOMCharacterData_appendData_basic.phpt21 echo "CDATA Length (one append): " . $cdatanode->length . "\n";
24 echo "CDATA Length (two appends): " . $cdatanode->length . "\n";
H A DDOMComment_appendData_basic_Sullivan.phpt21 echo "Comment Length (one append): " . $commentnode->length . "\n";
24 echo "Comment Length (two appends): " . $commentnode->length . "\n";
H A DDOMText_appendData_basic.phpt21 echo "Text Length (one append): " . $textnode->length . "\n";
24 echo "Text Length (two appends): " . $textnode->length . "\n";
/PHP-8.0/ext/mbstring/libmbfl/mbfl/
H A Dmbfl_memory_device.h41 size_t length; member
48 size_t length; member
/PHP-8.0/ext/mbstring/tests/
H A Dmb_substr_variation5.phpt2 Test mb_substr() function : usage variations - pass different integers to $length arg
11 * Test how mb_substr() behaves when passed a range of integers as $length argument
38 if (strlen($a) == mb_strlen($b, 'UTF-8')) { // should return same length
41 echo "Difference in length of ASCII string and multibyte string\n";
H A Dmb_substr_variation7.phpt2 Test mb_substr() function : usage variations - pass different integers to $length arg
11 * Test how mb_substr() behaves when passed a range of integers as $length argument
43 if (strlen($a) == mb_strlen($b, 'UTF-8')) { // should return same length
46 echo "Difference in length of ASCII string and multibyte string\n";
/PHP-8.0/ext/mysqli/tests/
H A Dmysqli_field_seek.phpt88 if ($field->length != $charsetInfo->max_length) {
89 printf("[005] Expecting length %d got %d\n",
143 ["length"]=>
172 ["length"]=>
201 ["length"]=>
233 ["length"]=>
/PHP-8.0/ext/mbstring/
H A Dmbstring.h62 const char *input, size_t length,
65 const char *input, size_t length, const mbfl_encoding *to_encoding,
72 MBSTRING_API int php_mb_check_encoding(const char *input, size_t length, const mbfl_encoding *encod…
/PHP-8.0/ext/intl/tests/
H A Dresourcebundle_arrayaccess.phpt12 printf( "length: %d\n", count($r) );
30 length: 6
/PHP-8.0/ext/intl/
H A Dintl_convertcpp.cpp65 int32_t capacity = from.length() * 3; in intl_charFromString()
75 u_strToUTF8WithSub(ZSTR_VAL(u8res), capacity, &actual_len, utf16buf, from.length(), in intl_charFromString()
/PHP-8.0/main/
H A Drfc1867.h38 size_t length; member
52 size_t length; member
/PHP-8.0/ext/phar/tests/
H A D011.phpt15 // compressed file length does not match incompressed length for an uncompressed file
H A D016b.phpt2 Phar::mapPhar invalid file (gzipped file length is too short)
13 // file length is too short
/PHP-8.0/ext/mysqlnd/
H A Dmysqlnd_alloc.c511 static char * _mysqlnd_pememdup(const char * const ptr, size_t length, zend_bool persistent MYSQLND… in _mysqlnd_pememdup() argument
525 ret = pemalloc_rel(REAL_SIZE(length + 1), persistent); in _mysqlnd_pememdup()
528 memcpy(dest, ptr, length); in _mysqlnd_pememdup()
532 *(size_t *) ret = length; in _mysqlnd_pememdup()
542 static char * _mysqlnd_pestrndup(const char * const ptr, size_t length, zend_bool persistent MYSQLN… in _mysqlnd_pestrndup() argument
556 ret = pemalloc_rel(REAL_SIZE(length + 1), persistent); in _mysqlnd_pestrndup()
558 size_t l = length; in _mysqlnd_pestrndup()
568 *(size_t *) ret = length; in _mysqlnd_pestrndup()
749 char * dest = pemalloc_rel(length, persistent); in mysqlnd_zend_mm_pememdup()
751 memcpy(dest, ptr, length); in mysqlnd_zend_mm_pememdup()
[all …]
/PHP-8.0/ext/zlib/tests/
H A Dgzread_basic.phpt18 foreach ($lengths as $length) {
19 var_dump(gzread( $h, $length ) );
H A Dgzgets_basic.phpt18 foreach ($lengths as $length) {
19 var_dump(gzgets( $h, $length ) );
/PHP-8.0/ext/standard/tests/array/
H A Darray_slice_variation1.phpt64 array_slice(): Argument #3 ($length) must be of type ?int, string given
65 array_slice(): Argument #3 ($length) must be of type ?int, string given
/PHP-8.0/ext/hash/
H A Dhash_gost.c262 if (context->length + len < 32) { in PHP_GOSTUpdate()
263 memcpy(&context->buffer[context->length], input, len); in PHP_GOSTUpdate()
264 context->length += (unsigned char)len; in PHP_GOSTUpdate()
266 size_t i = 0, r = (context->length + len) % 32; in PHP_GOSTUpdate()
268 if (context->length) { in PHP_GOSTUpdate()
269 i = 32 - context->length; in PHP_GOSTUpdate()
270 memcpy(&context->buffer[context->length], input, i); in PHP_GOSTUpdate()
280 context->length = (unsigned char)r; in PHP_GOSTUpdate()
288 if (context->length) { in PHP_GOSTFinal()
313 && ctx->length < sizeof(ctx->buffer)) { in php_gost_unserialize()
/PHP-8.0/ext/intl/collator/
H A Dcollator_is_numeric.h22 zend_uchar collator_is_numeric( UChar *str, int32_t length, zend_long *lval, double *dval, bool all…
/PHP-8.0/ext/hash/tests/
H A Dhash_pbkdf2_error.phpt46 echo "\n-- Testing hash_pbkdf2() function with invalid length --\n";
68 -- Testing hash_pbkdf2() function with invalid length --
69 hash_pbkdf2(): Argument #5 ($length) must be greater than or equal to 0
/PHP-8.0/ext/standard/tests/strings/
H A Dstr_split_variation7.phpt40 str_split(): Argument #2 ($length) must be greater than 0
105 str_split(): Argument #2 ($length) must be greater than 0
124 str_split(): Argument #2 ($length) must be greater than 0
/PHP-8.0/ext/gd/libgd/
H A Dgd_bmp.c304 memcpy(uncompressed_row, row, length); in compress_row()
307 for (pixel = 0; pixel < length; pixel++) { in compress_row()
366 if (length < 1 || length > 128) { in build_rle_packet()
371 if (packet_type == BMP_RLE_TYPE_RAW && length < 3) { in build_rle_packet()
373 for (i = 0; i < length; i++) { in build_rle_packet()
383 memset(row, length, 1); in build_rle_packet()
389 compressed_size = 2 + length; in build_rle_packet()
393 memset(row, length, 1); in build_rle_packet()
396 memcpy(row, data, length); in build_rle_packet()
397 row += length; in build_rle_packet()
[all …]

Completed in 55 milliseconds

12345678910>>...22