Lines Matching refs:count
208 int count) in memcpy_fromio() argument
210 memcpy(dst, (void *) src, count); in memcpy_fromio()
214 int count) in memcpy_toio() argument
216 memcpy((void *) dst, src, count); in memcpy_toio()
270 static inline void insb(unsigned long port, void *buffer, int count) in insb() argument
272 if (count) { in insb()
277 } while (--count); in insb()
281 static inline void insw(unsigned long port, void *buffer, int count) in insw() argument
283 if (count) { in insw()
288 } while (--count); in insw()
292 static inline void insl(unsigned long port, void *buffer, int count) in insl() argument
294 if (count) { in insl()
299 } while (--count); in insl()
303 static inline void outsb(unsigned long port, const void *buffer, int count) in outsb() argument
305 if (count) { in outsb()
309 } while (--count); in outsb()
313 static inline void outsw(unsigned long port, const void *buffer, int count) in outsw() argument
315 if (count) { in outsw()
319 } while (--count); in outsw()
323 static inline void outsl(unsigned long port, const void *buffer, int count) in outsl() argument
325 if (count) { in outsl()
329 } while (--count); in outsl()