Searched refs:__swab64 (Results 1 – 4 of 4) sorted by relevance
34 #define __cpu_to_le64(x) (( __le64) __swab64((x)))35 #define __le64_to_cpu(x) __swab64(( __u64) (__le64) (x))
40 #define __cpu_to_be64(x) (( __be64) __swab64((x)))41 #define __be64_to_cpu(x) __swab64(( __u64) (__be64) (x))
44 #define __swab64(x) (__u64) __builtin_bswap64((__u64) (x)) macro68 return __swab64(* p); in __swab64p()
27 EXPECT_EQ(0xbaefcdab78563412ULL, __swab64(0x12345678abcdefbaULL)); in TEST()