Searched refs:op_strict (Results 1 – 1 of 1) sorted by relevance
| /freebsd-12-stable/usr.bin/unifdef/ |
| D | unifdef.c | 876 static Linetype op_strict(long *p, long v, Linetype at, Linetype bt) { in op_strict() function 881 return op_strict(p, a < b, at, bt); in op_lt() 884 return op_strict(p, a > b, at, bt); in op_gt() 887 return op_strict(p, a <= b, at, bt); in op_le() 890 return op_strict(p, a >= b, at, bt); in op_ge() 893 return op_strict(p, a == b, at, bt); in op_eq() 896 return op_strict(p, a != b, at, bt); in op_ne() 901 return op_strict(p, a || b, at, bt); in op_or() 906 return op_strict(p, a && b, at, bt); in op_and() 909 return op_strict(p, a << b, at, bt); in op_blsh() [all …]
|