Lines Matching refs:a
50 #define __raw_writeb(v,a) (*(volatile unsigned char *)(a) = (v)) argument
51 #define __raw_writew(v,a) (*(volatile unsigned short *)(a) = (v)) argument
52 #define __raw_writel(v,a) (*(volatile unsigned int *)(a) = (v)) argument
54 #define __raw_readb(a) (*(volatile unsigned char *)(a)) argument
55 #define __raw_readw(a) (*(volatile unsigned short *)(a)) argument
56 #define __raw_readl(a) (*(volatile unsigned int *)(a)) argument
123 #define out_arch(type,endian,a,v) __raw_write##type(cpu_to_##endian(v),a) argument
124 #define in_arch(type,endian,a) endian##_to_cpu(__raw_read##type(a)) argument
126 #define out_le32(a,v) out_arch(l,le32,a,v) argument
127 #define out_le16(a,v) out_arch(w,le16,a,v) argument
129 #define in_le32(a) in_arch(l,le32,a) argument
130 #define in_le16(a) in_arch(w,le16,a) argument
132 #define out_be32(a,v) out_arch(l,be32,a,v) argument
133 #define out_be16(a,v) out_arch(w,be16,a,v) argument
135 #define in_be32(a) in_arch(l,be32,a) argument
136 #define in_be16(a) in_arch(w,be16,a) argument
138 #define out_8(a,v) __raw_writeb(v,a) argument
139 #define in_8(a) __raw_readb(a) argument
170 #define memset_io(a, b, c) memset((void *)(a), (b), (c)) argument
171 #define memcpy_fromio(a, b, c) memcpy((a), (void *)(b), (c)) argument
172 #define memcpy_toio(a, b, c) memcpy((void *)(a), (b), (c)) argument