Home
last modified time | relevance | path

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

12345678910>>...16

/PHP-7.1/Zend/
H A Dzend_stack.c25 #define ZEND_STACK_ELEMENT(stack, n) ((void *)((char *) (stack)->elements + (stack)->size * (n)))
32 stack->elements = NULL; in zend_stack_init()
41 stack->elements = safe_erealloc(stack->elements, stack->size, stack->max, 0); in zend_stack_push()
84 if (stack->elements) { in zend_stack_destroy()
85 efree(stack->elements); in zend_stack_destroy()
86 stack->elements = NULL; in zend_stack_destroy()
95 return stack->elements; in zend_stack_base()
160 if (stack->elements) { in zend_stack_clean()
161 efree(stack->elements); in zend_stack_clean()
162 stack->elements = NULL; in zend_stack_clean()
H A Dzend_ptr_stack.c30 stack->top_element = stack->elements = NULL; in zend_ptr_stack_init_ex()
78 if (stack->elements) { in zend_ptr_stack_destroy()
79 pefree(stack->elements, stack->persistent); in zend_ptr_stack_destroy()
89 func(stack->elements[i]); in zend_ptr_stack_apply()
101 pefree(stack->elements[i], stack->persistent); in zend_ptr_stack_clean()
105 stack->top_element = stack->elements; in zend_ptr_stack_clean()
H A Dzend_llist.c200 zend_llist_element **elements; in zend_llist_sort() local
207 elements = (zend_llist_element **) emalloc(l->count * sizeof(zend_llist_element *)); in zend_llist_sort()
209 ptr = &elements[0]; in zend_llist_sort()
215 zend_sort(elements, l->count, sizeof(zend_llist_element *), in zend_llist_sort()
218 l->head = elements[0]; in zend_llist_sort()
219 elements[0]->prev = NULL; in zend_llist_sort()
222 elements[i]->prev = elements[i-1]; in zend_llist_sort()
223 elements[i-1]->next = elements[i]; in zend_llist_sort()
225 elements[i-1]->next = NULL; in zend_llist_sort()
226 l->tail = elements[i-1]; in zend_llist_sort()
[all …]
H A Dzend_ptr_stack.h27 void **elements; member
52 …stack->elements = (void **) perealloc(stack->elements, (sizeof(void *) * (stack->max)), stack->per… in END_EXTERN_C()
53 stack->top_element = stack->elements+stack->top; \ in END_EXTERN_C()
116 return stack->elements[stack->top - 1]; in zend_ptr_stack_top()
/PHP-7.1/ext/standard/tests/array/
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_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_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 Darray_rand_variation2.phpt96 Warning: array_rand(): Second argument has to be between 1 and the number of elements in the array …
104 Warning: array_rand(): Second argument has to be between 1 and the number of elements in the array …
109 Warning: array_rand(): Second argument has to be between 1 and the number of elements in the array …
138 Warning: array_rand(): Second argument has to be between 1 and the number of elements in the array …
143 Warning: array_rand(): Second argument has to be between 1 and the number of elements in the array …
148 Warning: array_rand(): Second argument has to be between 1 and the number of elements in the array …
153 Warning: array_rand(): Second argument has to be between 1 and the number of elements in the array …
158 Warning: array_rand(): Second argument has to be between 1 and the number of elements in the array …
163 Warning: array_rand(): Second argument has to be between 1 and the number of elements in the array …
171 Warning: array_rand(): Second argument has to be between 1 and the number of elements in the array …
[all …]
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 …
/PHP-7.1/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.1/ext/spl/
H A Dspl_fixedarray.c47 zval *elements; member
90 array->elements = NULL; in spl_fixedarray_init()
114 zval_ptr_dtor(&(array->elements[i])); in spl_fixedarray_resize()
117 if (array->elements) { in spl_fixedarray_resize()
118 efree(array->elements); in spl_fixedarray_resize()
119 array->elements = NULL; in spl_fixedarray_resize()
122 array->elements = safe_erealloc(array->elements, size, sizeof(zval), 0); in spl_fixedarray_resize()
130 array->elements = erealloc(array->elements, sizeof(zval) * size); in spl_fixedarray_resize()
141 ZVAL_COPY(&to->elements[i], &from->elements[i]); in spl_fixedarray_copy()
151 *table = intern->array.elements; in spl_fixedarray_object_get_gc()
[all …]
H A Dspl_heap.c58 zval *elements; member
244 heap->elements = erealloc(heap->elements, heap->max_size * 2 * sizeof(zval)); in spl_ptr_heap_insert()
251 heap->elements[i] = heap->elements[(i-1)/2]; in spl_ptr_heap_insert()
269 return Z_ISUNDEF(heap->elements[0])? NULL : &heap->elements[0]; in spl_ptr_heap_top()
289 if(j != heap->count && heap->cmp(&heap->elements[j+1], &heap->elements[j], cmp_userdata) > 0) { in spl_ptr_heap_delete_top()
295 heap->elements[i] = heap->elements[j]; in spl_ptr_heap_delete_top()
323 memcpy(heap->elements, from->elements, sizeof(zval)*from->max_size); in spl_ptr_heap_clone()
326 heap->ctor(&heap->elements[i]); in spl_ptr_heap_clone()
337 heap->dtor(&heap->elements[i]); in spl_ptr_heap_destroy()
340 efree(heap->elements); in spl_ptr_heap_destroy()
[all …]
/PHP-7.1/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
/PHP-7.1/ext/simplexml/
H A DREADME6 2) numeric indices denote elements
16 always results in iteration of 'node_name' elements. So no further
19 When an elements TEXT data is being accessed through a property
31 At the moment property access to multiple elements of the same
/PHP-7.1/ext/standard/
H A Dvar_unserializer.c378 while (elements-- > 0) { in process_nested_data()
500 zend_long elements; in object_common1() local
507 elements = parse_iv2((*p) + 2, p); in object_common1()
520 return elements; in object_common1()
1153 zend_long elements; in php_var_unserialize_internal() local
1290 if (elements < 0) { in php_var_unserialize_internal()
1349 if (elements < 0 || elements >= HT_MAX_SIZE) { in php_var_unserialize_internal()
1353 array_init_size(rval, elements); in php_var_unserialize_internal()
1354 if (elements) { in php_var_unserialize_internal()
1393 zend_long elements; in php_var_unserialize_internal() local
[all …]
H A Dvar_unserializer.re382 while (elements-- > 0) {
504 zend_long elements;
511 elements = parse_iv2((*p) + 2, p);
524 return elements;
801 if (elements < 0 || elements >= HT_MAX_SIZE) {
805 array_init_size(rval, elements);
806 if (elements) {
820 zend_long elements;
824 if (elements < 0 || elements >= HT_MAX_SIZE) {
832 zend_long elements;
[all …]
/PHP-7.1/ext/dom/tests/
H A Dbug47430.phpt12 $elements = $dom->getElementsByTagName('i');
13 foreach ($elements as $i) {
/PHP-7.1/ext/standard/tests/file/
H A Dfstat_variation8.phpt25 echo "PASSED: all elements are the same\n";
32 PASSED: all elements are the same

Completed in 71 milliseconds

12345678910>>...16