Home
last modified time | relevance | path

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

/bionic/libc/kernel/uapi/linux/byteorder/
Dlittle_endian.h53 #define __cpu_to_be32(x) ((__force __be32) __swab32((x)))
54 #define __be32_to_cpu(x) __swab32((__force __u32) (__be32) (x))
Dbig_endian.h47 #define __cpu_to_le32(x) ((__force __le32) __swab32((x)))
48 #define __le32_to_cpu(x) __swab32((__force __u32) (__le32) (x))
/bionic/libc/kernel/uapi/linux/
Dswab.h55 #define __swab32(x) (__u32) __builtin_bswap32((__u32) (x)) macro
73 return __swab32(* p); in __swab32p()
/bionic/tests/
Dlinux_swab_test.cpp26 EXPECT_EQ(0x78563412U, __swab32(0x12345678U)); in TEST()