Home
last modified time | relevance | path

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

12345678910>>...53

/PHP-7.3/ext/spl/
H A Dspl_heap.c60 int count; member
228 heap->count = 0; in spl_ptr_heap_init()
249 heap->count++; in spl_ptr_heap_insert()
261 if (heap->count == 0) { in spl_ptr_heap_top()
274 if (heap->count == 0) { in spl_ptr_heap_delete_top()
315 heap->count = from->count; in spl_ptr_heap_clone()
342 return heap->count; in spl_ptr_heap_count()
466 *count = 0; in spl_heap_object_count_elements()
543 SPL_METHOD(SplHeap, count) in SPL_METHOD() argument
545 zend_long count; in SPL_METHOD() local
[all …]
/PHP-7.3/ext/standard/tests/strings/
H A Dstrtok_variation7.phpt23 for( $count = 1; $count <=6; $count++ ) {
24 echo "\n-- Token $count is --\n";
33 for( $count = 1; $count <=10; $count++ ) {
34 echo "\n-- Token $count is --\n";
H A Dfprintf_error.phpt23 Warning: Wrong parameter count for fprintf() in %sfprintf_error.php on line %d
26 Warning: Wrong parameter count for fprintf() in %sfprintf_error.php on line %d
29 Warning: Wrong parameter count for fprintf() in %sfprintf_error.php on line %d
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 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.3/main/streams/
H A Dmemory.c60 tmp = emalloc(ms->fpos + count); in php_stream_memory_write()
65 ms->fsize = ms->fpos + count; in php_stream_memory_write()
68 count = 0; in php_stream_memory_write()
69 if (count) { in php_stream_memory_write()
72 ms->fpos += count; in php_stream_memory_write()
74 return count; in php_stream_memory_write()
87 count = 0; in php_stream_memory_read()
90 count = ms->fsize - ms->fpos; in php_stream_memory_read()
92 if (count) { in php_stream_memory_read()
96 ms->fpos += count; in php_stream_memory_read()
[all …]
/PHP-7.3/ext/sqlite3/tests/
H A Dsqlite3stmt_paramCount_basic.phpt30 echo 'Param count for query ' . ($key + 1) . ":\n";
49 Param count for query 1:
51 Param count for query 2:
53 Param count for query 3:
55 Param count for query 4:
H A Dsqlite3_openblob_wrongparams.phpt2 SQLite3::blobOpen test, testing stream with wrong parameter count
22 public function stream_read($count)
24 $ret = substr(self::$string, $this->position, $count);
63 echo "Open BLOB with wrong parameter count\n";
75 Open BLOB with wrong parameter count
/PHP-7.3/Zend/
H A Dzend_ptr_stack.h36 ZEND_API void zend_ptr_stack_n_push(zend_ptr_stack *stack, int count, ...);
37 ZEND_API void zend_ptr_stack_n_pop(zend_ptr_stack *stack, int count, ...);
45 #define ZEND_PTR_STACK_RESIZE_IF_NEEDED(stack, count) \ in END_EXTERN_C() argument
46 if (stack->top+count > stack->max) { \ in END_EXTERN_C()
50 } while (stack->top+count > stack->max); \ in END_EXTERN_C()
/PHP-7.3/ext/standard/tests/array/
H A Darray_count_values2.phpt21 Warning: array_count_values(): Can only count STRING and INTEGER values! in %s on line %d
23 Warning: array_count_values(): Can only count STRING and INTEGER values! in %s on line %d
25 Warning: array_count_values(): Can only count STRING and INTEGER values! in %s on line %d
H A Drange_bug71132.phpt5 var_dump(count(range(PHP_INT_MIN + 513, PHP_INT_MIN)));
6 var_dump(count(range(PHP_INT_MIN, PHP_INT_MIN + 513)));
H A Darray_map_variation16.phpt31 for($count = 0; $count < count($callback_names); $count++)
33 echo "-- Iteration ".($count + 1)." --\n";
34 var_dump( array_map($callback_names[$count], $arr1) );
/PHP-7.3/ext/spl/tests/
H A Dbug69970.phpt6 $count = 10;
13 global $count;
15 if (--$count > 0) {
H A Dspl_002.phpt8 function count()
16 var_dump(count($a));
/PHP-7.3/ext/standard/tests/general_functions/
H A Dis_countable_with_variables.phpt15 var_dump(count($foo));
20 count($bar);
32 Warning: count(): Parameter must be an array or an object that implements Countable in %s on line %d
/PHP-7.3/Zend/tests/
H A Dbug70685.phpt8 $c = (new ReflectionMethod('SplStack', 'count'))->getClosure(new SplStack);
12 $c = (new ReflectionMethod('SplStack', 'count'))->getClosure(new SplStack);
18 Warning: Cannot bind method SplDoublyLinkedList::count() to object of class cls in %s on line %d
/PHP-7.3/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] = (len * 8) - context->count[1]; in PHP_SNEFRUUpdate()
147 context->count[1] += 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.3/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.3/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.
/PHP-7.3/ext/ldap/tests/
H A Dldap_mod_ext.phpt98 ["count"]=>
104 ["count"]=>
115 ["count"]=>
124 ["count"]=>
131 ["count"]=>
169 ["count"]=>
H A Dldap_get_attributes_basic.phpt33 ["count"]=>
44 ["count"]=>
51 ["count"]=>
H A Dldap_add_ext.phpt64 ["count"]=>
70 ["count"]=>
81 ["count"]=>
88 ["count"]=>
/PHP-7.3/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.3/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++) {

Completed in 81 milliseconds

12345678910>>...53