| /onnv/onnv-gate/usr/src/lib/libbc/libc/net/sparc/ |
| htonl.c | 30 htonl(unsigned long a) function
|
| /onnv/onnv-gate/usr/src/cmd/ipf/lib/common/ |
| fill6bits.c | 32 msk[3] = htonl(msk[3] << (128 - bits)); 35 msk[2] = htonl(msk[2] << (96 - bits)); 39 msk[1] = htonl(msk[1] << (64 - bits)); 44 msk[0] = htonl(msk[0] << (32 - bits));
|
| ntomask.c | 34 *ap = htonl(mask);
|
| gethost.c | 24 hostp->in4.s_addr = htonl(0xfedcba98); 63 hostp->in4.s_addr = htonl(n->n_net);
|
| genmask.c | 51 *mskp = htonl(0xffffffff << (32 - bits));
|
| /onnv/onnv-gate/usr/src/cmd/dtrace/test/tst/common/funcs/ |
| tst.inet_ntoa.d | 47 *ip4a = htonl(0xc0a80117); 48 *ip4b = htonl(0x7f000001); 49 *ip4c = htonl(0xffffffff); 50 *ip4d = htonl(0x00000000);
|
| err.inet_ntopbadarg.d | 37 *ip4a = htonl(0xc0a80117);
|
| tst.hton.d | 67 /after[1] != htonl(before[1])/ 69 printf("%x rather than %x", htonl(before[1]), after[1]);
|
| /onnv/onnv-gate/usr/src/stand/lib/xdr/ |
| byteorder.c | 30 * htonll(), ntohll(), htonl(), ntohl(), htons(), ntohs() 46 return ((uint64_t)htonl((in >> 32) & 0xffffffff) | 47 ((uint64_t)htonl(in & 0xffffffff) << 32)); 58 htonl(uint32_t in) function 72 return (htonl(in)); 108 htonl(uint32_t in) function
|
| /onnv/onnv-gate/usr/src/lib/libc/i386/gen/ |
| byteorder64.c | 41 return (htonl(in >> 32) | ((uint64_t)htonl(in) << 32));
|
| byteorder.s | 31 * NOTE: htonl/ntohl are identical routines, as are htons/ntohs. 38 / unsigned long htonl( hl ) 43 ENTRY(htonl) function 47 SET_SIZE(htonl)
|
| /onnv/onnv-gate/usr/src/lib/libdns_sd/common/ |
| dnssd_ipc.c | 130 hdr->version = htonl(hdr->version); 131 hdr->datalen = htonl(hdr->datalen); 132 hdr->flags = htonl(hdr->flags); 133 hdr->op = htonl(hdr->op ); 134 hdr->reg_index = htonl(hdr->reg_index);
|
| /onnv/onnv-gate/usr/src/lib/libc/amd64/gen/ |
| byteorder.s | 31 * NOTE: htonll/ntohll, htonl/ntohl, and htons/ntohs are identical 58 * unsigned long htonl( hl ) 63 ENTRY(htonl) function 67 SET_SIZE(htonl)
|
| /onnv/onnv-gate/usr/src/lib/gss_mechs/mech_krb5/krb5/os/ |
| write_msg.c | 39 len = htonl(outbuf->length);
|
| /onnv/onnv-gate/usr/src/lib/libbc/libc/inet/ |
| inet_makeaddr.c | 60 inaddr.s_addr = htonl(addr);
|
| /onnv/onnv-gate/usr/src/lib/libsocket/inet/ |
| netmasks.c | 140 net2.s_addr = htonl(i); 142 net1.s_addr = htonl(i << IN_CLASSC_NSHIFT); 144 net1.s_addr = htonl(i << IN_CLASSB_NSHIFT); 146 net1.s_addr = htonl(i << IN_CLASSA_NSHIFT); 149 net1.s_addr = htonl(i & IN_CLASSA_NET); 150 net2.s_addr = htonl(i >> IN_CLASSA_NSHIFT); 152 net1.s_addr = htonl(i & IN_CLASSB_NET); 153 net2.s_addr = htonl(i >> IN_CLASSB_NSHIFT); 155 net1.s_addr = htonl(i & IN_CLASSC_NET); 156 net2.s_addr = htonl(i >> IN_CLASSC_NSHIFT) [all...] |
| inet_mkaddr.c | 63 addr = htonl(addr);
|
| /onnv/onnv-gate/usr/src/uts/intel/asm/ |
| byteorder.h | 38 * htonll(), ntohll(), htonl(), ntohl(), htons(), ntohs() 67 extern __inline__ uint32_t htonl(uint32_t value) function 93 /* Use the htonl() and ntohl() inline functions defined above */ 96 return (htonl(value >> 32) | ((uint64_t)htonl(value) << 32));
|
| /onnv/onnv-gate/usr/src/cmd/cmd-inet/usr.lib/in.dhcpd/ |
| bootp.c | 83 ciaddr.s_addr = htonl(INADDR_ANY); 89 if (pcd->off_ip.s_addr != htonl(INADDR_ANY) && 93 if (pcd->off_ip.s_addr != htonl(INADDR_ANY)) { 98 no_ip.s_addr = htonl(dnp->dn_cip.s_addr); 126 if (ciaddr.s_addr != htonl(INADDR_ANY)) { 138 no_ip.s_addr = htonl(dnp->dn_cip.s_addr); 158 if (ciaddr.s_addr != htonl(INADDR_ANY) && crecords == 0) { 215 if (match_ownerip(htonl(dn.dn_sip.s_addr)) == NULL) { 218 htonl(dnp->dn_sip.s_addr); 230 no_ip.s_addr = htonl(dnp->dn_cip.s_addr) [all...] |
| /onnv/onnv-gate/usr/src/lib/nsswitch/nis/common/ |
| getnetent.c | 118 if ((IN_CLASSA_HOST & htonl(addr)) == 0) { 124 } else if ((IN_CLASSB_HOST & htonl(addr)) == 0) { 133 } else if ((IN_CLASSC_HOST & htonl(addr)) == 0) {
|
| /onnv/onnv-gate/usr/src/cmd/ssh/include/ |
| fake-socket.h | 29 ((u_int32_t *) (a))[2] == 0 && ((u_int32_t *) (a))[3] == htonl (1))
|
| /onnv/onnv-gate/usr/src/grub/grub-0.97/netboot/ |
| big_bswap.h | 5 #define htonl(x) (x) macro
|
| little_bswap.h | 5 #define htonl(x) __bswap_32(x) macro
|
| /onnv/onnv-gate/usr/src/lib/libc/sparc/gen/ |
| byteorder.c | 38 * htonll(), ntohll(), htonl(), ntohl(), htons(), ntohs() 57 htonl(uint32_t in) function
|
| /onnv/onnv-gate/usr/src/lib/libc/sparcv9/gen/ |
| byteorder.c | 38 * htonll(), ntohll(), htonl(), ntohl(), htons(), ntohs() 57 htonl(uint32_t in) function
|