Home
last modified time | relevance | path

Searched refs:count (Results 51 – 75 of 1167) sorted by path

12345678910>>...47

/php-src/Zend/tests/
H A Dgc_045.phpt2 GC 045: Total count persisted when GC is rerun due to destructor call
H A Dget_defined_functions_basic.phpt42 if (count($user) == 2 && in_array("foo", $user) && in_array("helloworld", $user)) {
H A Dgh10072.phpt35 public function stream_read(int $count)
H A Dgh11189.phpt14 for ($i = count($a); $i > 0; --$i) {
H A Dgh11189_1.phpt14 for ($i = count($a); $i > 0; --$i) {
H A Dglobals.inc6 var_dump(count($_SERVER));
H A Dglobals_001.phpt11 var_dump(count($_SERVER));
H A Dglobals_002.phpt11 var_dump(count($_SERVER));
H A Dglobals_003.phpt15 var_dump(count($_SERVER));
H A Dobjects_024.phpt15 return self::$bar[count(self::$bar)-1];
24 var_dump($a, count(foo::$bar), test()->whatever);
29 var_dump($a, count(foo::$bar), test()->whatever);
34 var_dump($a, count(foo::$bar), test()->whatever);
H A Dvm_stack_with_arg_extend.phpt7 var_dump(count($args));
/php-src/Zend/tests/generators/errors/
H A Dcount_error.phpt11 count($gen);
18 count(): Argument #1 ($value) must be of type Countable|array, Generator given
/php-src/Zend/tests/stack_limit/
H A Dstack_limit_004.phpt24 return count($e->getTrace());
/php-src/Zend/tests/type_declarations/
H A Darray_001.phpt6 echo count($a)."\n";
/php-src/Zend/tests/weakrefs/
H A Dweakmap_basic_map_behavior.phpt7 var_dump(count($map));
15 var_dump(count($map));
63 var_dump($map->count());
65 var_dump($map->count());
H A Dweakmap_object_reference.phpt11 var_dump(count($map));
/php-src/Zend/
H A Dzend_API.c2381 static void zend_sort_modules(void *base, size_t count, size_t siz, compare_func_t compare, swap_fu… in zend_sort_modules() argument
2385 Bucket *end = b1 + count; in zend_sort_modules()
2859 int count=0, unload=0; in zend_register_functions() local
2977 zend_unregister_functions(functions, count, target_function_table); in zend_register_functions()
3118 count++; in zend_register_functions()
3132 zend_unregister_functions(functions, count, target_function_table); in zend_register_functions()
3142 ZEND_API void zend_unregister_functions(const zend_function_entry *functions, int count, HashTable … in zend_unregister_functions() argument
3154 if (count!=-1 && i>=count) { in zend_unregister_functions()
H A Dzend_API.h379 ZEND_API void zend_unregister_functions(const zend_function_entry *functions, int count, HashTable …
H A Dzend_alloc.c190 #define ZEND_MM_LRUN(count) (ZEND_MM_IS_LRUN | ((count) << ZEND_MM_LRUN_PAGES_OFFSET)) argument
2079 zend_long count = 0; local
2086 count++;
2100 return count;
2105 zend_long count = 0; local
2112 count += zend_mm_find_leaks_small(p, i, 0, leak);
2119 count++;
2131 return count;
2136 zend_long count = 0; local
2145 count++;
[all …]
H A Dzend_arena.h79 static zend_always_inline void* zend_arena_calloc(zend_arena **arena_ptr, size_t count, size_t unit… in zend_arena_calloc() argument
85 size = zend_safe_address(unit_size, count, 0, &overflow); in zend_arena_calloc()
87 …oreturn(E_ERROR, "Possible integer overflow in zend_arena_calloc() (%zu * %zu)", unit_size, count); in zend_arena_calloc()
175 static zend_always_inline void* zend_arena_calloc(zend_arena **arena_ptr, size_t count, size_t unit… in zend_arena_calloc() argument
181 size = zend_safe_address(unit_size, count, 0, &overflow); in zend_arena_calloc()
183 …oreturn(E_ERROR, "Possible integer overflow in zend_arena_calloc() (%zu * %zu)", unit_size, count); in zend_arena_calloc()
H A Dzend_compile.c67 static inline uint32_t zend_alloc_cache_slots(unsigned count) { in zend_alloc_cache_slots() argument
68 if (count == 0) { in zend_alloc_cache_slots()
77 op_array->cache_size += count * sizeof(void*); in zend_alloc_cache_slots()
2415 ZEND_ASSERT(count >= offset); in zend_delayed_compile_end()
2416 for (i = offset; i < count; ++i) { in zend_delayed_compile_end()
2568 size_t count = 0; in zend_type_get_num_classes() local
2573 count += ZEND_TYPE_LIST(*list_type)->num_types; in zend_type_get_num_classes()
2576 count += 1; in zend_type_get_num_classes()
2579 return count; in zend_type_get_num_classes()
3105 uint32_t i = count; in zend_delayed_compile_prop()
[all …]
H A Dzend_execute.c3880 int count = EX(func)->op_array.last_var; in i_free_compiled_variables() local
3881 while (EXPECTED(count != 0)) { in i_free_compiled_variables()
3884 count--; in i_free_compiled_variables()
3943 uint32_t count; in zend_copy_extra_args() local
3959 count = num_args - first_extra_arg; in zend_copy_extra_args()
3967 } while (--count); in zend_copy_extra_args()
3978 } while (--count); in zend_copy_extra_args()
3985 uint32_t count = last - first; in zend_init_cvs() local
3991 } while (--count); in zend_init_cvs()
H A Dzend_execute.h302 uint32_t count = ZEND_CALL_NUM_ARGS(call) - call->func->op_array.num_args; in zend_vm_stack_free_extra_args_ex() local
307 } while (--count); in zend_vm_stack_free_extra_args_ex()
H A Dzend_gc.c1419 int count = 0; in gc_collect_white() local
1429 count++; in gc_collect_white()
1602 return count; in gc_collect_white()
1609 int count = 0; in gc_collect_roots() local
1642 return count; in gc_collect_roots()
1651 int count = 0; in gc_remove_nested_data_from_buffer() local
1657 count++; in gc_remove_nested_data_from_buffer()
1662 count++; in gc_remove_nested_data_from_buffer()
1772 return count; in gc_remove_nested_data_from_buffer()
1792 int count; in zend_gc_collect_cycles() local
[all …]
H A Dzend_interfaces.stub.php61 public function count(): int; function

Completed in 143 milliseconds

12345678910>>...47