Home
last modified time | relevance | path

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

/bionic/libc/kernel/uapi/linux/byteorder/
Dbig_endian.h36 #define __cpu_to_le32(x) (( __le32) __swab32((x)))
37 #define __le32_to_cpu(x) __swab32(( __u32) (__le32) (x))
Dlittle_endian.h42 #define __cpu_to_be32(x) (( __be32) __swab32((x)))
43 #define __be32_to_cpu(x) __swab32(( __u32) (__be32) (x))
/bionic/libc/kernel/uapi/linux/
Dswab.h43 #define __swab32(x) (__u32) __builtin_bswap32((__u32) (x)) macro
61 return __swab32(* p); in __swab32p()
/bionic/tests/
Dlinux_swab_test.cpp26 EXPECT_EQ(0x78563412U, __swab32(0x12345678U)); in TEST()