Home
last modified time | relevance | path

Searched refs:count (Results 126 – 150 of 1146) sorted by relevance

12345678910>>...46

/PHP-7.4/ext/spl/
H A Dspl_heap.c60 int count; member
257 heap->count = 0; in spl_ptr_heap_init()
280 heap->count++; in spl_ptr_heap_insert()
292 if (heap->count == 0) { in spl_ptr_heap_top()
305 if (heap->count == 0) { in spl_ptr_heap_delete_top()
354 heap->count = from->count; in spl_ptr_heap_clone()
382 return heap->count; in spl_ptr_heap_count()
498 *count = 0; in spl_heap_object_count_elements()
578 SPL_METHOD(SplHeap, count) in SPL_METHOD() argument
580 zend_long count; in SPL_METHOD() local
[all …]
/PHP-7.4/ext/phar/tests/zip/
H A Dcorrupt_001.phpt2 Phar: corrupted zip (count mismatch)
20 phar error: corrupt zip archive, conflicting file count in end of central directory record in zip-b…
21 phar error: corrupt zip archive, conflicting file count in end of central directory record in zip-b…
/PHP-7.4/ext/standard/tests/strings/
H A Dstr_replace.phpt21 var_dump( $count );
24 var_dump( $count );
27 var_dump( $count );
110 var_dump($count);
117 var_dump($count);
150 var_dump($count);
155 var_dump($count);
162 var_dump($count);
170 var_dump($count);
173 var_dump($count);
[all …]
H A Dchunk_split_variation7.phpt39 for($count = 0; $count < count($values); $count++) {
40 echo "-- Iteration ".($count+1)." --\n";
41 var_dump( chunk_split( $values[$count], $chunklen, $ending) );
H A Dstr_split_variation3.phpt41 for($count = 0; $count < count($values); $count++) {
42 echo "-- Iteration ".($count+1)." --\n";
43 var_dump( str_split($values[$count], $split_length) );
H A Dstr_split_variation7_64bit.phpt40 for($count = 0; $count < count($values); $count++) {
41 echo "-- Iteration ".($count + 1)." --\n";
42 var_dump( str_split($str, $values[$count]) );
/PHP-7.4/ext/ffi/tests/
H A D008.phpt12 var_dump(count($a));
19 var_dump(count($a));
37 FFI\Exception: Attempt to count() on non C array
/PHP-7.4/ext/ldap/tests/
H A Dldap_get_attributes_basic.phpt33 ["count"]=>
44 ["count"]=>
51 ["count"]=>
H A Dldap_mod_ext.phpt98 ["count"]=>
104 ["count"]=>
115 ["count"]=>
124 ["count"]=>
131 ["count"]=>
169 ["count"]=>
H A Dldap_add_ext.phpt64 ["count"]=>
70 ["count"]=>
81 ["count"]=>
88 ["count"]=>
H A Dldap_mod_replace_basic.phpt40 ["count"]=>
46 ["count"]=>
53 ["count"]=>
H A Dldap_search_variation1.phpt37 ["count"]=>
43 ["count"]=>
50 ["count"]=>
/PHP-7.4/ext/mbstring/tests/
H A Dbug43840.phpt2 Test mb_strpos() function : mb_strpos bounds check is byte count rather than a character count
16 * mb_strpos bounds check is byte count rather than a character count:
19 * byte count of the string. Should return error message when passed character count.
H A Dmb_str_split_jp.phpt35 $cnt = count(mb_str_split($enc,$i,$cs));
54 $count = count($array);
57 if($size !== $count) printf("Long string splitting error: actual array size: %d expected: %d\n", $c…
/PHP-7.4/ext/hash/
H A Dhash_snefru.c142 if ((MAX32 - context->count[1]) < (len * 8)) { in PHP_SNEFRUUpdate()
143 context->count[0]++; in PHP_SNEFRUUpdate()
144 context->count[1] = MAX32 - context->count[1]; in PHP_SNEFRUUpdate()
145 context->count[1] = ((uint32_t) len * 8) - context->count[1]; in PHP_SNEFRUUpdate()
147 context->count[1] += (uint32_t) len * 8; in PHP_SNEFRUUpdate()
180 context->state[14] = context->count[0]; in PHP_SNEFRUFinal()
181 context->state[15] = context->count[1]; in PHP_SNEFRUFinal()
/PHP-7.4/ext/standard/
H A Dcrypt_blowfish.c449 static void BF_swap(BF_word *x, int count) in BF_swap() argument
460 } while (--count); in BF_swap()
675 BF_word count; in BF_crypt() local
697 if (count < min || BF_decode(data.binary.salt, &setting[7], 16)) { in BF_crypt()
761 } while (--count); in BF_crypt()
767 count = 64; in BF_crypt()
770 } while (--count); in BF_crypt()
894 (count && (count < 4 || count > 31)) ||
902 if (!count) count = 5;
908 output[4] = '0' + count / 10;
[all …]
/PHP-7.4/ext/intl/tests/
H A Dtransliterator_list_ids_basic.phpt9 var_dump(count(transliterator_list_ids()) > 100);
10 var_dump(count(Transliterator::listIDs()) > 100);
/PHP-7.4/ext/standard/tests/math/
H A Dnumber_format_basic.phpt19 for ($i = 0; $i < count($values); $i++) {
25 for ($i = 0; $i < count($values); $i++) {
31 for ($i = 0; $i < count($values); $i++) {
37 for ($i = 0; $i < count($values); $i++) {
/PHP-7.4/ext/spl/tests/
H A Dbug53144.phpt13 var_dump(count($b));
15 var_dump(count($b));
H A DSplFixedArray_serialize.phpt20 printf("count: %d\n", count($unser));
31 count: 5
/PHP-7.4/ext/pgsql/tests/
H A Dbug72195.phpt9 printf("%x\n", count($val));
13 printf("%x\n", count($val));
/PHP-7.4/Zend/tests/
H A Dbug65051.phpt2 Bug #65051: count() off by one inside unset()
10 var_dump(count($this->array[0]));
H A Dbug71529.phpt2 Bug #71529: Variable references on array elements don't work when using count
7 $a[] = &$a[out(count($a) - 1)];
/PHP-7.4/ext/standard/tests/file/
H A Dbug24482.phpt27 if (count($dirs) != count($globdirs)) {
28 echo "Directory count mismatch\n";
/PHP-7.4/ext/opcache/
H A Dzend_accelerator_util_funcs.h31 void zend_accel_move_user_functions(HashTable *str, uint32_t count, zend_script *script);
32 void zend_accel_move_user_classes(HashTable *str, uint32_t count, zend_script *script);

Completed in 42 milliseconds

12345678910>>...46