Lines Matching refs:b
750 static Linetype op_lt(int *p, Linetype at, int a, Linetype bt, int b) { in op_lt() argument
751 return op_strict(p, a < b, at, bt); in op_lt()
753 static Linetype op_gt(int *p, Linetype at, int a, Linetype bt, int b) { in op_gt() argument
754 return op_strict(p, a > b, at, bt); in op_gt()
756 static Linetype op_le(int *p, Linetype at, int a, Linetype bt, int b) { in op_le() argument
757 return op_strict(p, a <= b, at, bt); in op_le()
759 static Linetype op_ge(int *p, Linetype at, int a, Linetype bt, int b) { in op_ge() argument
760 return op_strict(p, a >= b, at, bt); in op_ge()
762 static Linetype op_eq(int *p, Linetype at, int a, Linetype bt, int b) { in op_eq() argument
763 return op_strict(p, a == b, at, bt); in op_eq()
765 static Linetype op_ne(int *p, Linetype at, int a, Linetype bt, int b) { in op_ne() argument
766 return op_strict(p, a != b, at, bt); in op_ne()
768 static Linetype op_or(int *p, Linetype at, int a, Linetype bt, int b) { in op_or() argument
771 return op_strict(p, a || b, at, bt); in op_or()
773 static Linetype op_and(int *p, Linetype at, int a, Linetype bt, int b) { in op_and() argument
776 return op_strict(p, a && b, at, bt); in op_and()