Lines Matching refs:a
874 static Linetype op_lt(long *p, Linetype at, long a, Linetype bt, long b) { in op_lt() argument
875 return op_strict(p, a < b, at, bt); in op_lt()
877 static Linetype op_gt(long *p, Linetype at, long a, Linetype bt, long b) { in op_gt() argument
878 return op_strict(p, a > b, at, bt); in op_gt()
880 static Linetype op_le(long *p, Linetype at, long a, Linetype bt, long b) { in op_le() argument
881 return op_strict(p, a <= b, at, bt); in op_le()
883 static Linetype op_ge(long *p, Linetype at, long a, Linetype bt, long b) { in op_ge() argument
884 return op_strict(p, a >= b, at, bt); in op_ge()
886 static Linetype op_eq(long *p, Linetype at, long a, Linetype bt, long b) { in op_eq() argument
887 return op_strict(p, a == b, at, bt); in op_eq()
889 static Linetype op_ne(long *p, Linetype at, long a, Linetype bt, long b) { in op_ne() argument
890 return op_strict(p, a != b, at, bt); in op_ne()
892 static Linetype op_or(long *p, Linetype at, long a, Linetype bt, long b) { in op_or() argument
895 return op_strict(p, a || b, at, bt); in op_or()
897 static Linetype op_and(long *p, Linetype at, long a, Linetype bt, long b) { in op_and() argument
900 return op_strict(p, a && b, at, bt); in op_and()