Lines Matching refs:off
350 u32 off; in outsb() local
353 off = port << 2; in outsb()
355 off = (port & ~1) << 1; in outsb()
360 __raw_writesb((void __iomem *)ISAIO_BASE + off, from, len); in outsb()
365 u32 off; in insb() local
368 off = port << 2; in insb()
370 off = (port & ~1) << 1; in insb()
375 __raw_readsb((void __iomem *)ISAIO_BASE + off, from, len); in insb()
383 u32 off; in outsw() local
386 off = port << 2; in outsw()
388 off = (port & ~1) << 1; in outsw()
393 __raw_writesw((void __iomem *)ISAIO_BASE + off, from, len); in outsw()
398 u32 off; in insw() local
401 off = port << 2; in insw()
403 off = (port & ~1) << 1; in insw()
408 __raw_readsw((void __iomem *)ISAIO_BASE + off, from, len); in insw()
420 u32 off = port << 1; in outsl() local
425 __raw_writesw((void __iomem *)ISAIO_BASE + off, from, len << 1); in outsl()
430 u32 off = port << 1; in insl() local
435 __raw_readsw((void __iomem *)ISAIO_BASE + off, from, len << 1); in insl()