Lines Matching refs:__u32
14 #define __constant_htonl(x) ((__force __be32)(__u32)(x))
15 #define __constant_ntohl(x) ((__force __u32)(__be32)(x))
21 #define __constant_le32_to_cpu(x) ___constant_swab32((__force __u32)(__le32)(x))
26 #define __constant_cpu_to_be32(x) ((__force __be32)(__u32)(x))
27 #define __constant_be32_to_cpu(x) ((__force __u32)(__be32)(x))
33 #define __le32_to_cpu(x) __swab32((__force __u32)(__le32)(x))
38 #define __cpu_to_be32(x) ((__force __be32)(__u32)(x))
39 #define __be32_to_cpu(x) ((__force __u32)(__be32)(x))
51 static inline __le32 __cpu_to_le32p(const __u32 *p) in __cpu_to_le32p()
55 static inline __u32 __le32_to_cpup(const __le32 *p) in __le32_to_cpup()
57 return __swab32p((__u32 *)p); in __le32_to_cpup()
75 static inline __be32 __cpu_to_be32p(const __u32 *p) in __cpu_to_be32p()
79 static inline __u32 __be32_to_cpup(const __be32 *p) in __be32_to_cpup()
81 return (__force __u32)*p; in __be32_to_cpup()