Home
last modified time | relevance | path

Searched refs:op_strict (Results 1 – 1 of 1) sorted by relevance

/linux-6.1.9/scripts/
Dunifdef.c746 static Linetype op_strict(int *p, int v, Linetype at, Linetype bt) { in op_strict() function
751 return op_strict(p, a < b, at, bt); in op_lt()
754 return op_strict(p, a > b, at, bt); in op_gt()
757 return op_strict(p, a <= b, at, bt); in op_le()
760 return op_strict(p, a >= b, at, bt); in op_ge()
763 return op_strict(p, a == b, at, bt); in op_eq()
766 return op_strict(p, a != b, at, bt); in op_ne()
771 return op_strict(p, a || b, at, bt); in op_or()
776 return op_strict(p, a && b, at, bt); in op_and()