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.h34 #define __cpu_to_le64(x) (( __le64) __swab64((x)))
35 #define __le64_to_cpu(x) __swab64(( __u64) (__le64) (x))
Dlittle_endian.h40 #define __cpu_to_be64(x) (( __be64) __swab64((x)))
41 #define __be64_to_cpu(x) __swab64(( __u64) (__be64) (x))
/bionic/libc/kernel/uapi/linux/
Dswab.h44 #define __swab64(x) (__u64) __builtin_bswap64((__u64) (x)) macro
68 return __swab64(* p); in __swab64p()
/bionic/tests/
Dlinux_swab_test.cpp27 EXPECT_EQ(0xbaefcdab78563412ULL, __swab64(0x12345678abcdefbaULL)); in TEST()