Home | History | Annotate | Download | only in program

Lines Matching refs:COND_EQ

425    return COND_EQ;
437 case COND_EQ: return (condCode == COND_EQ);
438 case COND_NE: return (condCode != COND_EQ);
440 case COND_GE: return (condCode == COND_GT || condCode == COND_EQ);
441 case COND_LE: return (condCode == COND_LT || condCode == COND_EQ);