Lines Matching defs:buf
273 #define isa_insb(port, buf, nr) raw_insb(isa_itb(port), (u8 *)(buf), (nr)) argument
274 #define isa_outsb(port, buf, nr) raw_outsb(isa_itb(port), (u8 *)(buf), (nr)) argument
276 #define isa_insw(port, buf, nr) \ argument
280 #define isa_outsw(port, buf, nr) \ argument
284 #define isa_insl(port, buf, nr) \ argument
288 #define isa_outsl(port, buf, nr) \ argument
299 #define isa_rom_insb(port, buf, nr) raw_rom_insb(isa_itb(port), (u8 *)(buf), (nr)) argument
301 #define isa_rom_insw(port, buf, nr) \ argument
305 #define isa_rom_outsb(port, buf, nr) raw_rom_outsb(isa_itb(port), (u8 *)(buf), (nr)) argument
307 #define isa_rom_outsw(port, buf, nr) \ argument
361 #define insb(port, buf, nr) ((port) < 1024 ? isa_rom_insb((port), (buf), (nr)) : isa_insb((port), (… argument
362 #define insw(port, buf, nr) ((port) < 1024 ? isa_rom_insw((port), (buf), (nr)) : isa_insw((port), (… argument
364 #define outsb(port, buf, nr) ((port) < 1024 ? isa_rom_outsb((port), (buf), (nr)) : isa_outsb((port)… argument
365 #define outsw(port, buf, nr) ((port) < 1024 ? isa_rom_outsw((port), (buf), (nr)) : isa_outsw((port)… argument
377 #define readsb(port, buf, nr) raw_insb((port), (u8 *)(buf), (nr)) argument
378 #define readsw(port, buf, nr) raw_insw((port), (u16 *)(buf), (nr)) argument
379 #define readsl(port, buf, nr) raw_insl((port), (u32 *)(buf), (nr)) argument
380 #define writesb(port, buf, nr) raw_outsb((port), (u8 *)(buf), (nr)) argument
381 #define writesw(port, buf, nr) raw_outsw((port), (u16 *)(buf), (nr)) argument
382 #define writesl(port, buf, nr) raw_outsl((port), (u32 *)(buf), (nr)) argument