Searched refs:__swab32 (Results 1 – 3 of 3) sorted by relevance
54 #define __cpu_to_le32(x) ((__force __le32) __swab32((x)))55 #define __le32_to_cpu(x) __swab32((__force __u32) (__le32) (x))
61 #define __cpu_to_be32(x) ((__force __be32) __swab32((x)))62 #define __be32_to_cpu(x) __swab32((__force __u32) (__be32) (x))
56 #define __swab32(x) (__builtin_constant_p((__u32) (x)) ? ___constant_swab32(x) : __fswab32(x)) macro