Home
last modified time | relevance | path

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

/external/iperf3/src/
Dportable_endian.h40 # define htobe64(x) (x) macro
58 # define htobe64(x) OSSwapHostToBigInt64(x) macro
85 # define htobe64(x) htonll(x) macro
104 # define htobe64(x) htonll(x) macro
122 # define htobe64(x) (x) macro
170 #define htobe64(n) HTONLL(n) macro
/external/mbedtls/3rdparty/everest/include/everest/kremlin/
Dc_endianness.h23 # define htobe64(x) OSSwapHostToBigInt64(x) macro
41 # define htobe64(x) BE_64(x) macro
74 # define htobe64(x) _byteswap_uint64(x) macro
93 # define htobe64(x) __builtin_bswap64(x) macro
115 # define htobe64(x) (x) macro
141 # define htobe64(x) \ macro
/external/openthread/third_party/mbedtls/repo/3rdparty/everest/include/everest/kremlin/
Dc_endianness.h23 # define htobe64(x) OSSwapHostToBigInt64(x) macro
41 # define htobe64(x) BE_64(x) macro
74 # define htobe64(x) _byteswap_uint64(x) macro
93 # define htobe64(x) __builtin_bswap64(x) macro
115 # define htobe64(x) (x) macro
141 # define htobe64(x) \ macro
/external/webrtc/rtc_base/
Dbyte_order.h29 #define htobe64(v) OSSwapHostToBigInt64(v) macro
62 #define htobe64(v) _byteswap_uint64(v) macro
66 #define htobe64(v) __builtin_bswap64(v) macro
82 #define htobe64(v) (v) macro
86 #define htobe64(v) (v) macro
/external/kmod/port-gnu/
Dendian-darwin.h34 # define htobe64(x) OSSwapHostToBigInt64(x) macro
78 # define htobe64(x) htonll(x) macro
96 # define htobe64(x) (x) macro
/external/vboot_reference/cgpt/
Dcgpt_endian.h31 # define htobe64(x) __bswap_64 (x) macro
46 # define htobe64(x) (x) macro
/external/musl/include/
Dendian.h39 #define htobe64(x) __bswap64(x) macro
52 #define htobe64(x) (uint64_t)(x) macro
/external/ot-br-posix/src/common/
Dbyteswap.hpp53 #define htobe64(x) OSSwapHostToBigInt64(x) macro
/external/arm-trusted-firmware/include/lib/libc/
Dendian.h56 #define htobe64(x) bswap64((x)) macro
70 #define htobe64(x) ((uint64_t)(x)) macro
/external/avb/test/
Davb_util_unittest.cc525 TEST_F(UtilTest, htobe64) { in TEST_F() argument