Searched refs:IsHex (Results 1 - 6 of 6) sorted by relevance

/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/Common/
H A DParseInf.h157 IN BOOLEAN IsHex,
169 unless the IsHex input is true.
174 IsHex Force the string to be treated as a hex number.
H A DParseInf.c461 IN BOOLEAN IsHex,
471 unless the IsHex input is true.
476 IsHex Force the string to be treated as a hex number.
514 IsHex = TRUE;
517 if (IsHex) {
459 AsciiStringToUint64( IN CONST CHAR8 *AsciiString, IN BOOLEAN IsHex, OUT UINT64 *ReturnValue ) argument
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/DevicePathDxe/
H A DDevicePathFromText.c261 @param IsHex TRUE: Hex string, FALSE: Decimal string
269 OUT BOOLEAN *IsHex
272 *IsHex = FALSE;
291 *IsHex = TRUE;
444 BOOLEAN IsHex; local
446 Str = TrimHexStr (Str, &IsHex);
448 if (IsHex) {
469 BOOLEAN IsHex; local
471 Str = TrimHexStr (Str, &IsHex);
473 if (IsHex) {
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/GenFds/
H A DFfsInfStatement.py825 IsHex = False
837 IsHex = True
839 IsHex = False
841 if IsHex:
843 IsHex = False
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/VfrCompile/
H A DVfrSyntax.g4129 OUT BOOLEAN *IsHex
4132 *IsHex = FALSE;
4142 *IsHex = TRUE;
4164 BOOLEAN IsHex;
4168 Str = TrimHex (Str, &IsHex);
4173 (IsHex == TRUE) ? (Value <<= 4) : (Value *= 10);
4175 if ((IsHex == TRUE) && (c >= 'a') && (c <= 'f')) {
4178 if ((IsHex == TRUE) && (c >= 'A') && (c <= 'F')) {
4194 BOOLEAN IsHex;
4198 Str = TrimHex (Str, &IsHex);
[all...]
H A DVfrUtilityLib.cpp500 OUT bool *IsHex
503 *IsHex = FALSE;
513 *IsHex = TRUE;
524 bool IsHex; local
528 Str = TrimHex (Str, &IsHex);
533 (IsHex == TRUE) ? (Value <<= 4) : (Value *= 10);
535 if ((IsHex == TRUE) && (c >= 'a') && (c <= 'f')) {
538 if ((IsHex == TRUE) && (c >= 'A') && (c <= 'F')) {

Completed in 319 milliseconds