Lines Matching defs:in
6 * You may not use this file except in compliance with the License.
13 * When distributing Covered Code, include this CDDL HEADER in each
30 #include <netinet/in.h>
40 htonll(uint64_t in)
42 return (htonl(in >> 32) | ((uint64_t)htonl(in) << 32));
46 ntohll(uint64_t in)
48 return (ntohl(in >> 32) | (uint64_t)ntohl(in) << 32);
52 htobe64(uint64_t in)
54 return (htonl(in >> 32) | ((uint64_t)htonl(in) << 32));
58 htole64(uint64_t in)
60 return (in);
64 betoh64(uint64_t in)
66 return (ntohl(in >> 32) | (uint64_t)ntohl(in) << 32);
70 letoh64(uint64_t in)
72 return (in);
76 be64toh(uint64_t in)
78 return (ntohl(in >> 32) | (uint64_t)ntohl(in) << 32);
82 le64toh(uint64_t in)
84 return (in);