Lines Matching refs:retval

54 	zval                  *retval;  member
215 zval_ptr_dtor(&intern->retval); in spl_fixedarray_object_free_storage()
225 zend_object_value retval; in spl_fixedarray_object_new_ex() local
232 ALLOC_INIT_ZVAL(intern->retval); in spl_fixedarray_object_new_ex()
255 retval.handlers = &spl_handler_SplFixedArray; in spl_fixedarray_object_new_ex()
264retval.handle = zend_objects_store_put(intern, (zend_objects_store_dtor_t)zend_objects_destroy_obj… in spl_fixedarray_object_new_ex()
315 return retval; in spl_fixedarray_object_new_ex()
375 zval **retval; in spl_fixedarray_object_read_dimension() local
389 zval_ptr_dtor(&intern->retval); in spl_fixedarray_object_read_dimension()
390 MAKE_STD_ZVAL(intern->retval); in spl_fixedarray_object_read_dimension()
391 ZVAL_ZVAL(intern->retval, rv, 1, 1); in spl_fixedarray_object_read_dimension()
392 return intern->retval; in spl_fixedarray_object_read_dimension()
397 retval = spl_fixedarray_object_read_dimension_helper(intern, offset TSRMLS_CC); in spl_fixedarray_object_read_dimension()
398 if (retval) { in spl_fixedarray_object_read_dimension()
399 return *retval; in spl_fixedarray_object_read_dimension()
500 int retval; in spl_fixedarray_object_has_dimension_helper() local
509 retval = 0; in spl_fixedarray_object_has_dimension_helper()
512 retval = 0; in spl_fixedarray_object_has_dimension_helper()
515 retval = 1; in spl_fixedarray_object_has_dimension_helper()
517 retval = 0; in spl_fixedarray_object_has_dimension_helper()
520 retval = 1; in spl_fixedarray_object_has_dimension_helper()
524 return retval; in spl_fixedarray_object_has_dimension_helper()
540 zval_ptr_dtor(&intern->retval); in spl_fixedarray_object_has_dimension()
541 MAKE_STD_ZVAL(intern->retval); in spl_fixedarray_object_has_dimension()
542 ZVAL_ZVAL(intern->retval, rv, 1, 1); in spl_fixedarray_object_has_dimension()
543 return zend_is_true(intern->retval); in spl_fixedarray_object_has_dimension()
561 zval_ptr_dtor(&intern->retval); in spl_fixedarray_object_count_elements()
562 MAKE_STD_ZVAL(intern->retval); in spl_fixedarray_object_count_elements()
563 ZVAL_ZVAL(intern->retval, rv, 1, 1); in spl_fixedarray_object_count_elements()
564 convert_to_long(intern->retval); in spl_fixedarray_object_count_elements()
565 *count = (long) Z_LVAL_P(intern->retval); in spl_fixedarray_object_count_elements()