Lines Matching refs:from
349 void outsb(unsigned int port, const void *from, int len)
361 __raw_writesb((void __iomem *)ISAIO_BASE + off, from, len);
364 void insb(unsigned int port, void *from, int len)
376 __raw_readsb((void __iomem *)ISAIO_BASE + off, from, len);
382 void outsw(unsigned int port, const void *from, int len)
394 __raw_writesw((void __iomem *)ISAIO_BASE + off, from, len);
397 void insw(unsigned int port, void *from, int len)
409 __raw_readsw((void __iomem *)ISAIO_BASE + off, from, len);
419 void outsl(unsigned int port, const void *from, int len)
426 __raw_writesw((void __iomem *)ISAIO_BASE + off, from, len << 1);
429 void insl(unsigned int port, void *from, int len)
436 __raw_readsw((void __iomem *)ISAIO_BASE + off, from, len << 1);