Home
last modified time | relevance | path

Searched refs:elements (Results 1 – 25 of 234) sorted by relevance

12345678910

/PHP-8.0/Zend/
H A Dzend_stack.c23 #define ZEND_STACK_ELEMENT(stack, n) ((void *)((char *) (stack)->elements + (stack)->size * (n)))
30 stack->elements = NULL; in zend_stack_init()
38 stack->elements = safe_erealloc(stack->elements, stack->size, stack->max, 0); in zend_stack_push()
80 if (stack->elements) { in zend_stack_destroy()
81 efree(stack->elements); in zend_stack_destroy()
82 stack->elements = NULL; in zend_stack_destroy()
89 return stack->elements; in zend_stack_base()
154 if (stack->elements) { in zend_stack_clean()
155 efree(stack->elements); in zend_stack_clean()
156 stack->elements = NULL; in zend_stack_clean()
H A Dzend_ptr_stack.c26 stack->top_element = stack->elements = NULL; in zend_ptr_stack_init_ex()
74 if (stack->elements) { in zend_ptr_stack_destroy()
75 pefree(stack->elements, stack->persistent); in zend_ptr_stack_destroy()
85 func(stack->elements[i]); in zend_ptr_stack_apply()
94 func(stack->elements[i++]); in zend_ptr_stack_reverse_apply()
106 pefree(stack->elements[i], stack->persistent); in zend_ptr_stack_clean()
110 stack->top_element = stack->elements; in zend_ptr_stack_clean()
H A Dzend_llist.c198 zend_llist_element **elements; in zend_llist_sort() local
205 elements = (zend_llist_element **) emalloc(l->count * sizeof(zend_llist_element *)); in zend_llist_sort()
207 ptr = &elements[0]; in zend_llist_sort()
213 zend_sort(elements, l->count, sizeof(zend_llist_element *), in zend_llist_sort()
216 l->head = elements[0]; in zend_llist_sort()
217 elements[0]->prev = NULL; in zend_llist_sort()
220 elements[i]->prev = elements[i-1]; in zend_llist_sort()
221 elements[i-1]->next = elements[i]; in zend_llist_sort()
223 elements[i-1]->next = NULL; in zend_llist_sort()
224 l->tail = elements[i-1]; in zend_llist_sort()
[all …]
H A Dzend_ptr_stack.h25 void **elements; member
51 …stack->elements = (void **) perealloc(stack->elements, (sizeof(void *) * (stack->max)), stack->per… in END_EXTERN_C()
52 stack->top_element = stack->elements+stack->top; \ in END_EXTERN_C()
115 return stack->elements[stack->top - 1]; in zend_ptr_stack_top()
/PHP-8.0/ext/standard/tests/array/
H A Darray_sum_variation5.phpt2 Test array_sum() function : usage variations - array with reference variables as elements
6 * Testing array_sum() with 'input' having reference variables as elements
9 echo "*** Testing array_sum() : array with elements as reference ***\n";
16 // input array containing elements as reference variables
30 *** Testing array_sum() : array with elements as reference ***
H A Darray_diff_basic.phpt11 //Test indexed array with integers as elements
15 echo "-- Test indexed array with integers as elements --\n";
20 //Test indexed array with strings as elements
24 echo "-- Test indexed array with strings as elements --\n";
28 //Test associative array with strings as keys and integers as elements
32 echo "-- Test associative array with strings as keys and integers as elements --\n";
36 //Test associative array with strings as keys and elements
51 -- Test indexed array with integers as elements --
64 -- Test indexed array with strings as elements --
77 -- Test associative array with strings as keys and integers as elements --
[all …]
H A Duasort_variation10.phpt23 echo "*** Testing uasort() : 'array_arg' with elements as reference ***\n";
25 // different variables which are used as elements of 'array_arg'
31 // array_args an array containing elements with reference variables
47 *** Testing uasort() : 'array_arg' with elements as reference ***
H A Drange.phpt11 echo "-- An array of elements from low to high --\n";
13 echo "\n-- An array of elements from high to low --\n";
17 echo "-- An array of elements from low to high --\n";
19 echo "\n-- An array of elements from high to low --\n";
23 echo "-- An array of elements from low to high --\n";
55 -- An array of elements from low to high --
79 -- An array of elements from high to low --
104 -- An array of elements from low to high --
128 -- An array of elements from high to low --
153 -- An array of elements from low to high --
[all …]
H A Darray_combine_error2.phpt27 // Testing array_combine with arrays having unequal number of elements
28 echo "\n-- Testing array_combine() function by passing array with unequal number of elements --\n";
44 array_combine(): Argument #1 ($keys) and argument #2 ($values) must have the same number of elements
46 array_combine(): Argument #1 ($keys) and argument #2 ($values) must have the same number of elements
47 -- Testing array_combine() function by passing array with unequal number of elements --
48 array_combine(): Argument #1 ($keys) and argument #2 ($values) must have the same number of elements
H A Darray_filter_variation5.phpt6 * With default callback function argument, array_filter() removes elements which are interpreted as…
21 echo "*** Testing array_filter() : usage variations - different false elements in 'input' ***\n";
31 // input array with different false elements
63 *** Testing array_filter() : usage variations - different false elements in 'input' ***
H A Darray_rand.phpt43 array_rand(): Argument #2 ($num) must be between 1 and the number of elements in argument #1 ($arra…
44 array_rand(): Argument #2 ($num) must be between 1 and the number of elements in argument #1 ($arra…
45 array_rand(): Argument #2 ($num) must be between 1 and the number of elements in argument #1 ($arra…
H A Darray_rand_variation5.phpt68 array_rand(): Argument #2 ($num) must be between 1 and the number of elements in argument #1 ($arra…
71 array_rand(): Argument #2 ($num) must be between 1 and the number of elements in argument #1 ($arra…
74 array_rand(): Argument #2 ($num) must be between 1 and the number of elements in argument #1 ($arra…
77 array_rand(): Argument #2 ($num) must be between 1 and the number of elements in argument #1 ($arra…
H A Dusort_variation9.phpt24 // different variables which are used as elements of $array_arg
30 // array_args an array containing elements with reference variables
/PHP-8.0/ext/spl/
H A Dspl_fixedarray.c44 zval *elements; member
78 if (array->elements) { in spl_fixedarray_empty()
89 array->elements = NULL; in spl_fixedarray_default_ctor()
96 zval *begin = array->elements + from, *end = array->elements + to; in spl_fixedarray_init_elems()
135 zval *begin = from->elements, *end = from->elements + size; in spl_fixedarray_copy_ctor()
144 zval *begin = array->elements + from, *end = array->elements + to; in spl_fixedarray_dtor_range()
156 zval *begin = array->elements, *end = array->elements + array->size; in spl_fixedarray_dtor()
157 array->elements = NULL; in spl_fixedarray_dtor()
183 array->elements = NULL; in spl_fixedarray_resize()
185 array->elements = safe_erealloc(array->elements, size, sizeof(zval), 0); in spl_fixedarray_resize()
[all …]
/PHP-8.0/tests/lang/
H A DforeachLoop.009.phpt8 echo "\nRemove elements from a referenced array during loop\n";
16 echo "\nRemove elements from a referenced array during loop, using &\$value\n";
24 echo "\nAdd elements to a referenced array during loop\n";
38 echo "\nAdd elements to a referenced array during loop, using &\$value\n";
54 Remove elements from a referenced array during loop
59 Remove elements from a referenced array during loop, using &$value
63 Add elements to a referenced array during loop
68 Add elements to a referenced array during loop, using &$value
H A DforeachLoop.002.phpt29 echo "\nPushing elements onto an unreferenced array.\n";
43 echo "\nPushing elements onto an unreferenced array, using &\$value.\n";
57 echo "\nPopping elements off an unreferenced array.\n";
65 echo "\nPopping elements off an unreferenced array, using &\$value.\n";
108 Pushing elements onto an unreferenced array.
124 Pushing elements onto an unreferenced array, using &$value.
159 Popping elements off an unreferenced array.
166 Popping elements off an unreferenced array, using &$value.
H A DforeachLoop.012.phpt8 function withRefValue($elements, $transform) {
9 echo "\n---( Array with $elements element(s): )---\n";
11 for ($i=0; $i<$elements; $i++) {
35 echo "\nPopping elements off end of an unreferenced array";
42 echo "\n\n\nShift elements off start of an unreferenced array";
56 echo "\n\n\nAdding elements to the end of an unreferenced array";
63 echo "\n\n\nAdding elements to the start of an unreferenced array";
72 Popping elements off end of an unreferenced array
141 Shift elements off start of an unreferenced array
279 Adding elements to the end of an unreferenced array
[all …]
/PHP-8.0/Zend/tests/
H A Dlist_012.phpt2 Disallow empty elements in normal arrays
10 Fatal error: Cannot use empty array elements in arrays in %s on line %d
H A Dlist_013.phpt2 Disallow tail empty elements in normal arrays
10 Fatal error: Cannot use empty array elements in arrays in %s on line %d
H A Dbug75426.phpt2 Bug #75426: "Cannot use empty array elements" reports wrong position
15 Fatal error: Cannot use empty array elements in arrays in %s on line 5
H A Dbug78010.phpt15 $obj = [new stdClass, new stdClass]; //This must have at least 2 elements
21 for ($i = 0; $i < 2; ++$i) { //This must run >=2 (increasing the number of elements in the array *2…
/PHP-8.0/ext/dom/tests/
H A Dbug47430.phpt12 $elements = $dom->getElementsByTagName('i');
13 foreach ($elements as $i) {
/PHP-8.0/ext/standard/tests/file/
H A Dfstat_variation8.phpt25 echo "PASSED: all elements are the same\n";
31 PASSED: all elements are the same
/PHP-8.0/.github/
H A Dlsan-suppressions.txt1 leak:acommon::DictInfoList::elements
/PHP-8.0/ext/dba/tests/
H A Ddba014.phpt2 DBA with array key with array containing too many elements
27 Fatal error: Uncaught Error: dba_insert(): Argument #1 ($key) must have exactly two elements: "key"…

Completed in 44 milliseconds

12345678910