Home
last modified time | relevance | path

Searched refs:__swab64 (Results 1 – 4 of 4) sorted by relevance

/bionic/libc/kernel/uapi/linux/byteorder/
Dbig_endian.h45 #define __cpu_to_le64(x) ((__force __le64) __swab64((x)))
46 #define __le64_to_cpu(x) __swab64((__force __u64) (__le64) (x))
Dlittle_endian.h51 #define __cpu_to_be64(x) ((__force __be64) __swab64((x)))
52 #define __be64_to_cpu(x) __swab64((__force __u64) (__be64) (x))
/bionic/libc/kernel/uapi/linux/
Dswab.h56 #define __swab64(x) (__u64) __builtin_bswap64((__u64) (x)) macro
80 return __swab64(* p); in __swab64p()
/bionic/tests/
Dlinux_swab_test.cpp27 EXPECT_EQ(0xbaefcdab78563412ULL, __swab64(0x12345678abcdefbaULL)); in TEST()