Lines Matching refs:zindex
796 zval *zindex; in SPL_METHOD() local
799 if (zend_parse_parameters(ZEND_NUM_ARGS(), "z", &zindex) == FAILURE) { in SPL_METHOD()
805 RETURN_BOOL(spl_fixedarray_object_has_dimension_helper(intern, zindex, 0)); in SPL_METHOD()
812 zval *zindex, *value; in SPL_METHOD() local
815 if (zend_parse_parameters(ZEND_NUM_ARGS(), "z", &zindex) == FAILURE) { in SPL_METHOD()
820 value = spl_fixedarray_object_read_dimension_helper(intern, zindex); in SPL_METHOD()
834 zval *zindex, *value; in SPL_METHOD() local
837 if (zend_parse_parameters(ZEND_NUM_ARGS(), "zz", &zindex, &value) == FAILURE) { in SPL_METHOD()
842 spl_fixedarray_object_write_dimension_helper(intern, zindex, value); in SPL_METHOD()
850 zval *zindex; in SPL_METHOD() local
853 if (zend_parse_parameters(ZEND_NUM_ARGS(), "z", &zindex) == FAILURE) { in SPL_METHOD()
858 spl_fixedarray_object_unset_dimension_helper(intern, zindex); in SPL_METHOD()
901 zval zindex; in spl_fixedarray_it_get_current_data() local
909 ZVAL_LONG(&zindex, object->current); in spl_fixedarray_it_get_current_data()
911 data = spl_fixedarray_object_read_dimension_helper(object, &zindex); in spl_fixedarray_it_get_current_data()
912 zval_ptr_dtor(&zindex); in spl_fixedarray_it_get_current_data()
1007 zval zindex, *value; in SPL_METHOD() local
1014 ZVAL_LONG(&zindex, intern->current); in SPL_METHOD()
1016 value = spl_fixedarray_object_read_dimension_helper(intern, &zindex); in SPL_METHOD()
1018 zval_ptr_dtor(&zindex); in SPL_METHOD()