Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/bmake/
H A Dcond.c600 CondParser_ComparisonOp(CondParser *par, ComparisonOp *out_op) in CondParser_ComparisonOp() argument
605 return par->p += 2, *out_op = LE, true; in CondParser_ComparisonOp()
607 return par->p += 1, *out_op = LT, true; in CondParser_ComparisonOp()
609 return par->p += 2, *out_op = GE, true; in CondParser_ComparisonOp()
611 return par->p += 1, *out_op = GT, true; in CondParser_ComparisonOp()
613 return par->p += 2, *out_op = EQ, true; in CondParser_ComparisonOp()
615 return par->p += 2, *out_op = NE, true; in CondParser_ComparisonOp()