Lines Matching refs:zval

45 	zval *elements;
85 array->elements = ecalloc(size, sizeof(zval)); in spl_fixedarray_init()
120 array->elements = safe_erealloc(array->elements, size, sizeof(zval), 0); in spl_fixedarray_resize()
121 memset(array->elements + array->size, '\0', sizeof(zval) * (size - array->size)); in spl_fixedarray_resize()
128 array->elements = erealloc(array->elements, sizeof(zval) * size); in spl_fixedarray_resize()
144 static HashTable* spl_fixedarray_object_get_gc(zval *obj, zval **table, int *n) /* {{{{ */ in spl_fixedarray_object_get_gc()
156 static HashTable* spl_fixedarray_object_get_properties(zval *obj) /* {{{{ */ in spl_fixedarray_object_get_properties()
203 zend_object_iterator *spl_fixedarray_get_iterator(zend_class_entry *ce, zval *object, int by_ref);
205 static zend_object *spl_fixedarray_object_new_ex(zend_class_entry *class_type, zval *orig, int clon… in spl_fixedarray_object_new_ex()
297 static zend_object *spl_fixedarray_object_clone(zval *zobject) /* {{{ */ in spl_fixedarray_object_clone()
311 static inline zval *spl_fixedarray_object_read_dimension_helper(spl_fixedarray_object *intern, zval in spl_fixedarray_object_read_dimension_helper()
339 static int spl_fixedarray_object_has_dimension(zval *object, zval *offset, int check_empty);
341 static zval *spl_fixedarray_object_read_dimension(zval *object, zval *offset, int type, zval *rv) /… in spl_fixedarray_object_read_dimension()
352 zval tmp; in spl_fixedarray_object_read_dimension()
371 …array_object_write_dimension_helper(spl_fixedarray_object *intern, zval *offset, zval *value) /* {… in spl_fixedarray_object_write_dimension_helper()
399 static void spl_fixedarray_object_write_dimension(zval *object, zval *offset, zval *value) /* {{{ */ in spl_fixedarray_object_write_dimension()
402 zval tmp; in spl_fixedarray_object_write_dimension()
424 static inline void spl_fixedarray_object_unset_dimension_helper(spl_fixedarray_object *intern, zval in spl_fixedarray_object_unset_dimension_helper()
444 static void spl_fixedarray_object_unset_dimension(zval *object, zval *offset) /* {{{ */ in spl_fixedarray_object_unset_dimension()
462 static inline int spl_fixedarray_object_has_dimension_helper(spl_fixedarray_object *intern, zval *o… in spl_fixedarray_object_has_dimension_helper()
493 static int spl_fixedarray_object_has_dimension(zval *object, zval *offset, int check_empty) /* {{{ … in spl_fixedarray_object_has_dimension()
500 zval rv; in spl_fixedarray_object_has_dimension()
515 static int spl_fixedarray_object_count_elements(zval *object, zend_long *count) /* {{{ */ in spl_fixedarray_object_count_elements()
521 zval rv; in spl_fixedarray_object_count_elements()
540 zval *object = getThis(); in SPL_METHOD()
570 zval *data; in SPL_METHOD()
598 zval *object = getThis(); in SPL_METHOD()
644 zval *data; in SPL_METHOD()
657 zval *element; in SPL_METHOD()
685 zval *element; in SPL_METHOD()
709 zval *object = getThis(); in SPL_METHOD()
725 zval *object = getThis(); in SPL_METHOD()
749 zval *zindex; in SPL_METHOD()
765 zval *zindex, *value; in SPL_METHOD()
786 zval *zindex, *value; in SPL_METHOD()
802 zval *zindex; in SPL_METHOD()
851 static zval *spl_fixedarray_it_get_current_data(zend_object_iterator *iter) /* {{{ */ in spl_fixedarray_it_get_current_data()
853 zval zindex; in spl_fixedarray_it_get_current_data()
859 zval *data; in spl_fixedarray_it_get_current_data()
873 static void spl_fixedarray_it_get_current_key(zend_object_iterator *iter, zval *key) /* {{{ */ in spl_fixedarray_it_get_current_key()
958 zval zindex, *value; in SPL_METHOD()
988 zend_object_iterator *spl_fixedarray_get_iterator(zend_class_entry *ce, zval *object, int by_ref) /… in spl_fixedarray_get_iterator()