Lines Matching refs:op2_copy

1065 	zval op1_copy, op2_copy;  in add_function_slow()  local
1067 || UNEXPECTED(zendi_try_convert_scalar_to_number(op2, &op2_copy) == FAILURE)) { in add_function_slow()
1079 if (add_function_fast(result, &op1_copy, &op2_copy) == SUCCESS) { in add_function_slow()
1129 zval op1_copy, op2_copy; in sub_function_slow() local
1131 || UNEXPECTED(zendi_try_convert_scalar_to_number(op2, &op2_copy) == FAILURE)) { in sub_function_slow()
1143 if (sub_function_fast(result, &op1_copy, &op2_copy) == SUCCESS) { in sub_function_slow()
1198 zval op1_copy, op2_copy; in mul_function_slow() local
1200 || UNEXPECTED(zendi_try_convert_scalar_to_number(op2, &op2_copy) == FAILURE)) { in mul_function_slow()
1212 if (mul_function_fast(result, &op1_copy, &op2_copy) == SUCCESS) { in mul_function_slow()
1298 zval op1_copy, op2_copy; in pow_function() local
1300 || UNEXPECTED(zendi_try_convert_scalar_to_number(op2, &op2_copy) == FAILURE)) { in pow_function()
1312 if (pow_function_base(result, &op1_copy, &op2_copy) == SUCCESS) { in pow_function()
1382 zval result_copy, op1_copy, op2_copy; in div_function() local
1384 || UNEXPECTED(zendi_try_convert_scalar_to_number(op2, &op2_copy) == FAILURE)) { in div_function()
1392 retval = div_function_base(&result_copy, &op1_copy, &op2_copy); in div_function()
1893 zval op1_copy, op2_copy; in concat_function() local
1896 ZVAL_UNDEF(&op2_copy); in concat_function()
1928 ZVAL_STR(&op2_copy, zval_get_string_func(op2)); in concat_function()
1931 zval_ptr_dtor_str(&op2_copy); in concat_function()
1937 op2 = &op2_copy; in concat_function()
1964 zval_ptr_dtor_str(&op2_copy); in concat_function()
1992 zval_ptr_dtor_str(&op2_copy); in concat_function()
2143 zval op1_copy, op2_copy; in zend_compare() local
2247 op2 = _zendi_convert_scalar_to_number_silent(op2, &op2_copy); in zend_compare()