Lines Matching refs:retval

530     zval retval;  in user_compare_by_value()  local
540 DSG(user_compare_fci).retval = &retval; in user_compare_by_value()
543 return zval_get_long(&retval); in user_compare_by_value()
552 zval retval; in user_compare_by_key() local
559 DSG(user_compare_fci).retval = &retval; in user_compare_by_key()
562 return zval_get_long(&retval); in user_compare_by_key()
570 zval retval; in compare_by_key() local
572 if (compare_function(&retval, (zval*) a, (zval*) b) == SUCCESS) { in compare_by_key()
573 return zval_get_long(&retval); in compare_by_key()
581 zval retval; in compare_by_value() local
585 if (compare_function(&retval, &x->value, &y->value) == SUCCESS) { in compare_by_value()
586 return zval_get_long(&retval); in compare_by_value()
934 zval retval; in ds_htable_apply() local
940 fci.retval = &retval; in ds_htable_apply()
942 if (zend_call_function(&fci, &fci_cache) == FAILURE || Z_ISUNDEF(retval)) { in ds_htable_apply()
947 ZVAL_COPY_VALUE(&bucket->value, &retval); in ds_htable_apply()
955 zval retval; in ds_htable_map() local
962 fci.retval = &retval; in ds_htable_map()
964 if (zend_call_function(&fci, &fci_cache) == FAILURE || Z_ISUNDEF(retval)) { in ds_htable_map()
966 zval_ptr_dtor(&retval); in ds_htable_map()
971 mapped, &bucket->key, &retval, DS_HTABLE_BUCKET_HASH(bucket)); in ds_htable_map()
973 zval_ptr_dtor(&retval); in ds_htable_map()
1002 zval retval; in ds_htable_filter_callback() local
1009 fci.retval = &retval; in ds_htable_filter_callback()
1011 if (zend_call_function(&fci, &fci_cache) == FAILURE || Z_ISUNDEF(retval)) { in ds_htable_filter_callback()
1013 zval_ptr_dtor(&retval); in ds_htable_filter_callback()
1018 if (zend_is_true(&retval)) { in ds_htable_filter_callback()
1023 zval_ptr_dtor(&retval); in ds_htable_filter_callback()
1049 fci.retval = &carry; in ds_htable_reduce()