Home
last modified time | relevance | path

Searched refs:htonll (Results 1 – 10 of 10) 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/icing/icing/portable/
Dendian.h191 #ifndef htonll
193 #define htonll(x) ghtonll(x) macro
203 #define ntohll(x) htonll(x)
/external/kmod/port-gnu/
Dendian-darwin.h78 # define htobe64(x) htonll(x)
/external/libnl/include/netlink-private/
Dutils.h22 #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/usrsctp/usrsctplib/netinet/
Dsctp_uio.h1167 #ifndef htonll
1176 #define htonll(x) htobe64(x) 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()