Lines Matching refs:i

106 		long i;  in spl_fixedarray_resize()  local
108 for (i = 0; i < array->size; i++) { in spl_fixedarray_resize()
109 if (array->elements[i]) { in spl_fixedarray_resize()
110 zval_ptr_dtor(&(array->elements[i])); in spl_fixedarray_resize()
122 long i; in spl_fixedarray_resize() local
124 for (i = size; i < array->size; i++) { in spl_fixedarray_resize()
125 if (array->elements[i]) { in spl_fixedarray_resize()
126 zval_ptr_dtor(&(array->elements[i])); in spl_fixedarray_resize()
138 int i; in spl_fixedarray_copy() local
139 for (i = 0; i < from->size; i++) { in spl_fixedarray_copy()
140 if (from->elements[i]) { in spl_fixedarray_copy()
141 Z_ADDREF_P(from->elements[i]); in spl_fixedarray_copy()
142 to->elements[i] = from->elements[i]; in spl_fixedarray_copy()
144 to->elements[i] = NULL; in spl_fixedarray_copy()
171 int i = 0; in spl_fixedarray_object_get_properties() local
176 for (i = 0; i < intern->array->size; i++) { in spl_fixedarray_object_get_properties()
177 if (intern->array->elements[i]) { in spl_fixedarray_object_get_properties()
178 zend_hash_index_update(ht, i, (void *)&intern->array->elements[i], sizeof(zval *), NULL); in spl_fixedarray_object_get_properties()
179 Z_ADDREF_P(intern->array->elements[i]); in spl_fixedarray_object_get_properties()
181 zend_hash_index_update(ht, i, (void *)&EG(uninitialized_zval_ptr), sizeof(zval *), NULL); in spl_fixedarray_object_get_properties()
186 for (i = intern->array->size; i < j; ++i) { in spl_fixedarray_object_get_properties()
187 zend_hash_index_del(ht, i); in spl_fixedarray_object_get_properties()
199 long i; in spl_fixedarray_object_free_storage() local
202 for (i = 0; i < intern->array->size; i++) { in spl_fixedarray_object_free_storage()
203 if (intern->array->elements[i]) { in spl_fixedarray_object_free_storage()
204 zval_ptr_dtor(&(intern->array->elements[i])); in spl_fixedarray_object_free_storage()
672 int i = 0; in SPL_METHOD() local
673 for (; i < intern->array->size; i++) { in SPL_METHOD()
674 if (intern->array->elements[i]) { in SPL_METHOD()
675 …zend_hash_index_update(Z_ARRVAL_P(return_value), i, (void *)&intern->array->elements[i], sizeof(zv… in SPL_METHOD()
676 Z_ADDREF_P(intern->array->elements[i]); in SPL_METHOD()
678 …zend_hash_index_update(Z_ARRVAL_P(return_value), i, (void *)&EG(uninitialized_zval_ptr), sizeof(zv… in SPL_METHOD()
746 long i = 0; in SPL_METHOD() local
758 array->elements[i] = value; in SPL_METHOD()
759 i++; in SPL_METHOD()