Searched refs:__swab32 (Results 1 – 4 of 4) sorted by relevance
36 #define __cpu_to_le32(x) (( __le32) __swab32((x)))37 #define __le32_to_cpu(x) __swab32(( __u32) (__le32) (x))
42 #define __cpu_to_be32(x) (( __be32) __swab32((x)))43 #define __be32_to_cpu(x) __swab32(( __u32) (__be32) (x))
43 #define __swab32(x) (__u32) __builtin_bswap32((__u32) (x)) macro61 return __swab32(* p); in __swab32p()
26 EXPECT_EQ(0x78563412U, __swab32(0x12345678U)); in TEST()