Lines Matching refs:op1_copy

1000 	zval op1_copy, op2_copy;  in add_function_slow()  local
1001 if (UNEXPECTED(zendi_try_convert_scalar_to_number(op1, &op1_copy) == FAILURE) in add_function_slow()
1014 if (add_function_fast(result, &op1_copy, &op2_copy) == SUCCESS) { in add_function_slow()
1064 zval op1_copy, op2_copy; in sub_function_slow() local
1065 if (UNEXPECTED(zendi_try_convert_scalar_to_number(op1, &op1_copy) == FAILURE) in sub_function_slow()
1078 if (sub_function_fast(result, &op1_copy, &op2_copy) == SUCCESS) { in sub_function_slow()
1133 zval op1_copy, op2_copy; in mul_function_slow() local
1134 if (UNEXPECTED(zendi_try_convert_scalar_to_number(op1, &op1_copy) == FAILURE) in mul_function_slow()
1147 if (mul_function_fast(result, &op1_copy, &op2_copy) == SUCCESS) { in mul_function_slow()
1233 zval op1_copy, op2_copy; in pow_function() local
1234 if (UNEXPECTED(zendi_try_convert_scalar_to_number(op1, &op1_copy) == FAILURE) in pow_function()
1247 if (pow_function_base(result, &op1_copy, &op2_copy) == SUCCESS) { in pow_function()
1317 zval result_copy, op1_copy, op2_copy; in div_function() local
1318 if (UNEXPECTED(zendi_try_convert_scalar_to_number(op1, &op1_copy) == FAILURE) in div_function()
1327 retval = div_function_base(&result_copy, &op1_copy, &op2_copy); in div_function()
1817 zval op1_copy, op2_copy; in concat_function() local
1819 ZVAL_UNDEF(&op1_copy); in concat_function()
1829 ZVAL_STR(&op1_copy, zval_get_string_func(op1)); in concat_function()
1831 zval_ptr_dtor_str(&op1_copy); in concat_function()
1839 op2 = &op1_copy; in concat_function()
1842 op1 = &op1_copy; in concat_function()
1854 zval_ptr_dtor_str(&op1_copy); in concat_function()
1887 zval_ptr_dtor_str(&op1_copy); in concat_function()
1915 zval_ptr_dtor_str(&op1_copy); in concat_function()
2067 zval op1_copy, op2_copy; in zend_compare() local
2170 op1 = _zendi_convert_scalar_to_number_silent(op1, &op1_copy); in zend_compare()