Lines Matching refs:count
27 void _insb(const volatile u8 __iomem *port, void *buf, long count) in _insb() argument
32 if (unlikely(count <= 0)) in _insb()
40 } while (--count != 0); in _insb()
45 void _outsb(volatile u8 __iomem *port, const void *buf, long count) in _outsb() argument
49 if (unlikely(count <= 0)) in _outsb()
55 } while (--count != 0); in _outsb()
60 void _insw(const volatile u16 __iomem *port, void *buf, long count) in _insw() argument
65 if (unlikely(count <= 0)) in _insw()
73 } while (--count != 0); in _insw()
78 void _outsw(volatile u16 __iomem *port, const void *buf, long count) in _outsw() argument
82 if (unlikely(count <= 0)) in _outsw()
88 } while (--count != 0); in _outsw()
93 void _insl(const volatile u32 __iomem *port, void *buf, long count) in _insl() argument
98 if (unlikely(count <= 0)) in _insl()
106 } while (--count != 0); in _insl()
111 void _outsl(volatile u32 __iomem *port, const void *buf, long count) in _outsl() argument
115 if (unlikely(count <= 0)) in _outsl()
121 } while (--count != 0); in _outsl()