Lines Matching refs:at
746 static Linetype op_strict(int *p, int v, Linetype at, Linetype bt) { in op_strict() argument
747 if(at == LT_IF || bt == LT_IF) return (LT_IF); in op_strict()
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
769 if (!strictlogic && (at == LT_TRUE || bt == LT_TRUE)) in op_or()
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
774 if (!strictlogic && (at == LT_FALSE || bt == LT_FALSE)) in op_and()
776 return op_strict(p, a && b, at, bt); in op_and()