Lines Matching refs:begin
91 zval *begin = array->elements + from, *end = array->elements + to; in spl_fixedarray_init_elems() local
93 while (begin != end) { in spl_fixedarray_init_elems()
94 ZVAL_NULL(begin++); in spl_fixedarray_init_elems()
119 static void spl_fixedarray_copy_range(spl_fixedarray *array, zend_long offset, zval *begin, zval *e… in spl_fixedarray_copy_range() argument
122 ZEND_ASSERT(array->size - offset >= end - begin); in spl_fixedarray_copy_range()
125 while (begin != end) { in spl_fixedarray_copy_range()
126 ZVAL_COPY(to++, begin++); in spl_fixedarray_copy_range()
135 zval *begin = from->elements, *end = from->elements + size; in spl_fixedarray_copy_ctor() local
136 spl_fixedarray_copy_range(to, 0, begin, end); in spl_fixedarray_copy_ctor()
146 zval *begin = array->elements + from, *end = array->elements + to; in spl_fixedarray_dtor_range() local
147 while (begin != end) { in spl_fixedarray_dtor_range()
148 zval_ptr_dtor(begin++); in spl_fixedarray_dtor_range()
158 zval *begin = array->elements, *end = array->elements + array->size; in spl_fixedarray_dtor() local
161 while (begin != end) { in spl_fixedarray_dtor()
164 efree(begin); in spl_fixedarray_dtor()