Searched defs:bswap_32 (Results 1 - 4 of 4) sorted by relevance

/external/wpa_supplicant_8/hostapd/src/utils/
H A Dcommon.h28 #define bswap_32 swap32 macro
32 #define bswap_32 bswap32 macro
49 static inline unsigned int bswap_32(unsigned int v) function
171 #define be_to_host32(n) bswap_32((__force u32) (be32) (n))
172 #define host_to_be32(n) ((__force be32) bswap_32((n)))
182 #define le_to_host32(n) bswap_32(n)
183 #define host_to_le32(n) bswap_32(n)
384 #ifndef bswap_32
385 #define bswap_32(a) ((((u32) (a) << 24) & 0xff000000) | \ macro
/external/wpa_supplicant_8/src/utils/
H A Dcommon.h28 #define bswap_32 swap32 macro
32 #define bswap_32 bswap32 macro
49 static inline unsigned int bswap_32(unsigned int v) function
171 #define be_to_host32(n) bswap_32((__force u32) (be32) (n))
172 #define host_to_be32(n) ((__force be32) bswap_32((n)))
182 #define le_to_host32(n) bswap_32(n)
183 #define host_to_le32(n) bswap_32(n)
384 #ifndef bswap_32
385 #define bswap_32(a) ((((u32) (a) << 24) & 0xff000000) | \ macro
/external/wpa_supplicant_8/wpa_supplicant/src/utils/
H A Dcommon.h28 #define bswap_32 swap32 macro
32 #define bswap_32 bswap32 macro
49 static inline unsigned int bswap_32(unsigned int v) function
171 #define be_to_host32(n) bswap_32((__force u32) (be32) (n))
172 #define host_to_be32(n) ((__force be32) bswap_32((n)))
182 #define le_to_host32(n) bswap_32(n)
183 #define host_to_le32(n) bswap_32(n)
384 #ifndef bswap_32
385 #define bswap_32(a) ((((u32) (a) << 24) & 0xff000000) | \ macro
/external/f2fs-tools/include/
H A Df2fs_fs.h50 * bswap_32 - reverse bytes in a uint32_t value.
55 * printf("1024 is %u as four bytes reversed\n", bswap_32(1024));
57 static inline uint32_t bswap_32(uint32_t val) function
98 #define le32_to_cpu(x) bswap_32(x)
101 #define cpu_to_le32(x) bswap_32(x)

Completed in 216 milliseconds