Home
last modified time | relevance | path

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

/device/linaro/bootloader/edk2/BaseTools/Source/C/Common/
DParseInf.c473 IN BOOLEAN IsHex, in AsciiStringToUint64() argument
526 IsHex = TRUE; in AsciiStringToUint64()
529 if (IsHex) { in AsciiStringToUint64()
DParseInf.h146 IN BOOLEAN IsHex,
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/Common/
DParseInf.h190 IN BOOLEAN IsHex,
DParseInf.c573 IN BOOLEAN IsHex, in AsciiStringToUint64() argument
610 if (IsHex || (AsciiString[0] == '0' && (AsciiString[1] == 'x' || AsciiString[1] == 'X'))) { in AsciiStringToUint64()
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/UefiVfrCompile/
DVfrSyntax.g2946 OUT BOOLEAN *IsHex
2949 *IsHex = FALSE;
2959 *IsHex = TRUE;
2970 BOOLEAN IsHex;
2974 Str = TrimHex (Str, &IsHex);
2979 (IsHex == TRUE) ? (Value <<= 4) : (Value *= 10);
2981 if ((IsHex == TRUE) && (c >= 'a') && (c <= 'f')) {
2984 if ((IsHex == TRUE) && (c >= 'A') && (c <= 'F')) {
3000 BOOLEAN IsHex;
3004 Str = TrimHex (Str, &IsHex);
[all …]
DVfrUtilityLib.cpp598 OUT bool *IsHex in TrimHex() argument
601 *IsHex = FALSE; in TrimHex()
611 *IsHex = TRUE; in TrimHex()
622 bool IsHex; in _STR2U32() local
626 Str = TrimHex (Str, &IsHex); in _STR2U32()
631 (IsHex == TRUE) ? (Value <<= 4) : (Value *= 10); in _STR2U32()
633 if ((IsHex == TRUE) && (c >= 'a') && (c <= 'f')) { in _STR2U32()
636 if ((IsHex == TRUE) && (c >= 'A') && (c <= 'F')) { in _STR2U32()
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/
DVfrSyntax.g4818 OUT BOOLEAN *IsHex
4821 *IsHex = FALSE;
4831 *IsHex = TRUE;
4854 BOOLEAN IsHex;
4862 Str = TrimHex (Str, &IsHex);
4865 (IsHex == TRUE) ? (Value <<= 4) : (Value *= 10);
4867 if ((IsHex == TRUE) && (c >= 'a') && (c <= 'f')) {
4870 if ((IsHex == TRUE) && (c >= 'A') && (c <= 'F')) {
4876 if((IsHex && ((Value/16) != PreviousValue)) || (!IsHex && ((Value/10) != PreviousValue))) {
4891 BOOLEAN IsHex;
[all …]
DVfrUtilityLib.cpp522 OUT bool *IsHex in TrimHex() argument
525 *IsHex = FALSE; in TrimHex()
535 *IsHex = TRUE; in TrimHex()
546 bool IsHex; in _STR2U32() local
550 Str = TrimHex (Str, &IsHex); in _STR2U32()
555 (IsHex == TRUE) ? (Value <<= 4) : (Value *= 10); in _STR2U32()
557 if ((IsHex == TRUE) && (c >= 'a') && (c <= 'f')) { in _STR2U32()
560 if ((IsHex == TRUE) && (c >= 'A') && (c <= 'F')) { in _STR2U32()