Home
last modified time | relevance | path

Searched refs:be64toh (Results 1 – 24 of 24) 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
Diperf_udp.c92 pcount = be64toh(pcount); in iperf_udp_recv()
/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/vboot_reference/cgpt/
Dcgpt_endian.h33 # define be64toh(x) __bswap_64 (x) macro
48 # define be64toh(x) (x) macro
/external/avb/test/
Davb_vbmeta_image_unittest.cc278 h->hash_size = htobe64(be64toh(h->authentication_data_block_size)); in TEST_F()
302 h->signature_size = htobe64(be64toh(h->authentication_data_block_size)); in TEST_F()
326 h->public_key_size = htobe64(be64toh(h->auxiliary_data_block_size)); in TEST_F()
350 h->public_key_metadata_size = htobe64(be64toh(h->auxiliary_data_block_size)); in TEST_F()
395 uint64_t change = be64toh(h->auxiliary_data_block_size) - 64; in TEST_F()
Davb_util_unittest.cc530 TEST_F(UtilTest, be64toh) { in TEST_F() argument
531 EXPECT_EQ(avb_be64toh(0x123456789abcdef0), be64toh(0x123456789abcdef0)); in TEST_F()
/external/strace/tests/
Dnlattr_fib_rule_hdr.c132 #if defined HAVE_BE64TOH || defined be64toh in main()
137 printf("htobe64(%" PRIu64 ")", be64toh(tun_id))); in main()
/external/strace/tests-m32/
Dnlattr_fib_rule_hdr.c132 #if defined HAVE_BE64TOH || defined be64toh in main()
137 printf("htobe64(%" PRIu64 ")", be64toh(tun_id))); in main()
/external/strace/tests-mx32/
Dnlattr_fib_rule_hdr.c132 #if defined HAVE_BE64TOH || defined be64toh in main()
137 printf("htobe64(%" PRIu64 ")", be64toh(tun_id))); in main()
/external/libmtp/m4/
Dbyteorder.m4260 #ifndef be64toh
261 # define be64toh(x) (x)
307 #ifndef be64toh
308 # define be64toh(x) swap64(x)
312 #define BE64TOH(x) (x) = be64toh(x)
342 # define be64atoh(x) be64toh(*(uint64_t*)(x))
/external/elfutils/libdwelf/
Ddwelf_scn_gnu_compressed_size.c64 size = be64toh (size); in dwelf_scn_gnu_compressed_size()
/external/libnetfilter_conntrack/src/conntrack/
Dparse_mnl.c470 ct->protoinfo.dccp.handshake_seq = be64toh( in nfct_parse_protoinfo_dccp()
559 be64toh(mnl_attr_get_u64(tb[CTA_COUNTERS_PACKETS])); in nfct_parse_counters()
577 be64toh(mnl_attr_get_u64(tb[CTA_COUNTERS_BYTES])); in nfct_parse_counters()
781 be64toh(mnl_attr_get_u64(tb[CTA_TIMESTAMP_START])); in nfct_parse_timestamp()
786 be64toh(mnl_attr_get_u64(tb[CTA_TIMESTAMP_STOP])); in nfct_parse_timestamp()
Dbuild_mnl.c205 be64toh(ct->protoinfo.dccp.handshake_seq); in nfct_build_protoinfo()
/external/libexif/m4m/
Dgp-byteorder.m4241 #define be64toh(x) (x)
271 #define be64toh(x) swap64(x)
274 #define BE64TOH(x) (x) = be64toh(x)
299 #define be64atoh(x) be64toh(*(uint64_t*)(x))
/external/u-boot/tools/
Dmips-relocs.c44 _val = is_be ? be64toh(_val) : le64toh(_val); \
168 off = is_be ? be64toh(rel->r_offset) : le64toh(rel->r_offset); in parse_mips64_rela()
/external/strace/
Dnlattr.c453 #if defined HAVE_BE64TOH || defined be64toh in decode_nla_be64()
459 tprintf("htobe64(%" PRIu64 ")", be64toh(num)); in decode_nla_be64()
Dconfigure.ac269 be64toh
Dconfig.h.in54 /* Define to 1 if you have the `be64toh' function. */
Dconfigure9977 for ac_func in accept4 be64toh fallocate fanotify_mark fopen64 fork fputs_unlocked fstatat ftruncat…
DChangeLog11864 * configure.ac (AC_CHECK_FUNCS): Add be64toh.
/external/nfacct/
Dnfacct.c178 (unsigned long long)be64toh(nla_get_u64(tb[NFACCT_PKTS])), in valid_input()
179 (unsigned long long)be64toh(nla_get_u64(tb[NFACCT_BYTES])), in valid_input()
/external/elfutils/libelf/
Delf_compress_gnu.c166 gsize = be64toh (gsize); in elf_compress_gnu()
/external/elfutils/libdwfl/
Dlinux-core-attach.c233 ? be64toh (val64) : le64toh (val64)); in core_set_initial_registers()
276 ? be64toh (val64) : le64toh (val64)); in core_set_initial_registers()
/external/libmtp/src/
Dptp-pack.c91 return ((params->byteorder==PTP_DL_LE)?le64toh(var):be64toh(var)); in dtoh64p()