44 __extension__
typedef __signed__
long long SW_s64;
45 __extension__
typedef unsigned long long SW_u64;
48 #elif defined(__GNUC__)
49 __extension__
typedef __signed__
long long SW_s64;
50 __extension__
typedef unsigned long long SW_u64;
51 #elif defined(__BORLANDC__)
52 typedef signed __int64
SW_s64;
53 typedef unsigned __int64
SW_u64;
63 #define __swswap16(x) \
65 (((SW_u16)(x) & (SW_u16)0x00ffU) << 8) | \
66 (((SW_u16)(x) & (SW_u16)0xff00U) >> 8) ))
69 #define __swswap32(x) \
71 (((SW_u32)(x) & (SW_u32)0x000000ffUL) << 24) | \
72 (((SW_u32)(x) & (SW_u32)0x0000ff00UL) << 8) | \
73 (((SW_u32)(x) & (SW_u32)0x00ff0000UL) >> 8) | \
74 (((SW_u32)(x) & (SW_u32)0xff000000UL) >> 24) ))
77 #define __swswap64(x) \
79 (SW_u64)(((SW_u64)(x) & (SW_u64)0x00000000000000ffULL) << 56) | \
80 (SW_u64)(((SW_u64)(x) & (SW_u64)0x000000000000ff00ULL) << 40) | \
81 (SW_u64)(((SW_u64)(x) & (SW_u64)0x0000000000ff0000ULL) << 24) | \
82 (SW_u64)(((SW_u64)(x) & (SW_u64)0x00000000ff000000ULL) << 8) | \
83 (SW_u64)(((SW_u64)(x) & (SW_u64)0x000000ff00000000ULL) >> 8) | \
84 (SW_u64)(((SW_u64)(x) & (SW_u64)0x0000ff0000000000ULL) >> 24) | \
85 (SW_u64)(((SW_u64)(x) & (SW_u64)0x00ff000000000000ULL) >> 40) | \
86 (SW_u64)(((SW_u64)(x) & (SW_u64)0xff00000000000000ULL) >> 56) ))
91 #ifndef WORDS_BIGENDIAN
93 #define swordtoarch16(x) (x)
94 #define swordtoarch32(x) (x)
95 #define swordtoarch64(x) (x)
96 #define archtosword16(x) (x)
97 #define archtosword32(x) (x)
98 #define archtosword64(x) (x)
102 #define swordtoarch16(x) __swswap16(x)
103 #define swordtoarch32(x) __swswap32(x)
104 #define swordtoarch64(x) __swswap64(x)
105 #define archtosword16(x) __swswap16(x)
106 #define archtosword32(x) __swswap32(x)
107 #define archtosword64(x) __swswap64(x)
unsigned long long SW_u64