Searched refs:bswap_16 (Results 1 - 16 of 16) sorted by relevance

/external/elfutils/host-darwin-fixup/
H A Dbyteswap.h20 static inline unsigned short bswap_16(unsigned short val) function
27 return bswap_16((unsigned short)val) << 16 |
28 bswap_16((unsigned short)(val >> 16));
/external/linux-tools-perf/host-darwin-fixup/
H A Dbyteswap.h20 static inline unsigned short bswap_16(unsigned short val) function
27 return bswap_16((unsigned short)val) << 16 |
28 bswap_16((unsigned short)(val >> 16));
/external/elfutils/libelf/
H A Dversion_xlate.h95 ddest->vd_version = bswap_16 (dsrc->vd_version);
96 ddest->vd_flags = bswap_16 (dsrc->vd_flags);
97 ddest->vd_ndx = bswap_16 (dsrc->vd_ndx);
98 ddest->vd_cnt = bswap_16 (dsrc->vd_cnt);
136 ddest->vd_version = bswap_16 (dsrc->vd_version);
137 ddest->vd_flags = bswap_16 (dsrc->vd_flags);
138 ddest->vd_ndx = bswap_16 (dsrc->vd_ndx);
139 ddest->vd_cnt = bswap_16 (dsrc->vd_cnt);
189 ndest->vn_version = bswap_16 (nsrc->vn_version);
190 ndest->vn_cnt = bswap_16 (nsr
[all...]
H A Dcommon.h163 ? bswap_16 (Var) \
172 ? bswap_16 (Var) \
H A Dgelf_xlate.c119 case 2: STORE (16, dest, bswap_16 (FETCH (16, ptr))); break; \
/external/elfutils/src/
H A Dunaligned.h45 # define target_bswap_16(n) bswap_16 (n)
93 uint16_t _val = bswap_16 (_ptr->u) + (value); \
94 _ptr->u = bswap_16 (_val); \
/external/libsepol/src/
H A Dprivate.h32 #define cpu_to_le16(x) bswap_16(x)
33 #define le16_to_cpu(x) bswap_16(x)
/external/elfutils/libcpu/
H A Dmemory-access.h52 ? bswap_16 (*((const uint16_t *) (Addr))) \
56 ? (int16_t) bswap_16 (*((const int16_t *) (Addr))) \
97 return bswap_16 (up->u2);
105 return (int16_t) bswap_16 (up->u2);
/external/wpa_supplicant_8/hostapd/src/utils/
H A Dcommon.h27 #define bswap_16 swap16 macro
31 #define bswap_16 bswap16 macro
44 static inline unsigned short bswap_16(unsigned short v) function
192 #define be_to_host16(n) bswap_16((__force u16) (be16) (n))
193 #define host_to_be16(n) ((__force be16) bswap_16((n)))
203 #define le_to_host16(n) bswap_16(n)
204 #define host_to_le16(n) bswap_16(n)
399 #ifndef bswap_16
400 #define bswap_16(a) ((((u16) (a) << 8) & 0xff00) | (((u16) (a) >> 8) & 0xff)) macro
/external/wpa_supplicant_8/src/utils/
H A Dcommon.h27 #define bswap_16 swap16 macro
31 #define bswap_16 bswap16 macro
44 static inline unsigned short bswap_16(unsigned short v) function
192 #define be_to_host16(n) bswap_16((__force u16) (be16) (n))
193 #define host_to_be16(n) ((__force be16) bswap_16((n)))
203 #define le_to_host16(n) bswap_16(n)
204 #define host_to_le16(n) bswap_16(n)
399 #ifndef bswap_16
400 #define bswap_16(a) ((((u16) (a) << 8) & 0xff00) | (((u16) (a) >> 8) & 0xff)) macro
/external/wpa_supplicant_8/wpa_supplicant/src/utils/
H A Dcommon.h27 #define bswap_16 swap16 macro
31 #define bswap_16 bswap16 macro
44 static inline unsigned short bswap_16(unsigned short v) function
192 #define be_to_host16(n) bswap_16((__force u16) (be16) (n))
193 #define host_to_be16(n) ((__force be16) bswap_16((n)))
203 #define le_to_host16(n) bswap_16(n)
204 #define host_to_le16(n) bswap_16(n)
399 #ifndef bswap_16
400 #define bswap_16(a) ((((u16) (a) << 8) & 0xff00) | (((u16) (a) >> 8) & 0xff)) macro
/external/elfutils/libdw/
H A Dmemory-access.h149 ? bswap_16 (*((const uint16_t *) (Addr))) \
153 ? (int16_t) bswap_16 (*((const int16_t *) (Addr))) \
194 return bswap_16 (up->u2);
202 return (int16_t) bswap_16 (up->u2);
/external/chromium_org/base/
H A Dsys_byteorder.h48 return bswap_16(x);
/external/qemu/
H A Dbswap.h18 #define bswap_16(x) \ macro
54 return bswap_16(x);
/external/blktrace/
H A Dblktrace.h67 #define __bswap_16 bswap_16
/external/linux-tools-perf/util/
H A Dsession.c857 self->misc = bswap_16(self->misc);
858 self->size = bswap_16(self->size);

Completed in 697 milliseconds