
Go to the source code of this file.
Defines | |
| #define | __swswap16(x) |
| #define | __swswap32(x) |
| #define | __swswap64(x) |
| #define | archtosword16(x) (x) |
| #define | archtosword32(x) (x) |
| #define | archtosword64(x) (x) |
| #define | swordtoarch16(x) (x) |
| #define | swordtoarch32(x) (x) |
| #define | swordtoarch64(x) (x) |
Typedefs | |
| typedef signed short | __s16 |
| typedef signed int | __s32 |
| typedef signed long long | __s64 |
| typedef signed char | __s8 |
| typedef unsigned short | __u16 |
| typedef unsigned int | __u32 |
| typedef unsigned long long | __u64 |
| typedef unsigned char | __u8 |
| #define __swswap16 | ( | x | ) |
| #define __swswap32 | ( | x | ) |
| #define __swswap64 | ( | x | ) |
((__u64)( \ (__u64)(((__u64)(x) & (__u64)0x00000000000000ffULL) << 56) | \ (__u64)(((__u64)(x) & (__u64)0x000000000000ff00ULL) << 40) | \ (__u64)(((__u64)(x) & (__u64)0x0000000000ff0000ULL) << 24) | \ (__u64)(((__u64)(x) & (__u64)0x00000000ff000000ULL) << 8) | \ (__u64)(((__u64)(x) & (__u64)0x000000ff00000000ULL) >> 8) | \ (__u64)(((__u64)(x) & (__u64)0x0000ff0000000000ULL) >> 24) | \ (__u64)(((__u64)(x) & (__u64)0x00ff000000000000ULL) >> 40) | \ (__u64)(((__u64)(x) & (__u64)0xff00000000000000ULL) >> 56) ))
1.6.1