Home
last modified time | relevance | path

Searched refs:htonll (Results 1 – 7 of 7) sorted by relevance

/external/iperf3/src/
Dportable_endian.h74 # if !defined (ntohll) || !defined(htonll)
76 # define htonll(x) (x) macro
79 # define htonll(x) ((((uint64_t)htonl(x)) << 32) + htonl((uint64_t)(x) >> 32)) macro
85 # define htobe64(x) htonll(x)
104 # define htobe64(x) htonll(x)
/external/linux-kselftest/tools/testing/selftests/bpf/
Dtest_lwt_seg6local.c22 #define htonll(x) ((bpf_htonl(1)) == 1 ? (x) : ((uint64_t)bpf_htonl((x) & \ macro
318 seg->lo = htonll(4 - lo); in __encap_srh()
319 seg->hi = htonll(hi); in __encap_srh()
359 addr.lo = htonll(lo); in __add_egr_x()
360 addr.hi = htonll(hi); in __add_egr_x()
/external/kmod/port-gnu/
Dendian-darwin.h78 # define htobe64(x) htonll(x)
/external/libnl/lib/netfilter/
Dct.c38 static uint64_t htonll(uint64_t x) in htonll() function
47 static uint64_t htonll(uint64_t x) in htonll() function
/external/iproute2/include/
Dutils.h230 #define htonll(x) ((1==htonl(1)) ? (x) : ((uint64_t)htonl((x) & 0xFFFFFFFF) << 32) | htonl((x) >> 3… macro
/external/iproute2/lib/
Dutils.c377 *val = htonll(v); in get_be64()
/external/iproute2/tc/
Df_flower.c108 mask = htonll(0xffffffffffffULL << (16 + 48 - bits)); in flower_parse_eth_addr()