Lines Matching refs:t4

548 	zend_long op1_min, op2_min, op1_max, op2_max, t1, t2, t3, t4;  in zend_inference_calc_binary_op_range()  local
606 t4 = op1_max * op2_max; in zend_inference_calc_binary_op_range()
615 (double)t4 != (double)op1_max * (double)op2_max) { in zend_inference_calc_binary_op_range()
621 tmp->min = MIN(MIN(t1, t2), MIN(t3, t4)); in zend_inference_calc_binary_op_range()
622 tmp->max = MAX(MAX(t1, t2), MAX(t3, t4)); in zend_inference_calc_binary_op_range()
643 t4 = op1_max / op2_max; in zend_inference_calc_binary_op_range()
652 t4 != (zend_long)((double)op1_max / (double)op2_max)) { in zend_inference_calc_binary_op_range()
658 tmp->min = MIN(MIN(t1, t2), MIN(t3, t4)); in zend_inference_calc_binary_op_range()
659 tmp->max = MAX(MAX(t1, t2), MAX(t3, t4)); in zend_inference_calc_binary_op_range()
684 t4 = (op2_max == -1) ? 0 : (op1_max % op2_max); in zend_inference_calc_binary_op_range()
685 tmp->min = MIN(MIN(t1, t2), MIN(t3, t4)); in zend_inference_calc_binary_op_range()
686 tmp->max = MAX(MAX(t1, t2), MAX(t3, t4)); in zend_inference_calc_binary_op_range()
707 t4 = op1_max << op2_max; in zend_inference_calc_binary_op_range()
708 tmp->min = MIN(MIN(t1, t2), MIN(t3, t4)); in zend_inference_calc_binary_op_range()
709 tmp->max = MAX(MAX(t1, t2), MAX(t3, t4)); in zend_inference_calc_binary_op_range()
730 t4 = op1_max >> op2_max; in zend_inference_calc_binary_op_range()
731 tmp->min = MIN(MIN(t1, t2), MIN(t3, t4)); in zend_inference_calc_binary_op_range()
732 tmp->max = MAX(MAX(t1, t2), MAX(t3, t4)); in zend_inference_calc_binary_op_range()