Searched refs:__swab64 (Results 1 – 4 of 4) sorted by relevance
52 #define __cpu_to_be64(x) (( __be64) __swab64((x)))53 #define __be64_to_cpu(x) __swab64(( __u64) (__be64) (x))
46 #define __cpu_to_le64(x) (( __le64) __swab64((x)))47 #define __le64_to_cpu(x) __swab64(( __u64) (__le64) (x))
56 #define __swab64(x) (__u64) __builtin_bswap64((__u64) (x)) macro80 return __swab64(* p); in __swab64p()
27 EXPECT_EQ(0xbaefcdab78563412ULL, __swab64(0x12345678abcdefbaULL)); in TEST()