Home
last modified time | relevance | path

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

12345678910>>...14

/PHP-7.4/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()
39 stack->elements = safe_erealloc(stack->elements, stack->size, stack->max, 0); in zend_stack_push()
82 if (stack->elements) { in zend_stack_destroy()
83 efree(stack->elements); in zend_stack_destroy()
84 stack->elements = NULL; in zend_stack_destroy()
93 return stack->elements; in zend_stack_base()
158 if (stack->elements) { in zend_stack_clean()
159 efree(stack->elements); in zend_stack_clean()
160 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-7.4/ext/standard/tests/array/
H A Darray_sum_variation5.phpt2 Test array_sum() function : usage variations - array with reference variables as elements
11 * Testing array_sum() with 'input' having reference variables as elements
14 echo "*** Testing array_sum() : array with elements as reference ***\n";
21 // input array containing elements as reference variables
35 *** Testing array_sum() : array with elements as reference ***
H A Darray_diff_basic.phpt17 //Test indexed array with integers as elements
21 echo "-- Test indexed array with integers as elements --\n";
26 //Test indexed array with strings as elements
30 echo "-- Test indexed array with strings as elements --\n";
34 //Test associative array with strings as keys and integers as elements
38 echo "-- Test associative array with strings as keys and integers as elements --\n";
42 //Test associative array with strings as keys and elements
57 -- Test indexed array with integers as elements --
70 -- Test indexed array with strings as elements --
83 -- Test associative array with strings as keys and integers as elements --
[all …]
H A Darray_combine_error2.phpt6 * Description: Creates an array by using the elements of the first parameter as keys
7 * and the elements of the second as the corresponding values
25 // Testing array_combine with arrays having unequal number of elements
26 echo "\n-- Testing array_combine() function by passing array with unequal number of elements --\n";
40 Warning: array_combine(): Both parameters should have an equal number of elements in %s on line %d
45 Warning: array_combine(): Both parameters should have an equal number of elements in %s on line %d
48 -- Testing array_combine() function by passing array with unequal number of elements --
50 Warning: array_combine(): Both parameters should have an equal number of elements in %s on line %d
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_filter_variation5.phpt6 * Description: Filters elements from the array via the callback.
11 * With default callback function argument, array_filter() removes elements which are interpreted as…
27 echo "*** Testing array_filter() : usage variations - different false elements in 'input' ***\n";
37 // input array with different false elements
69 *** Testing array_filter() : usage variations - different false elements in 'input' ***
H A Duasort_variation10.phpt35 echo "*** Testing uasort() : 'array_arg' with elements as reference ***\n";
37 // different variables which are used as elements of 'array_arg'
43 // array_args an array containing elements with reference variables
59 *** Testing uasort() : 'array_arg' with elements as reference ***
H A Darray_rand.phpt31 Warning: array_rand(): Second argument has to be between 1 and the number of elements in the array …
34 Warning: array_rand(): Second argument has to be between 1 and the number of elements in the array …
37 Warning: array_rand(): Second argument has to be between 1 and the number of elements in the array …
H A Darray_rand_variation5.phpt57 Warning: array_rand(): Second argument has to be between 1 and the number of elements in the array …
62 Warning: array_rand(): Second argument has to be between 1 and the number of elements in the array …
67 Warning: array_rand(): Second argument has to be between 1 and the number of elements in the array …
72 Warning: array_rand(): Second argument has to be between 1 and the number of elements in the array …
H A Darray_push_error2.phpt6 * Description: Pushes elements onto the end of the array
12 * then try and push new elements onto the array
/PHP-7.4/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-7.4/ext/spl/
H A Dspl_fixedarray.c45 zval *elements; member
88 array->elements = NULL; in spl_fixedarray_init()
109 if (array->elements != NULL) { in spl_fixedarray_resize()
111 zval *elements = array->elements; in spl_fixedarray_resize() local
114 array->elements = NULL; in spl_fixedarray_resize()
121 efree(elements); in spl_fixedarray_resize()
125 array->elements = safe_erealloc(array->elements, size, sizeof(zval), 0); in spl_fixedarray_resize()
133 array->elements = erealloc(array->elements, sizeof(zval) * size); in spl_fixedarray_resize()
144 ZVAL_COPY(&to->elements[i], &from->elements[i]); in spl_fixedarray_copy()
154 *table = intern->array.elements; in spl_fixedarray_object_get_gc()
[all …]
/PHP-7.4/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-7.4/ext/dom/tests/
H A Dbug47430.phpt12 $elements = $dom->getElementsByTagName('i');
13 foreach ($elements as $i) {
/PHP-7.4/ext/standard/tests/file/
H A Dfstat_variation8.phpt25 echo "PASSED: all elements are the same\n";
32 PASSED: all elements are the same
/PHP-7.4/azure/
H A Dlsan-suppressions.txt1 leak:acommon::DictInfoList::elements
/PHP-7.4/ext/dba/tests/
H A Ddba014.phpt2 DBA with array key with array containing too many elements
27 Fatal error: Uncaught Error: Key does not have exactly two elements: (key, name) in %sdba014.php:6

Completed in 30 milliseconds

12345678910>>...14