Home
last modified time | relevance | path

Searched refs:__ntohl (Results 1 – 5 of 5) sorted by relevance

/external/tcpdump/
Dnetdissect-stdinc.h282 #if defined(__GNUC__) && defined(__i386__) && !defined(__APPLE__) && !defined(__ntohl)
288 static __inline__ unsigned long __ntohl (unsigned long x);
291 #define ntohl(x) __ntohl(x)
293 #define htonl(x) __ntohl(x)
296 static __inline__ unsigned long __ntohl (unsigned long x) in __ntohl() function
/external/python/cpython2/Lib/plat-freebsd6/
DIN.py141 def __ntohl(x): return __bswap32(x) function
153 def ntohl(x): return __ntohl(x)
/external/python/cpython2/Lib/plat-freebsd8/
DIN.py135 def __ntohl(x): return __bswap32(x) function
147 def ntohl(x): return __ntohl(x)
/external/python/cpython2/Lib/plat-freebsd7/
DIN.py135 def __ntohl(x): return __bswap32(x) function
147 def ntohl(x): return __ntohl(x)
/external/python/cpython2/Lib/plat-unixware7/
DIN.py126 def ntohl(nl): return __ntohl(nl)