TianoCore EDK2 master
Loading...
Searching...
No Matches
SwapBytes64.c
Go to the documentation of this file.
1
21UINT64
22EFIAPI
24 IN UINT64 Operand
25 )
26{
27 _asm {
28 mov eax, dword ptr [Operand + 4]
29 mov edx, dword ptr [Operand + 0]
30 bswap eax
31 bswap edx
32 }
33}
UINT64 EFIAPI InternalMathSwapBytes64(IN UINT64 Operand)
Definition: SwapBytes64.c:23
#define IN
Definition: Base.h:279