Lines Matching refs:u32
27 typedef unsigned int u32; typedef
47 # define BSWAP4(x) ({ u32 ret_=(x); \
51 # define BSWAP8(x) ({ u32 lo_=(u64)(x)>>32,hi_=(x); \
55 # define BSWAP4(x) ({ u32 ret_=(x); \
64 # define BSWAP4(x) ({ u32 ret_; \
69 # define BSWAP8(x) ({ u32 lo_=(u64)(x)>>32,hi_=(x); \
73 # define BSWAP4(x) ({ u32 ret_; \
75 : "=r"(ret_) : "r"((u32)(x))); \
81 # define BSWAP4(x) ({ u32 ret_=(x); \
90 # define BSWAP4(x) _byteswap_ulong((u32)(x))
92 __inline u32 _bswap4(u32 val) in _bswap4()
100 # define GETU32(p) BSWAP4(*(const u32 *)(p))
101 # define PUTU32(p,v) *(u32 *)(p) = BSWAP4(v)
103 # define GETU32(p) ((u32)(p)[0]<<24|(u32)(p)[1]<<16|(u32)(p)[2]<<8|(u32)(p)[3])
123 u32 d[4];