Lines Matching refs:count
146 static inline void insb(unsigned long addr, void *buffer, int count) in insb() argument
148 if (count) { in insb()
153 } while (--count); in insb()
159 static inline void insw(unsigned long addr, void *buffer, int count) in insw() argument
161 if (count) { in insw()
166 } while (--count); in insw()
172 static inline void insl(unsigned long addr, void *buffer, int count) in insl() argument
174 if (count) { in insl()
179 } while (--count); in insl()
185 static inline void outsb(unsigned long addr, const void *buffer, int count) in outsb() argument
187 if (count) { in outsb()
191 } while (--count); in outsb()
197 static inline void outsw(unsigned long addr, const void *buffer, int count) in outsw() argument
199 if (count) { in outsw()
203 } while (--count); in outsw()
209 static inline void outsl(unsigned long addr, const void *buffer, int count) in outsl() argument
211 if (count) { in outsl()
215 } while (--count); in outsl()
263 #define ioread8_rep(p, dst, count) \ argument
264 insb((unsigned long) (p), (dst), (count))
265 #define ioread16_rep(p, dst, count) \ argument
266 insw((unsigned long) (p), (dst), (count))
267 #define ioread32_rep(p, dst, count) \ argument
268 insl((unsigned long) (p), (dst), (count))
270 #define iowrite8_rep(p, src, count) \ argument
271 outsb((unsigned long) (p), (src), (count))
272 #define iowrite16_rep(p, src, count) \ argument
273 outsw((unsigned long) (p), (src), (count))
274 #define iowrite32_rep(p, src, count) \ argument
275 outsl((unsigned long) (p), (src), (count))