Home
last modified time | relevance | path

Searched defs:be64toh (Results 1 – 10 of 10) sorted by relevance

/external/iperf3/src/
Dportable_endian.h31 # define be64toh(x) betoh64(x) macro
39 # define be64toh(x) (x) macro
60 # define be64toh(x) OSSwapBigToHostInt64(x) macro
84 # define be64toh(x) ntohll(x) macro
106 # define be64toh(x) ntohll(x) macro
124 # define be64toh(x) (x) macro
171 #define be64toh(n) NTOHLL(n) macro
/external/kmod/port-gnu/
Dendian-darwin.h36 # define be64toh(x) OSSwapBigToHostInt64(x) macro
58 # define be64toh(x) betoh64(x) macro
80 # define be64toh(x) ntohll(x) macro
98 # define be64toh(x) (x) macro
/external/mbedtls/3rdparty/everest/include/everest/kremlin/
Dc_endianness.h24 # define be64toh(x) OSSwapBigToHostInt64(x) macro
42 # define be64toh(x) BE_64(x) macro
76 # define be64toh(x) _byteswap_uint64(x) macro
95 # define be64toh(x) __builtin_bswap64(x) macro
116 # define be64toh(x) (x) macro
148 # define be64toh(x) (htobe64((x))) macro
/external/openthread/third_party/mbedtls/repo/3rdparty/everest/include/everest/kremlin/
Dc_endianness.h24 # define be64toh(x) OSSwapBigToHostInt64(x) macro
42 # define be64toh(x) BE_64(x) macro
76 # define be64toh(x) _byteswap_uint64(x) macro
95 # define be64toh(x) __builtin_bswap64(x) macro
116 # define be64toh(x) (x) macro
148 # define be64toh(x) (htobe64((x))) macro
/external/webrtc/rtc_base/
Dbyte_order.h32 #define be64toh(v) OSSwapBigToHostInt64(v) macro
63 #define be64toh(v) _byteswap_uint64(v) macro
67 #define be64toh(v) __builtin_bswap64(v) macro
83 #define be64toh(v) (v) macro
87 #define be64toh(v) (v) macro
/external/vboot_reference/cgpt/
Dcgpt_endian.h33 # define be64toh(x) __bswap_64 (x) macro
48 # define be64toh(x) (x) macro
/external/musl/include/
Dendian.h40 #define be64toh(x) __bswap64(x) macro
53 #define be64toh(x) (uint64_t)(x) macro
/external/ot-br-posix/src/common/
Dbyteswap.hpp55 #define be64toh(x) OSSwapBigToHostInt64(x) macro
/external/arm-trusted-firmware/include/lib/libc/
Dendian.h63 #define be64toh(x) bswap64((x)) macro
77 #define be64toh(x) ((uint64_t)(x)) macro
/external/avb/test/
Davb_util_unittest.cc529 TEST_F(UtilTest, be64toh) { in TEST_F() argument