Home
last modified time | relevance | path

Searched refs:htonll (Results 1 – 11 of 11) 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/trace-cmd/lib/trace-cmd/include/
Dtrace-cmd-local.h19 #ifndef htonll
21 #define htonll(x) __bswap_64(x) macro
24 #define htonll(x) (x) macro
/external/kmod/port-gnu/
Dendian-darwin.h78 # define htobe64(x) htonll(x)
/external/trace-cmd/lib/trace-cmd/
Dtrace-timesync-ptp.c405 msg->samples[i].ts = htonll(msg->samples[i].ts); in hton_ptp_results()
653 res_offset.offset = htonll(*offset); in ptp_clock_server()
654 res_offset.ts = htonll(*timestamp); in ptp_clock_server()
Dtrace-msg.c993 msg->trace_req.trace_id = htonll(trace_id); in make_trace_req()
1323 msg->trace_resp.trace_id = htonll(trace_id); in make_trace_resp()
/external/libnl/include/netlink-private/
Dutils.h23 #define htonll(x) ntohll(x) macro
/external/iproute2/include/
Dutils.h230 #define htonll(x) ((1==htonl(1)) ? (x) : ((uint64_t)htonl((x) & 0xFFFFFFFF) << 32) | htonl((x) >> 3… macro
/external/ethtool/
Dinternal.h79 #define htonll cpu_to_be64 macro
Drxclass.c1108 *(__be64 *)&p[opt->offset] = htonll((u64)val); in rxclass_get_val()
1221 *(__be64 *)&p[opt->moffset] = ~htonll((u64)val); in rxclass_get_mask()
/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()