Lines Matching defs:c
291 #define readb_relaxed(c) ({ u8 __r = __raw_readb(c); __r; }) argument
292 #define readw_relaxed(c) ({ u16 __r = le16_to_cpu((__force __le16) \ argument
294 #define readl_relaxed(c) ({ u32 __r = le32_to_cpu((__force __le32) \ argument
297 #define writeb_relaxed(v,c) __raw_writeb(v,c) argument
298 #define writew_relaxed(v,c) __raw_writew((__force u16) cpu_to_le16(v),c) argument
299 #define writel_relaxed(v,c) __raw_writel((__force u32) cpu_to_le32(v),c) argument
301 #define readb(c) ({ u8 __v = readb_relaxed(c); __iormb(); __v; }) argument
302 #define readw(c) ({ u16 __v = readw_relaxed(c); __iormb(); __v; }) argument
303 #define readl(c) ({ u32 __v = readl_relaxed(c); __iormb(); __v; }) argument
305 #define writeb(v,c) ({ __iowmb(); writeb_relaxed(v,c); }) argument
306 #define writew(v,c) ({ __iowmb(); writew_relaxed(v,c); }) argument
307 #define writel(v,c) ({ __iowmb(); writel_relaxed(v,c); }) argument
318 static inline void memset_io(volatile void __iomem *dst, unsigned c, in memset_io()
324 #define memset_io(dst,c,count) memset_io(dst,c,count) argument
343 #define memset_io(c,v,l) _memset_io(c,(v),(l)) argument
344 #define memcpy_fromio(a,c,l) _memcpy_fromio((a),c,(l)) argument
345 #define memcpy_toio(c,a,l) _memcpy_toio(c,(a),(l)) argument