Lines Matching defs:c

115 #define writeb(v,c)	({ u8  __v = v; __iowmb(); __arch_putb(__v,c); __v; })  argument
116 #define writew(v,c) ({ u16 __v = v; __iowmb(); __arch_putw(__v,c); __v; }) argument
117 #define writel(v,c) ({ u32 __v = v; __iowmb(); __arch_putl(__v,c); __v; }) argument
118 #define writeq(v,c) ({ u64 __v = v; __iowmb(); __arch_putq(__v,c); __v; }) argument
120 #define readb(c) ({ u8 __v = __arch_getb(c); __iormb(); __v; }) argument
121 #define readw(c) ({ u16 __v = __arch_getw(c); __iormb(); __v; }) argument
122 #define readl(c) ({ u32 __v = __arch_getl(c); __iormb(); __v; }) argument
123 #define readq(c) ({ u64 __v = __arch_getq(c); __iormb(); __v; }) argument
304 #define readb(c) ({ unsigned int __v = __raw_readb(__mem_pci(c)); __v; }) argument
305 #define readw(c) ({ unsigned int __v = le16_to_cpu(__raw_readw(__mem_pci(c))); __v; }) argument
306 #define readl(c) ({ unsigned int __v = le32_to_cpu(__raw_readl(__mem_pci(c))); __v; }) argument
308 #define writeb(v,c) __raw_writeb(v,__mem_pci(c)) argument
309 #define writew(v,c) __raw_writew(cpu_to_le16(v),__mem_pci(c)) argument
310 #define writel(v,c) __raw_writel(cpu_to_le32(v),__mem_pci(c)) argument
312 #define memset_io(c,v,l) _memset_io(__mem_pci(c),(v),(l)) argument
313 #define memcpy_fromio(a,c,l) _memcpy_fromio((a),__mem_pci(c),(l)) argument
314 #define memcpy_toio(c,a,l) _memcpy_toio(__mem_pci(c),(a),(l)) argument
316 #define eth_io_copy_and_sum(s,c,l,b) \ argument
337 #define memset_io(a, b, c) memset((void *)(a), (b), (c)) argument
338 #define memcpy_fromio(a, b, c) memcpy((a), (void *)(b), (c)) argument
339 #define memcpy_toio(a, b, c) memcpy((void *)(a), (b), (c)) argument
350 #define eth_io_copy_and_sum(a,b,c,d) __readwrite_bug("eth_io_copy_and_sum") argument
369 #define isa_memset_io(a,b,c) _memset_io(__mem_isa(a),(b),(c)) argument
370 #define isa_memcpy_fromio(a,b,c) _memcpy_fromio((a),__mem_isa(b),(c)) argument
371 #define isa_memcpy_toio(a,b,c) _memcpy_toio(__mem_isa((a)),(b),(c)) argument
373 #define isa_eth_io_copy_and_sum(a,b,c,d) \ argument
401 #define isa_memset_io(a,b,c) __readwrite_bug("isa_memset_io") argument
402 #define isa_memcpy_fromio(a,b,c) __readwrite_bug("isa_memcpy_fromio") argument
403 #define isa_memcpy_toio(a,b,c) __readwrite_bug("isa_memcpy_toio") argument
405 #define isa_eth_io_copy_and_sum(a,b,c,d) \ argument