Home
last modified time | relevance | path

Searched refs:be16toh (Results 1 – 8 of 8) sorted by relevance

/external/kmod/port-gnu/
Dendian-darwin.h26 # define be16toh(x) OSSwapBigToHostInt16(x) macro
52 # define be16toh(x) betoh16(x) macro
70 # define be16toh(x) ntohs(x) macro
88 # define be16toh(x) (x) macro
/external/iperf3/src/
Dportable_endian.h25 # define be16toh(x) betoh16(x) macro
50 # define be16toh(x) OSSwapBigToHostInt16(x) macro
96 # define be16toh(x) ntohs(x) macro
114 # define be16toh(x) (x) macro
/external/vboot_reference/cgpt/
Dcgpt_endian.h23 # define be16toh(x) __bswap_16 (x) macro
38 # define be16toh(x) (x) macro
/external/minijail/
Delfparse.c41 pHeader->e_phentsize = be16toh(pHeader->e_phentsize); \
42 pHeader->e_phnum = be16toh(pHeader->e_phnum); \
/external/libmtp/m4/
Dbyteorder.m4224 #ifndef be16toh
225 # define be16toh(x) ntohs(x)
234 #define BE16TOH(x) (x) = be16toh(x)
336 # define be16atoh(x) be16toh(*(uint16_t*)(x))
/external/libexif/m4m/
Dgp-byteorder.m4222 #define be16toh(x) ntohs(x)
228 #define BE16TOH(x) (x) = be16toh(x)
297 #define be16atoh(x) be16toh(*(uint16_t*)(x))
/external/u-boot/tools/
Dmips-relocs.c38 _val = is_be ? be16toh(_val) : le16toh(_val); \
/external/libmtp/src/
Dptp-pack.c79 return ((params->byteorder==PTP_DL_LE)?le16toh(var):be16toh(var)); in dtoh16p()