Home | History | Annotate | Download | only in UefiShellLevel1CommandsLib

Lines Matching refs:BinOp

116   @param[in] BinOp              The type of comparison to perform.

126 IN CONST BIN_OPERATOR_TYPE BinOp,
135 // "Compare1 BinOp Compare2"
137 switch (BinOp) {
161 if (BinOp == OperatorGreaterThan) {
195 if (BinOp == OperatorLessThan) {
284 if (BinOp == OperatorGreatorOrEqual) {
318 if (BinOp == OperatorLessOrEqual) {
365 BIN_OPERATOR_TYPE BinOp;
375 BinOp = OperatorMax;
442 // must be 'item binop item' style
446 BinOp = OperatorMax;
522 BinOp = OperatorGreaterThan;
524 BinOp = OperatorLessThan;
526 BinOp = OperatorEqual;
528 BinOp = OperatorNotEqual;
530 BinOp = OperatorGreatorOrEqual;
532 BinOp = OperatorLessOrEqual;
534 BinOp = OperatorEqual;
536 BinOp = OperatorUnisgnedGreaterThan;
538 BinOp = OperatorUnsignedLessThan;
540 BinOp = OperatorUnsignedGreaterOrEqual;
542 BinOp = OperatorUnsignedLessOrEqual;
615 if (Compare1 != NULL && Compare2 != NULL && BinOp != OperatorMax) {
616 OperationResult = TestOperation(Compare1, Compare2, BinOp, CaseInsensitive, ForceStringCompare);