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

Function DxePcdGet64

MdeModulePkg/Universal/PCD/Dxe/Pcd.c:399–406  ·  view source on GitHub ↗

Retrieves an 64-bit value for a given PCD token. Retrieves the current 64-bits value for a PCD token number. If the TokenNumber is invalid, the results are unpredictable. @param[in] TokenNumber The PCD token number. @return The UINT64 value. **/

Source from the content-addressed store, hash-verified

397
398**/
399UINT64
400EFIAPI
401DxePcdGet64 (
402 IN UINTN TokenNumber
403 )
404{
405 return ReadUnaligned64(GetWorker (TokenNumber, sizeof (UINT64)));
406}
407
408/**
409 Retrieves a pointer to a value for a given PCD token.

Callers

nothing calls this directly

Calls 2

GetWorkerFunction · 0.70
ReadUnaligned64Function · 0.50

Tested by

no test coverage detected