Lines Matching refs:op2
116 static inline int higher_prec(int op1, int op2) in higher_prec() argument
118 return arith_prec(op1) < arith_prec(op2); in higher_prec()
208 int op2; in binop2() local
216 op2 = last_token; in binop2()
217 if (op2 >= ARITH_BINOP_MIN && op2 < ARITH_BINOP_MAX && in binop2()
218 higher_prec(op2, op)) { in binop2()
219 b = binop2(b, op2, arith_prec(op), noeval); in binop2()
220 op2 = last_token; in binop2()
225 if (op2 < ARITH_BINOP_MIN || op2 >= ARITH_BINOP_MAX || in binop2()
226 arith_prec(op2) >= precedence) in binop2()
229 op = op2; in binop2()