Home
last modified time | relevance | path

Searched refs:__ntohl (Results 1 – 7 of 7) 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/arm-trusted-firmware/include/lib/libc/aarch32/
Dendian_.h68 #define __ntohl(x) ((uint32_t)(x)) macro
75 #define __ntohl(x) (__bswap32(x)) macro
/external/arm-trusted-firmware/include/lib/libc/aarch64/
Dendian_.h63 #define __ntohl(x) (__bswap32(x)) macro
/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)