Home | History | Annotate | Download | only in UefiShellLevel1CommandsLib

Lines Matching refs:BinOp

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

123 IN CONST BIN_OPERATOR_TYPE BinOp,
132 // "Compare1 BinOp Compare2"
134 switch (BinOp) {
158 if (BinOp == OperatorGreaterThan) {
192 if (BinOp == OperatorLessThan) {
281 if (BinOp == OperatorGreatorOrEqual) {
315 if (BinOp == OperatorLessOrEqual) {
363 BIN_OPERATOR_TYPE BinOp;
372 BinOp = OperatorMax;
433 // must be 'item binop item' style
437 BinOp = OperatorMax;
513 BinOp = OperatorGreaterThan;
515 BinOp = OperatorLessThan;
517 BinOp = OperatorEqual;
519 BinOp = OperatorNotEqual;
521 BinOp = OperatorGreatorOrEqual;
523 BinOp = OperatorLessOrEqual;
525 BinOp = OperatorEqual;
527 BinOp = OperatorUnisgnedGreaterThan;
529 BinOp = OperatorUnsignedLessThan;
531 BinOp = OperatorUnsignedGreaterOrEqual;
533 BinOp = OperatorUnsignedLessOrEqual;
606 if (Compare1 != NULL && Compare2 != NULL && BinOp != OperatorMax) {
607 OperationResult = TestOperation(Compare1, Compare2, BinOp, CaseInsensitive, ForceStringCompare);