Home
last modified time | relevance | path

Searched defs:ntohs (Results 1 – 7 of 7) sorted by relevance

/aosp12/bionic/libc/upstream-openbsd/lib/libc/net/
H A Dntohs.c13 ntohs(u_int16_t x) in ntohs() function
/aosp12/system/nfc/src/gki/common/
H A Dgki_inet.h24 #define ntohs(n) (n) macro
/aosp12/packages/modules/Connectivity/Tethering/bpf_progs/
H A Dbpf_net_helpers.h60 #define ntohs(x) htons(x) macro
/aosp12/system/netd/bpf_progs/
H A Dbpf_net_helpers.h61 #define ntohs(x) htons(x) macro
/aosp12/system/libbase/include/android-base/
H A Dendian.h60 #define ntohs(x) __builtin_bswap16(x) macro
/aosp12/bionic/libc/include/sys/
H A Dendian.h61 #define ntohs(x) __swap16(x) macro
/aosp12/frameworks/base/libs/androidfw/
H A DResourceTypes.cpp62 #define ntohs(x) ( (((x) << 8) & 0xff00) | (((x) >> 8) & 255) ) macro