Searched defs:ntohl (Results 1 - 22 of 22) sorted by relevance

/illumos-gate/usr/src/lib/libbc/libc/net/sparc/
H A Dntohl.c30 ntohl(unsigned long a) function
/illumos-gate/usr/src/lib/libc/sparc/gen/
H A Dbyteorder.c38 * htonll(), ntohll(), htonl(), ntohl(), htons(), ntohs()
63 ntohl(uint32_t in) function
/illumos-gate/usr/src/lib/libc/sparcv9/gen/
H A Dbyteorder.c38 * htonll(), ntohll(), htonl(), ntohl(), htons(), ntohs()
63 ntohl(uint32_t in) function
/illumos-gate/usr/src/stand/lib/xdr/
H A Dbyteorder.c30 * htonll(), ntohll(), htonl(), ntohl(), htons(), ntohs()
53 return ((uint64_t)ntohl((in >> 32) & 0xffffffff) |
54 ((uint64_t)ntohl(in & 0xffffffff) << 32));
70 ntohl(uint32_t in) function
114 ntohl(uint32_t in) function
/illumos-gate/usr/src/uts/intel/asm/
H A Dbyteorder.h39 * htonll(), ntohll(), htonl(), ntohl(), htons(), ntohs()
78 ntohl(uint32_t value) function
100 /* Use the htonl() and ntohl() inline functions defined above */
110 return (ntohl(value >> 32) | (uint64_t)ntohl(value) << 32);
/illumos-gate/usr/src/lib/libc/i386/gen/
H A Dbyteorder.s32 * NOTE: htonl/ntohl are identical routines, as are htons/ntohs.
42 / unsigned long ntohl( hl )
52 ENTRY(ntohl) function
56 SET_SIZE(ntohl)
121 / Convert in to little endian, eg. ntohl()
/illumos-gate/usr/src/boot/lib/libc/net/
H A Dntoh.c49 ntohl(uint32_t nl) function
/illumos-gate/usr/src/grub/grub-0.97/netboot/
H A Dbig_bswap.h4 #define ntohl(x) (x) macro
H A Dlittle_bswap.h4 #define ntohl(x) __bswap_32(x) macro
/illumos-gate/usr/src/lib/libc/amd64/gen/
H A Dbyteorder.s32 * NOTE: htonll/ntohll, htonl/ntohl, and htons/ntohs are identical
60 * unsigned long ntohl( hl )
70 ENTRY(ntohl) function
74 SET_SIZE(ntohl)
148 * Convert in to little endian, eg. ntohl()
/illumos-gate/usr/src/lib/librstp/common/
H A Dbase.h116 #define ntohl Ntohl macro
/illumos-gate/usr/src/grub/grub-0.97/stage2/
H A Dimgact_aout.h38 * 11/23/95 - Kludge to get "ntohl" null macro added. -- ESB
46 #define ntohl(x) ((x << 24) | ((x & 0xFF00) << 8) \ macro
48 #define htonl(x) ntohl(x)
64 (ntohl((ex).a_midmag) & 0xffff)
66 ((ntohl((ex).a_midmag) >> 16) & 0x03ff)
68 ((ntohl((ex).a_midmag) >> 26) & 0x3f)
/illumos-gate/usr/src/man/man3xnet/
H A DMakefile75 ntohl.3xnet \
114 ntohl.3xnet := LINKSRC = htonl.3xnet
/illumos-gate/usr/src/uts/common/sys/
H A Dbyteorder.h59 #if defined(_BIG_ENDIAN) && !defined(ntohl) && !defined(__lint)
61 #define ntohl(x) (x) macro
70 #elif !defined(ntohl) /* little-endian */
85 extern uint32_t ntohl(uint32_t);
90 extern in_addr_t ntohl(in_addr_t);
/illumos-gate/usr/src/boot/include/arpa/
H A Dinet.h141 uint32_t ntohl(uint32_t);
172 #define ntohl(x) __ntohl(x) macro
/illumos-gate/usr/src/boot/sys/sys/
H A Dparam.h314 __uint32_t ntohl(__uint32_t);
325 #define ntohl(x) __ntohl(x) macro
/illumos-gate/usr/src/lib/libbc/inc/include/netinet/
H A Din.h192 #if !defined(vax) && !defined(ntohl) && !defined(lint) && !defined(i386)
196 #define ntohl(x) (x) macro
202 #if !defined(ntohl) && (defined(vax) || defined(lint) || defined(i386))
204 u_long ntohl(), htonl();
/illumos-gate/usr/src/uts/intel/ia32/ml/
H A Di86_subr.s2070 /* htonll(), ntohll(), htonl(), ntohl(), htons(), ntohs()
2091 ntohl(uint32_t i)
2116 ALTENTRY(ntohl) function
2120 SET_SIZE(ntohl)
2146 ALTENTRY(ntohl) function
2150 SET_SIZE(ntohl)
/illumos-gate/usr/src/boot/lib/libstand/
H A Dstand.h394 extern uint32_t ntohl(uint32_t);
402 #define ntohl(x) __ntohl(x) macro
/illumos-gate/usr/src/man/man3socket/
H A DMakefile123 ntohl.3socket \
155 ntohl.3socket := LINKSRC = byteorder.3socket
/illumos-gate/usr/src/boot/include/netinet/
H A Din.h110 uint32_t ntohl(uint32_t);
119 #define ntohl(x) __ntohl(x) macro
/illumos-gate/usr/src/uts/common/inet/ipf/netinet/
H A Dip_compat.h288 # define ntohl(x) (x) macro

Completed in 226 milliseconds