Home
last modified time | relevance | path

Searched refs:le16toh (Results 1 – 11 of 11) sorted by relevance

/external/kmod/port-gnu/
Dendian-darwin.h27 # define le16toh(x) OSSwapLittleToHostInt16(x) macro
53 # define le16toh(x) letoh16(x) macro
71 # define le16toh(x) (x) macro
89 # define le16toh(x) __builtin_bswap16(x) macro
/external/vboot_reference/cgpt/
Dcgpt_endian.h14 #ifndef le16toh
24 # define le16toh(x) (x) macro
39 # define le16toh(x) __bswap_16 (x) macro
Dcgpt_common.c412 le16toh(guid->u.Uuid.time_mid), in GuidToStr()
413 le16toh(guid->u.Uuid.time_high_and_version), in GuidToStr()
455 uint16_t codeunit = le16toh(utf16[s16idx]); in UTF16ToUTF8()
/external/iperf3/src/
Dportable_endian.h26 # define le16toh(x) letoh16(x) macro
51 # define le16toh(x) OSSwapLittleToHostInt16(x) macro
97 # define le16toh(x) (x) macro
115 # define le16toh(x) __builtin_bswap16(x) macro
/external/nos/host/generic/libnos_transport/
Dtransport.c171 out->reply_len = le16toh(st.status.reply_len); in get_status()
174 const uint16_t length = le16toh(st.status.length); in get_status()
182 out->version = le16toh(st.status.version); in get_status()
183 out->flags = le16toh(st.status.flags); in get_status()
184 out->crc = le16toh(st.status.crc); in get_status()
185 out->reply_crc = le16toh(st.status.reply_crc); in get_status()
/external/minijail/
Delfparse.c37 pHeader->e_phentsize = le16toh(pHeader->e_phentsize); \
38 pHeader->e_phnum = le16toh(pHeader->e_phnum); \
/external/vboot_reference/host/lib21/
Dhost_misc.c152 le16toh(guid->uuid.time_mid), in vb2_guid_to_str()
153 le16toh(guid->uuid.time_high_and_version), in vb2_guid_to_str()
/external/libmtp/m4/
Dbyteorder.m4247 #ifndef le16toh
248 # define le16toh(x) swap16(x)
266 #define LE16TOH(x) (x) = le16toh(x)
286 #ifndef le16toh
287 # define le16toh(x) (x)
345 # define le16atoh(x) le16toh(*(uint16_t*)(x))
/external/libexif/m4m/
Dgp-byteorder.m4237 #define le16toh(x) swap16(x)
245 #define LE16TOH(x) (x) = le16toh(x)
258 #define le16toh(x) (x)
300 #define le16atoh(x) le16toh(*(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()