HomeSort by relevance Sort by last modified time
    Searched defs:ntohl (Results 1 - 25 of 31) sorted by null

1 2

  /bionic/libc/upstream-openbsd/lib/libc/net/
ntohl.c 1 /* $OpenBSD: ntohl.c,v 1.7 2014/07/21 01:51:10 guenther Exp $ */
10 #undef ntohl macro
13 ntohl(u_int32_t x) function
  /device/linaro/bootloader/edk2/StdLib/LibC/Main/
HtoNtoH.c 21 #undef ntohl macro
64 ntohl( function
  /system/nfc/src/gki/common/
gki_inet.h 25 #define ntohl(n) (n) macro
32 extern uint32_t ntohl(uint32_t n);
  /external/syslinux/com32/include/netinet/
in.h 14 #define ntohl(x) be32_to_cpu(x) macro
  /external/syslinux/core/lwip/src/include/lwip/
def.h 77 #ifdef ntohl
78 #undef ntohl macro
79 #endif /* ntohl */
84 #define ntohl(x) lwip_ntohl(x) macro
  /external/iproute2/include/
bpf_api.h 55 #ifndef ntohl
56 # define ntohl(X) __constant_ntohl((X)) macro
  /external/syslinux/gpxe/src/include/
big_bswap.h 4 #define ntohl(x) (x) macro
little_bswap.h 6 #define ntohl(x) __bswap_32(x) macro
  /system/core/base/include/android-base/
endian.h 61 #define ntohl(x) __builtin_bswap32(x) macro
  /system/core/libutils/
Unicode.cpp 30 # define ntohl(x) ( ((x) << 24) | (((x) >> 24) & 255) | (((x) << 8) & 0xff0000) | (((x) >> 8) & 0xff00) ) macro
31 # define htonl(x) ntohl(x)
  /bionic/libc/include/sys/
endian.h 54 uint32_t ntohl(uint32_t __x) __attribute_const__ __INTRODUCED_IN(21);
60 #define ntohl(x) __swap32(x) macro
73 #define NTOHL(x) (x) = ntohl(__BIONIC_CAST(static_cast,u_int32_t,(x)))
  /device/linaro/bootloader/edk2/StdLib/Include/sys/
endian.h 78 uint32_t ntohl(uint32_t) __attribute__((__const__));
121 #define ntohl(x) (x) macro
126 #define NTOHL(x) (void) (x)
133 #define ntohl(x) bswap32((uint32_t)(x))
138 #define NTOHL(x) (x) = ntohl((uint32_t)(x))
  /external/tcpdump/
netdissect-stdinc.h 283 #undef ntohl macro
291 #define ntohl(x) __ntohl(x) macro
  /external/python/cpython2/Lib/plat-os2emx/
IN.py 10 def ntohl(X): return _swapl(X) function
  /external/python/cpython2/Lib/plat-aix3/
IN.py 64 def ntohl(x): return (x) function
  /external/python/cpython2/Lib/plat-irix5/
IN.py 12 def ntohl(x): return (x) function
20 def htonl(x): return ntohl(x)
  /external/valgrind/coregrind/
m_libcfile.c 982 UInt VG_(ntohl) ( UInt x ) function
    [all...]
  /external/python/cpython2/Lib/plat-aix4/
IN.py 88 def ntohl(x): return (x) function
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/netinet/
in.h 365 extern uint32_t ntohl (uint32_t __netlong) __THROW __attribute__ ((__const__));
385 # define ntohl(x) (x) macro
391 # define ntohl(x) __bswap_32 (x) macro
439 && ntohl (__a->s6_addr32[3]) > 1; }))
479 && (ntohl (((__const uint32_t *) (a))[3]) > 1))
  /external/python/cpython2/Lib/plat-beos5/
IN.py 300 def ntohl(x): return B_BENDIAN_TO_HOST_INT32(x) function
  /external/python/cpython2/Lib/plat-irix6/
IN.py 55 def ntohl(x): return (x) function
63 def htonl(x): return ntohl(x)
264 def IPV6_GET_FLOWLABEL(x): return (ntohl(x) & 0x00ffffff)
266 def IPV6_GET_PRIORITY(x): return ((ntohl(x) >> 24) & 0xf)
268 def IPV6_GET_VERSION(x): return ((ntohl(x) >> 28) & 0xf)
  /external/python/cpython2/Lib/plat-freebsd6/
IN.py 153 def ntohl(x): return __ntohl(x) function
  /external/python/cpython2/Lib/plat-freebsd7/
IN.py 147 def ntohl(x): return __ntohl(x) function
  /external/python/cpython2/Lib/plat-freebsd8/
IN.py 147 def ntohl(x): return __ntohl(x) function
  /external/python/cpython2/Lib/plat-linux2/
IN.py 579 def ntohl(x): return (x)
587 def ntohl(x): return __bswap_32 (x) function

Completed in 284 milliseconds

1 2