Lines Matching defs:c
296 #define readb_relaxed(c) ({ u8 __r = __raw_readb(c); __r; }) argument
297 #define readw_relaxed(c) ({ u16 __r = le16_to_cpu((__force __le16) \ argument
299 #define readl_relaxed(c) ({ u32 __r = le32_to_cpu((__force __le32) \ argument
302 #define writeb_relaxed(v,c) __raw_writeb(v,c) argument
303 #define writew_relaxed(v,c) __raw_writew((__force u16) cpu_to_le16(v),c) argument
304 #define writel_relaxed(v,c) __raw_writel((__force u32) cpu_to_le32(v),c) argument
306 #define readb(c) ({ u8 __v = readb_relaxed(c); __iormb(); __v; }) argument
307 #define readw(c) ({ u16 __v = readw_relaxed(c); __iormb(); __v; }) argument
308 #define readl(c) ({ u32 __v = readl_relaxed(c); __iormb(); __v; }) argument
310 #define writeb(v,c) ({ __iowmb(); writeb_relaxed(v,c); }) argument
311 #define writew(v,c) ({ __iowmb(); writew_relaxed(v,c); }) argument
312 #define writel(v,c) ({ __iowmb(); writel_relaxed(v,c); }) argument
322 #define memset_io(c,v,l) _memset_io(c,(v),(l)) argument
323 #define memcpy_fromio(a,c,l) _memcpy_fromio((a),c,(l)) argument
324 #define memcpy_toio(c,a,l) _memcpy_toio(c,(a),(l)) argument