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

1 2

  /bionic/libc/upstream-openbsd/lib/libc/net/
htonl.c 1 /* $OpenBSD: htonl.c,v 1.7 2014/07/21 01:51:10 guenther Exp $ */
10 #undef htonl macro
13 htonl(u_int32_t x) function
  /device/linaro/bootloader/edk2/StdLib/LibC/Main/
HtoNtoH.c 19 #undef htonl macro
30 htonl( function
  /external/syslinux/com32/include/netinet/
in.h 13 #define htonl(x) cpu_to_be32(x) macro
  /external/syslinux/core/lwip/src/include/lwip/
def.h 71 #ifdef htonl
72 #undef htonl macro
73 #endif /* htonl */
83 #define htonl(x) lwip_htonl(x) macro
  /external/iproute2/include/
bpf_api.h 51 #ifndef htonl
52 # define htonl(X) __constant_htonl((X)) macro
  /external/syslinux/gpxe/src/include/
big_bswap.h 5 #define htonl(x) (x) macro
little_bswap.h 7 #define htonl(x) __bswap_32(x) macro
  /system/core/base/include/android-base/
endian.h 31 /* glibc keeps htons and htonl in <netinet/in.h>. */
57 #define htonl(x) __builtin_bswap32(x) macro
  /system/core/libutils/
Unicode.cpp 26 # undef htonl macro
31 # define htonl(x) ntohl(x) macro
  /bionic/libc/include/sys/
endian.h 52 uint32_t htonl(uint32_t __x) __attribute_const__ __INTRODUCED_IN(21);
58 #define htonl(x) __swap32(x) macro
75 #define HTONL(x) (x) = htonl(__BIONIC_CAST(static_cast,u_int32_t,(x)))
  /device/linaro/bootloader/edk2/StdLib/Include/sys/
endian.h 76 uint32_t htonl(uint32_t) __attribute__((__const__));
123 #define htonl(x) (x) macro
128 #define HTONL(x) (void) (x)
135 #define htonl(x) bswap32((uint32_t)(x))
140 #define HTONL(x) (x) = htonl((uint32_t)(x))
  /external/tcpdump/
netdissect-stdinc.h 285 #undef htonl macro
293 #define htonl(x) __ntohl(x) macro
  /external/python/cpython2/Lib/plat-os2emx/
IN.py 8 def htonl(X): return _swapl(X) function
  /external/python/cpython2/Lib/plat-aix3/
IN.py 68 def htonl(x): return (x) function
  /external/python/cpython2/Lib/plat-irix5/
IN.py 16 def htonl(x): return (x) function
20 def htonl(x): return ntohl(x) function
  /external/valgrind/coregrind/
m_libcfile.c 971 UInt VG_(htonl) ( UInt x ) function
    [all...]
  /external/python/cpython2/Lib/plat-aix4/
IN.py 92 def htonl(x): return (x) function
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/netinet/
in.h 368 extern uint32_t htonl (uint32_t __hostlong)
387 # define htonl(x) (x) macro
393 # define htonl(x) __bswap_32 (x) macro
414 && __a->s6_addr32[3] == htonl (1); }))
419 (__a->s6_addr32[0] & htonl (0xffc00000)) == htonl (0xfe800000); }))
424 (__a->s6_addr32[0] & htonl (0xffc00000)) == htonl (0xfec00000); }))
431 && __a->s6_addr32[2] == htonl (0xffff); }))
460 && ((__const uint32_t *) (a))[3] == htonl (1)
    [all...]
  /external/clang/test/SemaCXX/
constant-expression-cxx1y.cpp 103 constexpr int htonl(int x) { // expected-error {{never produces a constant expression}} function
  /external/python/cpython2/Lib/plat-beos5/
IN.py 298 def htonl(x): return B_HOST_TO_BENDIAN_INT32(x) function
  /external/python/cpython2/Lib/plat-irix6/
IN.py 59 def htonl(x): return (x) function
63 def htonl(x): return ntohl(x) function
270 def IPV6_SET_FLOWLABEL(x): return (htonl(x) & IPV6_FLOWINFO_FLOWLABEL)
272 def IPV6_SET_PRIORITY(x): return (htonl((x & 0xf) << 24))
  /external/python/cpython2/Lib/plat-freebsd6/
IN.py 149 def htonl(x): return __htonl(x) function
  /external/python/cpython2/Lib/plat-freebsd7/
IN.py 143 def htonl(x): return __htonl(x) function
  /external/python/cpython2/Lib/plat-freebsd8/
IN.py 143 def htonl(x): return __htonl(x) function
  /external/python/cpython2/Lib/plat-linux2/
IN.py 583 def htonl(x): return (x) function
591 def htonl(x): return __bswap_32 (x) function

Completed in 518 milliseconds

1 2