Lines Matching refs:c
135 #define readb_relaxed(c) ({ u8 __r = __raw_readb(c); __r; }) argument
136 #define readw_relaxed(c) ({ u16 __r = le16_to_cpu((__force __le16)__raw_readw(c)); __r; }) argument
137 #define readl_relaxed(c) ({ u32 __r = le32_to_cpu((__force __le32)__raw_readl(c)); __r; }) argument
138 #define readq_relaxed(c) ({ u64 __r = le64_to_cpu((__force __le64)__raw_readq(c)); __r; }) argument
140 #define writeb_relaxed(v,c) ((void)__raw_writeb((v),(c))) argument
141 #define writew_relaxed(v,c) ((void)__raw_writew((__force u16)cpu_to_le16(v),(c))) argument
142 #define writel_relaxed(v,c) ((void)__raw_writel((__force u32)cpu_to_le32(v),(c))) argument
143 #define writeq_relaxed(v,c) ((void)__raw_writeq((__force u64)cpu_to_le64(v),(c))) argument
150 #define readb(c) ({ u8 __v = readb_relaxed(c); __iormb(__v); __v; }) argument
151 #define readw(c) ({ u16 __v = readw_relaxed(c); __iormb(__v); __v; }) argument
152 #define readl(c) ({ u32 __v = readl_relaxed(c); __iormb(__v); __v; }) argument
153 #define readq(c) ({ u64 __v = readq_relaxed(c); __iormb(__v); __v; }) argument
155 #define writeb(v,c) ({ __iowmb(); writeb_relaxed((v),(c)); }) argument
156 #define writew(v,c) ({ __iowmb(); writew_relaxed((v),(c)); }) argument
157 #define writel(v,c) ({ __iowmb(); writel_relaxed((v),(c)); }) argument
158 #define writeq(v,c) ({ __iowmb(); writeq_relaxed((v),(c)); }) argument
174 #define memset_io(c,v,l) __memset_io((c),(v),(l)) argument
175 #define memcpy_fromio(a,c,l) __memcpy_fromio((a),(c),(l)) argument
176 #define memcpy_toio(c,a,l) __memcpy_toio((c),(a),(l)) argument