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. **/
| 24 | |
| 25 | **/ |
| 26 | UINT64 |
| 27 | EFIAPI |
| 28 | SwapBytes64 ( |
| 29 | IN UINT64 Value |
| 30 | ) |
| 31 | { |
| 32 | return InternalMathSwapBytes64 (Value); |
| 33 | } |
no test coverage detected