Home
last modified time | relevance | path

Searched refs:ntohll (Results 1 – 9 of 9) sorted by relevance

/external/iperf3/src/
Dportable_endian.h74 # if !defined (ntohll) || !defined(htonll)
77 # define ntohll(x) (x) macro
80 # define ntohll(x) ((((uint64_t)ntohl(x)) << 32) + ntohl((uint64_t)(x) >> 32)) macro
84 # define be64toh(x) ntohll(x)
106 # define be64toh(x) ntohll(x)
/external/libnl/lib/netfilter/
Dlog_msg.c32 static uint64_t ntohll(uint64_t x) in ntohll() function
37 static uint64_t ntohll(uint64_t x) in ntohll() function
104 tv.tv_sec = ntohll(timestamp->sec); in nfnlmsg_log_msg_parse()
105 tv.tv_usec = ntohll(timestamp->usec); in nfnlmsg_log_msg_parse()
Dqueue_msg.c32 static uint64_t ntohll(uint64_t x) in ntohll() function
37 static uint64_t ntohll(uint64_t x) in ntohll() function
104 tv.tv_sec = ntohll(timestamp->sec); in nfnlmsg_queue_msg_parse()
105 tv.tv_usec = ntohll(timestamp->usec); in nfnlmsg_queue_msg_parse()
Dct.c34 static uint64_t ntohll(uint64_t x) in ntohll() function
43 static uint64_t ntohll(uint64_t x) in ntohll() function
288 ntohll(nla_get_u64(tb[CTA_COUNTERS_PACKETS]))); in ct_parse_counters()
294 ntohll(nla_get_u64(tb[CTA_COUNTERS_BYTES]))); in ct_parse_counters()
329 ntohll(nla_get_u64(tb[CTA_TIMESTAMP_START])), in ct_parse_timestamp()
330 ntohll(nla_get_u64(tb[CTA_TIMESTAMP_STOP]))); in ct_parse_timestamp()
/external/linux-kselftest/tools/testing/selftests/bpf/
Dtest_lwt_seg6local.c24 #define ntohll(x) ((bpf_ntohl(1)) == 1 ? (x) : ((uint64_t)bpf_ntohl((x) & \ macro
286 if (ntohll(egr_addr.hi) == 0xfd00000000000000 && in has_egr_tlv()
287 ntohll(egr_addr.lo) == 0x4) in has_egr_tlv()
/external/kmod/port-gnu/
Dendian-darwin.h80 # define be64toh(x) ntohll(x)
/external/iproute2/ip/
Dipmacsec.c784 printf("%sTXSC: %016llx on SA %d\n", prefix, ntohll(sci), encoding_sa); in print_tx_sc()
853 printf("%sRXSC: %016llx, state %s\n", prefix, ntohll(sci), in print_rx_sc()
1029 ntohll(rta_getattr_u64(tb[IFLA_MACSEC_SCI]))); in macsec_print_opt()
1033 ntohll(rta_getattr_u64(tb[IFLA_MACSEC_SCI]))); in macsec_print_opt()
Diproute_lwtunnel.c265 ntohll(rta_getattr_u64(tb[LWTUNNEL_IP_ID]))); in print_encap_ip()
335 ntohll(rta_getattr_u64(tb[LWTUNNEL_IP6_ID]))); in print_encap_ip6()
/external/iproute2/include/
Dutils.h231 #define ntohll(x) ((1==ntohl(1)) ? (x) : ((uint64_t)ntohl((x) & 0xFFFFFFFF) << 32) | ntohl((x) >> 3… macro