Lines Matching refs:__u32
16 #define ___constant_swab32(x) ((__u32)( \
17 (((__u32)(x) & (__u32)0x000000ffUL) << 24) | \
18 (((__u32)(x) & (__u32)0x0000ff00UL) << 8) | \
19 (((__u32)(x) & (__u32)0x00ff0000UL) >> 8) | \
20 (((__u32)(x) & (__u32)0xff000000UL) >> 24)))
32 #define ___constant_swahw32(x) ((__u32)( \
33 (((__u32)(x) & (__u32)0x0000ffffUL) << 16) | \
34 (((__u32)(x) & (__u32)0xffff0000UL) >> 16)))
36 #define ___constant_swahb32(x) ((__u32)( \
37 (((__u32)(x) & (__u32)0x00ff00ffUL) << 8) | \
38 (((__u32)(x) & (__u32)0xff00ff00UL) >> 8)))
55 static inline __attribute_const__ __u32 __fswab32(__u32 val) in __fswab32()
69 __u32 h = val >> 32; in __fswab64()
70 __u32 l = val & ((1ULL << 32) - 1); in __fswab64()
77 static inline __attribute_const__ __u32 __fswahw32(__u32 val) in __fswahw32()
86 static inline __attribute_const__ __u32 __fswahb32(__u32 val) in __fswahb32()
109 (__builtin_constant_p((__u32)(x)) ? \
129 (__builtin_constant_p((__u32)(x)) ? \
140 (__builtin_constant_p((__u32)(x)) ? \
161 static inline __u32 __swab32p(const __u32 *p) in __swab32p()
189 static inline __u32 __swahw32p(const __u32 *p) in __swahw32p()
204 static inline __u32 __swahb32p(const __u32 *p) in __swahb32p()
229 static inline void __swab32s(__u32 *p) in __swab32s()
257 static inline void __swahw32s(__u32 *p) in __swahw32s()
272 static inline void __swahb32s(__u32 *p) in __swahb32s()