HomeSort by relevance Sort by last modified time
    Searched refs:__ntohl (Results 1 - 6 of 6) sorted by null

  /external/tcpdump/
netdissect-stdinc.h 282 #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) function
  /device/linaro/bootloader/arm-trusted-firmware/include/lib/stdlib/machine/
endian.h 61 #define __ntohl(x) (__bswap32(x)) macro
  /external/python/cpython2/Lib/plat-freebsd6/
IN.py 141 def __ntohl(x): return __bswap32(x) function
153 def ntohl(x): return __ntohl(x)
  /external/python/cpython2/Lib/plat-freebsd7/
IN.py 135 def __ntohl(x): return __bswap32(x) function
147 def ntohl(x): return __ntohl(x)
  /external/python/cpython2/Lib/plat-freebsd8/
IN.py 135 def __ntohl(x): return __bswap32(x) function
147 def ntohl(x): return __ntohl(x)
  /external/python/cpython2/Lib/plat-unixware7/
IN.py 126 def ntohl(nl): return __ntohl(nl)

Completed in 103 milliseconds