Lines Matching refs:Value
26 This function swaps the bytes in a 16-bit unsigned value to switch the value
27 from little endian to big endian or vice versa. The byte swapped value is
30 @param Value A 16-bit unsigned value.
32 @return The byte swapped Value.
35 uint16_t bswap16(uint16_t Value)
37 return SwapBytes16(Value);
43 This function swaps the bytes in a 32-bit unsigned value to switch the value
44 from little endian to big endian or vice versa. The byte swapped value is
47 @param Value A 32-bit unsigned value.
49 @return The byte swapped Value.
52 uint32_t bswap32(uint32_t Value)
54 return SwapBytes32(Value);
60 This function swaps the bytes in a 64-bit unsigned value to switch the value
61 from little endian to big endian or vice versa. The byte swapped value is
64 @param Value A 64-bit unsigned value.
66 @return The byte swapped Value.
69 uint64_t bswap64(uint64_t Value)
71 return SwapBytes64(Value);