Home | History | Annotate | Download | only in utils

Lines Matching defs:u32

91 typedef UINT32 u32;
103 typedef UINT32 u32;
123 typedef unsigned int u32;
136 typedef uint32_t u32;
194 #define le_to_host32(n) ((__force u32) (le32) (n))
195 #define host_to_le32(n) ((__force le32) (u32) (n))
196 #define be_to_host32(n) bswap_32((__force u32) (be32) (n))
250 static inline u32 WPA_GET_BE24(const u8 *a)
255 static inline void WPA_PUT_BE24(u8 *a, u32 val)
262 static inline u32 WPA_GET_BE32(const u8 *a)
267 static inline void WPA_PUT_BE32(u8 *a, u32 val)
275 static inline u32 WPA_GET_LE32(const u8 *a)
280 static inline void WPA_PUT_LE32(u8 *a, u32 val)
404 #define bswap_32(a) ((((u32) (a) << 24) & 0xff000000) | \
405 (((u32) (a) << 8) & 0xff0000) | \
406 (((u32) (a) >> 8) & 0xff00) | \
407 (((u32) (a) >> 24) & 0xff))
449 typedef u32 __bitwise be32;
450 typedef u32 __bitwise le32;
496 int find_first_bit(u32 value);