Lines Matching refs:from
348 void outsb(unsigned int port, const void *from, int len) in outsb() argument
360 __raw_writesb((void __iomem *)ISAIO_BASE + off, from, len); in outsb()
363 void insb(unsigned int port, void *from, int len) in insb() argument
375 __raw_readsb((void __iomem *)ISAIO_BASE + off, from, len); in insb()
381 void outsw(unsigned int port, const void *from, int len) in outsw() argument
393 __raw_writesw((void __iomem *)ISAIO_BASE + off, from, len); in outsw()
396 void insw(unsigned int port, void *from, int len) in insw() argument
408 __raw_readsw((void __iomem *)ISAIO_BASE + off, from, len); in insw()
418 void outsl(unsigned int port, const void *from, int len) in outsl() argument
425 __raw_writesw((void __iomem *)ISAIO_BASE + off, from, len << 1); in outsl()
428 void insl(unsigned int port, void *from, int len) in insl() argument
435 __raw_readsw((void __iomem *)ISAIO_BASE + off, from, len << 1); in insl()