Lines Matching defs:u16
92 typedef UINT16 u16;
104 typedef UINT16 u16;
121 typedef uint16_t u16;
176 #define le_to_host16(n) ((__force u16) (le16) (n))
177 #define host_to_le16(n) ((__force le16) (u16) (n))
178 #define be_to_host16(n) bswap_16((__force u16) (be16) (n))
214 static inline u16 WPA_GET_BE16(const u8 *a)
219 static inline void WPA_PUT_BE16(u8 *a, u16 val)
225 static inline u16 WPA_GET_LE16(const u8 *a)
230 static inline void WPA_PUT_LE16(u8 *a, u16 val)
395 #define bswap_16(a) ((((u16) (a) << 8) & 0xff00) | (((u16) (a) >> 8) & 0xff))
448 typedef u16 __bitwise be16;
449 typedef u16 __bitwise le16;