Lines Matching refs:b
146 #define writeb(b,addr) (*(volatile unsigned char *) (addr) = (b)) argument
147 #define writew(b,addr) (*(volatile unsigned short *) (addr) = (b)) argument
148 #define writel(b,addr) (*(volatile unsigned int *) (addr) = (b)) argument
149 #define writeq(b,addr) (*(volatile u64 *) (addr) = (b)) argument
155 #define writeb(b,addr) __raw_writeb(b,(unsigned long)(addr)) argument
156 #define writew(b,addr) __raw_writew(cpu_to_le16(b),(unsigned long)(addr)) argument
157 #define writel(b,addr) __raw_writel(cpu_to_le32(b),(unsigned long)(addr)) argument
158 #define writeq(b,addr) __raw_writeq(cpu_to_le64(b),(unsigned long)(addr)) argument
173 #define isa_writeb(b,a) writeb((b), EISA_BASE | (a)) argument
174 #define isa_writew(b,a) writew((b), EISA_BASE | (a)) argument
175 #define isa_writel(b,a) writel((b), EISA_BASE | (a)) argument
176 #define isa_memset_io(a,b,c) memset_io(EISA_BASE | (a), (b), (c)) argument
177 #define isa_memcpy_fromio(a,b,c) memcpy_fromio((a), EISA_BASE | (b), (c)) argument
178 #define isa_memcpy_toio(a,b,c) memcpy_toio(EISA_BASE | (a), (b), (c)) argument
212 extern void outb(unsigned char b, int addr);
213 extern void outw(unsigned short b, int addr);
214 extern void outl(unsigned int b, int addr);