• Home
  • Raw
  • Download

Lines Matching refs:Compare1

124   IN CONST CHAR16             *Compare1,  in TestOperation()  argument
140 …if (ForceStringCompare || !ShellIsHexOrDecimalNumber(Compare1, FALSE, FALSE) || !ShellIsHexOrDecim… in TestOperation()
144 …if ((CaseInsensitive && StringNoCaseCompare(&Compare1, &Compare2) > 0) || (StringCompare(&Compare1 in TestOperation()
151 if (Compare1[0] == L'-') { in TestOperation()
152 Cmp1 = 0 - (INTN)ShellStrToUintn(Compare1+1); in TestOperation()
154 Cmp1 = (INTN)ShellStrToUintn(Compare1); in TestOperation()
174 …if (ForceStringCompare || !ShellIsHexOrDecimalNumber(Compare1, FALSE, FALSE) || !ShellIsHexOrDecim… in TestOperation()
178 …if ((CaseInsensitive && StringNoCaseCompare(&Compare1, &Compare2) < 0) || (StringCompare(&Compare1 in TestOperation()
185 if (Compare1[0] == L'-') { in TestOperation()
186 Cmp1 = 0 - (INTN)ShellStrToUintn(Compare1+1); in TestOperation()
188 Cmp1 = (INTN)ShellStrToUintn(Compare1); in TestOperation()
208 …if (ForceStringCompare || !ShellIsHexOrDecimalNumber(Compare1, FALSE, FALSE) || !ShellIsHexOrDecim… in TestOperation()
212 …if ((CaseInsensitive && StringNoCaseCompare(&Compare1, &Compare2) == 0) || (StringCompare(&Compare… in TestOperation()
219 if (Compare1[0] == L'-') { in TestOperation()
220 Cmp1 = 0 - (INTN)ShellStrToUintn(Compare1+1); in TestOperation()
222 Cmp1 = (INTN)ShellStrToUintn(Compare1); in TestOperation()
235 …if (ForceStringCompare || !ShellIsHexOrDecimalNumber(Compare1, FALSE, FALSE) || !ShellIsHexOrDecim… in TestOperation()
239 …if ((CaseInsensitive && StringNoCaseCompare(&Compare1, &Compare2) != 0) || (StringCompare(&Compare… in TestOperation()
246 if (Compare1[0] == L'-') { in TestOperation()
247 Cmp1 = 0 - (INTN)ShellStrToUintn(Compare1+1); in TestOperation()
249 Cmp1 = (INTN)ShellStrToUintn(Compare1); in TestOperation()
263 …if (ForceStringCompare || !ShellIsHexOrDecimalNumber(Compare1, FALSE, FALSE) || !ShellIsHexOrDecim… in TestOperation()
267 …if ((CaseInsensitive && StringNoCaseCompare(&Compare1, &Compare2) >= 0) || (StringCompare(&Compare… in TestOperation()
274 if (Compare1[0] == L'-') { in TestOperation()
275 Cmp1 = 0 - (INTN)ShellStrToUintn(Compare1+1); in TestOperation()
277 Cmp1 = (INTN)ShellStrToUintn(Compare1); in TestOperation()
297 …if (ForceStringCompare || !ShellIsHexOrDecimalNumber(Compare1, FALSE, FALSE) || !ShellIsHexOrDecim… in TestOperation()
301 …if ((CaseInsensitive && StringNoCaseCompare(&Compare1, &Compare2) <= 0) || (StringCompare(&Compare… in TestOperation()
308 if (Compare1[0] == L'-') { in TestOperation()
309 Cmp1 = 0 - (INTN)ShellStrToUintn(Compare1+1); in TestOperation()
311 Cmp1 = (INTN)ShellStrToUintn(Compare1); in TestOperation()
366 CHAR16 *Compare1; in ProcessStatement() local
444 Compare1 = NULL; in ProcessStatement()
458 ASSERT(Compare1 == NULL); in ProcessStatement()
459 Compare1 = StrnCatGrow(&Compare1, NULL, HexString, 0); in ProcessStatement()
475 ASSERT(Compare1 == NULL); in ProcessStatement()
476 Compare1 = StrnCatGrow(&Compare1, NULL, HexString, 0); in ProcessStatement()
492 ASSERT(Compare1 == NULL); in ProcessStatement()
493 Compare1 = StrnCatGrow(&Compare1, NULL, HexString, 0); in ProcessStatement()
504 ASSERT(Compare1 == NULL); in ProcessStatement()
512 Compare1 = StrnCatGrow(&Compare1, NULL, StatementWalker, 0); in ProcessStatement()
615 if (Compare1 != NULL && Compare2 != NULL && BinOp != OperatorMax) { in ProcessStatement()
616 … OperationResult = TestOperation(Compare1, Compare2, BinOp, CaseInsensitive, ForceStringCompare); in ProcessStatement()
619 SHELL_FREE_NON_NULL(Compare1); in ProcessStatement()