Lines Matching defs:u16
91 typedef UINT16 u16;
103 typedef UINT16 u16;
120 typedef uint16_t u16;
175 #define le_to_host16(n) ((__force u16) (le16) (n))
176 #define host_to_le16(n) ((__force le16) (u16) (n))
177 #define be_to_host16(n) bswap_16((__force u16) (be16) (n))
213 static inline u16 WPA_GET_BE16(const u8 *a)
218 static inline void WPA_PUT_BE16(u8 *a, u16 val)
224 static inline u16 WPA_GET_LE16(const u8 *a)
229 static inline void WPA_PUT_LE16(u8 *a, u16 val)
409 #define bswap_16(a) ((((u16) (a) << 8) & 0xff00) | (((u16) (a) >> 8) & 0xff))
465 typedef u16 __bitwise be16;
466 typedef u16 __bitwise le16;