Home
last modified time | relevance | path

Searched defs:be32toh (Results 1 – 11 of 11) 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/mbedtls/3rdparty/everest/include/everest/kremlin/
Dc_endianness.h34 # define be32toh(x) OSSwapBigToHostInt32(x) macro
52 # define be32toh(x) BE_32(x) macro
71 # define be32toh(x) _byteswap_ulong(x) macro
90 # define be32toh(x) __builtin_bswap32(x) macro
106 # define be32toh(x) (x) macro
137 # define be32toh(x) (htobe32((x))) macro
/external/openthread/third_party/mbedtls/repo/3rdparty/everest/include/everest/kremlin/
Dc_endianness.h34 # define be32toh(x) OSSwapBigToHostInt32(x) macro
52 # define be32toh(x) BE_32(x) macro
71 # define be32toh(x) _byteswap_ulong(x) macro
90 # define be32toh(x) __builtin_bswap32(x) macro
106 # define be32toh(x) (x) macro
137 # define be32toh(x) (htobe32((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/musl/include/
Dendian.h38 #define be32toh(x) __bswap32(x) macro
51 #define be32toh(x) (uint32_t)(x) macro
/external/webrtc/rtc_base/
Dbyte_order.h31 #define be32toh(v) OSSwapBigToHostInt32(v) macro
54 #define be32toh(v) ntohl(v) macro
74 #define be32toh(v) (v) macro
/external/ot-br-posix/src/common/
Dbyteswap.hpp50 #define be32toh(x) OSSwapBigToHostInt32(x) 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