Lines Matching defs:nr

313 #define isa_insb(port, buf, nr) raw_insb(isa_itb(port), (u8 *)(buf), (nr))  argument
314 #define isa_outsb(port, buf, nr) raw_outsb(isa_itb(port), (u8 *)(buf), (nr)) argument
316 #define isa_insw(port, buf, nr) \ argument
320 #define isa_outsw(port, buf, nr) \ argument
324 #define isa_insl(port, buf, nr) \ argument
328 #define isa_outsl(port, buf, nr) \ argument
339 #define isa_rom_insb(port, buf, nr) raw_rom_insb(isa_itb(port), (u8 *)(buf), (nr)) argument
341 #define isa_rom_insw(port, buf, nr) \ argument
345 #define isa_rom_outsb(port, buf, nr) raw_rom_outsb(isa_itb(port), (u8 *)(buf), (nr)) argument
347 #define isa_rom_outsw(port, buf, nr) \ argument
401 #define insb(port, buf, nr) ((port) < 1024 ? isa_rom_insb((port), (buf), (nr)) : isa_insb((port), (… argument
402 #define insw(port, buf, nr) ((port) < 1024 ? isa_rom_insw((port), (buf), (nr)) : isa_insw((port), (… argument
404 #define outsb(port, buf, nr) ((port) < 1024 ? isa_rom_outsb((port), (buf), (nr)) : isa_outsb((port)… argument
405 #define outsw(port, buf, nr) ((port) < 1024 ? isa_rom_outsw((port), (buf), (nr)) : isa_outsw((port)… argument
431 #define insb(port,buf,nr) ((void)0) argument
432 #define outsb(port,buf,nr) ((void)0) argument
433 #define insw(port,buf,nr) ((void)0) argument
434 #define outsw(port,buf,nr) ((void)0) argument
435 #define insl(port,buf,nr) ((void)0) argument
436 #define outsl(port,buf,nr) ((void)0) argument
451 #define readsb(port, buf, nr) raw_insb((port), (u8 *)(buf), (nr)) argument
452 #define readsw(port, buf, nr) raw_insw((port), (u16 *)(buf), (nr)) argument
453 #define readsl(port, buf, nr) raw_insl((port), (u32 *)(buf), (nr)) argument
454 #define writesb(port, buf, nr) raw_outsb((port), (u8 *)(buf), (nr)) argument
455 #define writesw(port, buf, nr) raw_outsw((port), (u16 *)(buf), (nr)) argument
456 #define writesl(port, buf, nr) raw_outsl((port), (u32 *)(buf), (nr)) argument
513 static inline void __iomem *ioport_map(unsigned long port, unsigned int nr) in ioport_map()