Lines Matching refs:rv

401 …_dimension_ex(int check_inherited, zend_object *object, zval *offset, int type, zval *rv) /* {{{ */  in spl_array_read_dimension_ex()  argument
420 …zend_call_method_with_1_params(object, object->ce, &intern->fptr_offset_get, "offsetGet", rv, offs… in spl_array_read_dimension_ex()
422 if (!Z_ISUNDEF_P(rv)) { in spl_array_read_dimension_ex()
423 return rv; in spl_array_read_dimension_ex()
445 static zval *spl_array_read_dimension(zend_object *object, zval *offset, int type, zval *rv) /* {{{… in spl_array_read_dimension() argument
447 return spl_array_read_dimension_ex(1, object, offset, type, rv); in spl_array_read_dimension()
590 zval rv, *value = NULL, *tmp; in spl_array_has_dimension_ex() local
593 …zend_call_method_with_1_params(object, object->ce, &intern->fptr_offset_has, "offsetExists", &rv, … in spl_array_has_dimension_ex()
595 if (!zend_is_true(&rv)) { in spl_array_has_dimension_ex()
596 zval_ptr_dtor(&rv); in spl_array_has_dimension_ex()
599 zval_ptr_dtor(&rv); in spl_array_has_dimension_ex()
605 value = spl_array_read_dimension_ex(1, object, offset, BP_VAR_R, &rv); in spl_array_has_dimension_ex()
636 value = spl_array_read_dimension_ex(1, object, offset, BP_VAR_R, &rv); in spl_array_has_dimension_ex()
642 if (value == &rv) { in spl_array_has_dimension_ex()
643 zval_ptr_dtor(&rv); in spl_array_has_dimension_ex()
812 …d_property(zend_object *object, zend_string *name, int type, void **cache_slot, zval *rv) /* {{{ */ in spl_array_read_property() argument
820 return spl_array_read_dimension(object, &member, type, rv); in spl_array_read_property()
822 return zend_std_read_property(object, name, type, cache_slot, rv); in spl_array_read_property()
1346 zval rv; in spl_array_object_count_elements() local
1347 zend_call_method_with_0_params(object, intern->std.ce, &intern->fptr_count, "count", &rv); in spl_array_object_count_elements()
1348 if (Z_TYPE(rv) != IS_UNDEF) { in spl_array_object_count_elements()
1349 *count = zval_get_long(&rv); in spl_array_object_count_elements()
1350 zval_ptr_dtor(&rv); in spl_array_object_count_elements()