Home
last modified time | relevance | path

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

/freebsd/contrib/bmake/
H A Dcond.c559 CondParser_ComparisonOp(CondParser *par, ComparisonOp *out_op) in CondParser_ComparisonOp() argument
564 return par->p += 2, *out_op = LE, true; in CondParser_ComparisonOp()
566 return par->p += 1, *out_op = LT, true; in CondParser_ComparisonOp()
568 return par->p += 2, *out_op = GE, true; in CondParser_ComparisonOp()
570 return par->p += 1, *out_op = GT, true; in CondParser_ComparisonOp()
572 return par->p += 2, *out_op = EQ, true; in CondParser_ComparisonOp()
574 return par->p += 2, *out_op = NE, true; in CondParser_ComparisonOp()