MCPcopy Create free account
hub / github.com/CloverHackyColor/CloverBootloader / StrHexToUint64

Function StrHexToUint64

MdePkg/Library/BaseLib/String.c:841–855  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

839**/
840#if 1
841UINT64
842EFIAPI
843StrHexToUint64 (
844 IN CONST CHAR16 *String
845 )
846{
847 UINT64 Result = 0;
848 RETURN_STATUS Status;
849
850 Status = StrHexToUint64S (String, (CHAR16 **) NULL, &Result);
851 if (Status != RETURN_SUCCESS) {
852 return 0;
853 }
854 return Result;
855}
856#else
857UINT64
858EFIAPI

Callers 15

Strtoi64Function · 0.50
DevPathFromTextBmcFunction · 0.50
DevPathFromText1394Function · 0.50
ApplyInputsFunction · 0.50
ConvertStrToGuidFunction · 0.50
BufferToValueFunction · 0.50
IfrToUintFunction · 0.50
EvaluateExpressionFunction · 0.50
GetValueOfNumberFunction · 0.50
RouteConfigFunction · 0.50
GetDevicePathFunction · 0.50
GetValueOfNumberFunction · 0.50

Calls 5

InternalCharToUpperFunction · 0.85
LShiftU64Function · 0.85
StrHexToUint64SFunction · 0.70
InternalHexCharToUintnFunction · 0.70

Tested by

no test coverage detected