Home
last modified time | relevance | path

Searched defs:be32toh (Results 1 – 7 of 7) sorted by relevance

/external/kmod/shared/
Dmissing.h51 #define be32toh(x) bswap_32 (x) macro
53 #define be32toh(x) (x) macro
/external/kmod/port-gnu/
Dendian-darwin.h31 # define be32toh(x) OSSwapBigToHostInt32(x) macro
55 # define be32toh(x) betoh32(x) macro
75 # define be32toh(x) ntohl(x) macro
93 # define be32toh(x) (x) macro
/external/iperf3/src/
Dportable_endian.h28 # define be32toh(x) betoh32(x) macro
55 # define be32toh(x) OSSwapBigToHostInt32(x) macro
101 # define be32toh(x) ntohl(x) macro
119 # define be32toh(x) (x) macro
/external/vboot_reference/cgpt/
Dcgpt_endian.h28 # define be32toh(x) __bswap_32 (x) macro
43 # define be32toh(x) (x) macro
/external/webrtc/rtc_base/
Dbyte_order.h29 #define be32toh(v) OSSwapBigToHostInt32(v) macro
52 #define be32toh(v) ntohl(v) macro
72 #define be32toh(v) (v) macro
/external/arm-trusted-firmware/include/lib/libc/
Dendian.h62 #define be32toh(x) bswap32((x)) macro
76 #define be32toh(x) ((uint32_t)(x)) macro
/external/avb/test/
Davb_util_unittest.cc521 TEST_F(UtilTest, be32toh) { in TEST_F() argument