Lines Matching refs:count
165 static inline void insb(unsigned long addr, void *buffer, int count) in insb() argument
167 if (count) { in insb()
172 } while (--count); in insb()
178 static inline void insw(unsigned long addr, void *buffer, int count) in insw() argument
180 if (count) { in insw()
185 } while (--count); in insw()
191 static inline void insl(unsigned long addr, void *buffer, int count) in insl() argument
193 if (count) { in insl()
198 } while (--count); in insl()
204 static inline void outsb(unsigned long addr, const void *buffer, int count) in outsb() argument
206 if (count) { in outsb()
210 } while (--count); in outsb()
216 static inline void outsw(unsigned long addr, const void *buffer, int count) in outsw() argument
218 if (count) { in outsw()
222 } while (--count); in outsw()
228 static inline void outsl(unsigned long addr, const void *buffer, int count) in outsl() argument
230 if (count) { in outsl()
234 } while (--count); in outsl()
252 #define ioread8_rep(p, dst, count) \ argument
253 insb((unsigned long) (p), (dst), (count))
254 #define ioread16_rep(p, dst, count) \ argument
255 insw((unsigned long) (p), (dst), (count))
256 #define ioread32_rep(p, dst, count) \ argument
257 insl((unsigned long) (p), (dst), (count))
259 #define iowrite8_rep(p, src, count) \ argument
260 outsb((unsigned long) (p), (src), (count))
261 #define iowrite16_rep(p, src, count) \ argument
262 outsw((unsigned long) (p), (src), (count))
263 #define iowrite32_rep(p, src, count) \ argument
264 outsl((unsigned long) (p), (src), (count))