Lines Matching refs:rv
390 …c zval *spl_fixedarray_object_read_dimension(zend_object *object, zval *offset, int type, zval *rv) in spl_fixedarray_object_read_dimension() argument
402 …instance_method_with_1_params(object->ce->arrayaccess_funcs_ptr->zf_offsetget, object, rv, offset); in spl_fixedarray_object_read_dimension()
403 if (!Z_ISUNDEF_P(rv)) { in spl_fixedarray_object_read_dimension()
404 return rv; in spl_fixedarray_object_read_dimension()
514 zval rv; in spl_fixedarray_object_has_dimension() local
516 …ance_method_with_1_params(object->ce->arrayaccess_funcs_ptr->zf_offsetexists, object, &rv, offset); in spl_fixedarray_object_has_dimension()
517 bool result = zend_is_true(&rv); in spl_fixedarray_object_has_dimension()
518 zval_ptr_dtor(&rv); in spl_fixedarray_object_has_dimension()
533 zval rv; in spl_fixedarray_object_count_elements() local
534 zend_call_known_instance_method_with_0_params(intern->fptr_count, object, &rv); in spl_fixedarray_object_count_elements()
535 if (!Z_ISUNDEF(rv)) { in spl_fixedarray_object_count_elements()
536 *count = zval_get_long(&rv); in spl_fixedarray_object_count_elements()
537 zval_ptr_dtor(&rv); in spl_fixedarray_object_count_elements()