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

Function SwapBytes64

MdePkg/Library/BaseLib/SwapBytes64.c:26–33  ·  view source on GitHub ↗

Switches the endianess of a 64-bit integer. This function swaps the bytes in a 64-bit unsigned value to switch the value from little endian to big endian or vice versa. The byte swapped value is returned. @param Value A 64-bit unsigned value. @return The byte swapped Value. **/

Source from the content-addressed store, hash-verified

24
25**/
26UINT64
27EFIAPI
28SwapBytes64 (
29 IN UINT64 Value
30 )
31{
32 return InternalMathSwapBytes64 (Value);
33}

Callers 14

UefiScsiLib.cFile · 0.50
DevPathFromTextFibreExFunction · 0.50
DevPathFromTextSasExFunction · 0.50
DevPathFromTextiSCSIFunction · 0.50
swab64Function · 0.50
ScsiDiskUnmapFunction · 0.50
UfsPeimRead16Function · 0.50
UsbBootReadCapacity16Function · 0.50
UsbBootReadWriteBlocks16Function · 0.50
DxeNetLib.cFile · 0.50
DxeNetLib.cFile · 0.50
BigNumSwapWordFunction · 0.50

Calls 1

InternalMathSwapBytes64Function · 0.70

Tested by

no test coverage detected