| 1 | #ifndef _BYTESWAP_H |
| 2 | #define _BYTESWAP_H |
| 3 | |
| 4 | #include <features.h> |
| 5 | #include <stdint.h> |
| 6 | |
| 7 | static __inline uint16_t __bswap_16(uint16_t __x) { |
| 8 | return (__x << 8) | (__x >> 8); |
| 9 | } |
| 10 | |
| 11 | static __inline uint32_t __bswap_24(uint32_t __x) { |
| 12 | return (__x & 0xFF00) | (((__x & 0xFF) << 16) & 0xFFFFFF00) | ((__x >> 16) & 0xFF); |
| 13 | } |
| 14 | |
| 15 | static __inline uint32_t __bswap_32_ignore_last(uint32_t __x) { |
| 16 | return (__x >> 24) | (__x >> 8 & 0xff00) | (__x << 8 & 0xff0000); |
| 17 | } |
| 18 | |
| 19 | static __inline uint32_t __bswap_32(uint32_t __x) { |
| 20 | return (__x >> 24) | (__x >> 8 & 0xff00) | (__x << 8 & 0xff0000) | (__x << 24); |
| 21 | } |
| 22 | |
| 23 | static __inline uint64_t __bswap_32_64(uint64_t x) { |
| 24 | return ((((x)&0xff00000000000000ull) >> 56) | (((x)&0x00ff000000000000ull) >> 40) | |
| 25 | (((x)&0x0000ff0000000000ull) >> 24) | (((x)&0x000000ff00000000ull) >> 8) | |
| 26 | (((x)&0x00000000ff000000ull) << 8) | (((x)&0x0000000000ff0000ull) << 24) | |
| 27 | (((x)&0x000000000000ff00ull) << 40) | (((x)&0x00000000000000ffull) << 56)); |
| 28 | } |
| 29 | |
| 30 | static __inline uint64_t __bswap_64(uint64_t __x) { |
| 31 | return ((__bswap_32(__x) + 0ULL) << 32) | __bswap_32(x: __x >> 32); |
| 32 | } |
| 33 | |
| 34 | #define bswap_16(x) __bswap_16(x) |
| 35 | #define bswap_24(x) __bswap_24(x) |
| 36 | #define bswap_32_ignore_last(x) __bswap_32_ignore_last(x) |
| 37 | #define bswap_32(x) __bswap_32(x) |
| 38 | #define bswap_32_64(x) __bswap_32_64(x) |
| 39 | #define bswap_64(x) __bswap_64(x) |
| 40 | |
| 41 | #endif |
| 42 | |