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

1 2

  /bionic/libc/upstream-openbsd/lib/libc/net/
ntohs.c 1 /* $OpenBSD: ntohs.c,v 1.9 2014/07/21 01:51:10 guenther Exp $ */
10 #undef ntohs macro
13 ntohs(u_int16_t x) function
  /device/linaro/bootloader/edk2/StdLib/LibC/Main/
HtoNtoH.c 22 #undef ntohs macro
81 ntohs( function
  /system/nfc/src/gki/common/
gki_inet.h 24 #define ntohs(n) (n) macro
31 extern uint16_t ntohs(uint16_t n);
  /external/curl/lib/
warnless.h 107 # undef ntohs macro
108 # define ntohs(a) curlx_ntohs((a)) macro
  /external/syslinux/com32/include/netinet/
in.h 12 #define ntohs(x) be16_to_cpu(x) macro
  /external/syslinux/core/lwip/src/include/lwip/
def.h 74 #ifdef ntohs
75 #undef ntohs macro
76 #endif /* ntohs */
82 #define ntohs(x) lwip_ntohs(x) macro
  /external/iproute2/include/
bpf_api.h 47 #ifndef ntohs
48 # define ntohs(X) __constant_ntohs((X)) macro
  /external/syslinux/gpxe/src/include/
big_bswap.h 6 #define ntohs(x) (x) macro
little_bswap.h 8 #define ntohs(x) __bswap_16(x) macro
  /system/core/base/include/android-base/
endian.h 60 #define ntohs(x) __builtin_bswap16(x) macro
  /system/core/libutils/
Unicode.cpp 32 # define ntohs(x) ( (((x) << 8) & 0xff00) | (((x) >> 8) & 255) ) macro
33 # define htons(x) ntohs(x)
349 const char16_t c2 = ntohs(*s2N);
358 ? (0 - (int)ntohs(*s2N))
  /bionic/libc/include/sys/
endian.h 55 uint16_t ntohs(uint16_t __x) __attribute_const__ __INTRODUCED_IN(21);
61 #define ntohs(x) __swap16(x) macro
74 #define NTOHS(x) (x) = ntohs(__BIONIC_CAST(static_cast,u_int16_t,(x)))
  /device/linaro/bootloader/edk2/StdLib/Include/sys/
endian.h 79 uint16_t ntohs(uint16_t) __attribute__((__const__));
122 #define ntohs(x) (x) macro
127 #define NTOHS(x) (void) (x)
134 #define ntohs(x) bswap16((uint16_t)(x))
139 #define NTOHS(x) (x) = ntohs((uint16_t)(x))
  /external/tcpdump/
netdissect-stdinc.h 284 #undef ntohs macro
292 #define ntohs(x) __ntohs(x) macro
  /external/python/cpython2/Lib/plat-os2emx/
IN.py 14 def ntohs(X): return _swaps(X) function
  /external/python/cpython2/Lib/plat-aix3/
IN.py 66 def ntohs(x): return (x) function
  /external/python/cpython2/Lib/plat-irix5/
IN.py 14 def ntohs(x): return (x) function
22 def htons(x): return ntohs(x)
  /external/valgrind/coregrind/
m_libcfile.c 1003 UShort VG_(ntohs) ( UShort x ) function
    [all...]
  /external/python/cpython2/Lib/plat-aix4/
IN.py 90 def ntohs(x): return (x) function
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/netinet/
in.h 366 extern uint16_t ntohs (uint16_t __netshort)
386 # define ntohs(x) (x) macro
392 # define ntohs(x) __bswap_16 (x) macro
  /external/python/cpython2/Lib/plat-beos5/
IN.py 304 def ntohs(x): return B_BENDIAN_TO_HOST_INT16(x) function
  /external/python/cpython2/Lib/plat-irix6/
IN.py 57 def ntohs(x): return (x) function
65 def htons(x): return ntohs(x)
  /external/python/cpython2/Lib/plat-freebsd6/
IN.py 155 def ntohs(x): return __ntohs(x) function
  /external/python/cpython2/Lib/plat-freebsd7/
IN.py 149 def ntohs(x): return __ntohs(x) function
  /external/python/cpython2/Lib/plat-freebsd8/
IN.py 149 def ntohs(x): return __ntohs(x) function

Completed in 1797 milliseconds

1 2