Home
last modified time | relevance | path

Searched refs:__ntohs (Results 1 – 7 of 7) sorted by relevance

/external/tcpdump/
Dnetdissect-stdinc.h289 static __inline__ unsigned short __ntohs (unsigned short x);
292 #define ntohs(x) __ntohs(x)
294 #define htons(x) __ntohs(x)
305 static __inline__ unsigned short __ntohs (unsigned short x) in __ntohs() function
/external/arm-trusted-firmware/include/lib/libc/aarch32/
Dendian_.h69 #define __ntohs(x) ((uint16_t)(x)) macro
76 #define __ntohs(x) (__bswap16(x)) macro
/external/arm-trusted-firmware/include/lib/libc/aarch64/
Dendian_.h64 #define __ntohs(x) (__bswap16(x)) macro
/external/python/cpython2/Lib/plat-freebsd6/
DIN.py143 def __ntohs(x): return __bswap16(x) function
155 def ntohs(x): return __ntohs(x)
/external/python/cpython2/Lib/plat-freebsd8/
DIN.py137 def __ntohs(x): return __bswap16(x) function
149 def ntohs(x): return __ntohs(x)
/external/python/cpython2/Lib/plat-freebsd7/
DIN.py137 def __ntohs(x): return __bswap16(x) function
149 def ntohs(x): return __ntohs(x)
/external/python/cpython2/Lib/plat-unixware7/
DIN.py130 def ntohs(ns): return __ntohs(ns)