• Home
  • Raw
  • Download

Lines Matching refs:count

125 static inline void insb(unsigned long addr, void *buffer, int count)  in insb()  argument
127 if (count) { in insb()
132 } while (--count); in insb()
136 static inline void insw(unsigned long addr, void *buffer, int count) in insw() argument
138 if (count) { in insw()
143 } while (--count); in insw()
147 static inline void insl(unsigned long addr, void *buffer, int count) in insl() argument
149 if (count) { in insl()
154 } while (--count); in insl()
158 static inline void outsb(unsigned long addr, const void *buffer, int count) in outsb() argument
160 if (count) { in outsb()
164 } while (--count); in outsb()
168 static inline void outsw(unsigned long addr, const void *buffer, int count) in outsw() argument
170 if (count) { in outsw()
174 } while (--count); in outsw()
178 extern void __outsl(unsigned long addr, const void *buffer, int count);
179 static inline void outsl(unsigned long addr, const void *buffer, int count) in outsl() argument
182 return __outsl(addr, buffer, count); in outsl()
184 if (count) { in outsl()
188 } while (--count); in outsl()
205 #define ioread8_rep(p, dst, count) \ argument
206 insb((unsigned long) (p), (dst), (count))
207 #define ioread16_rep(p, dst, count) \ argument
208 insw((unsigned long) (p), (dst), (count))
209 #define ioread32_rep(p, dst, count) \ argument
210 insl((unsigned long) (p), (dst), (count))
212 #define iowrite8_rep(p, src, count) \ argument
213 outsb((unsigned long) (p), (src), (count))
214 #define iowrite16_rep(p, src, count) \ argument
215 outsw((unsigned long) (p), (src), (count))
216 #define iowrite32_rep(p, src, count) \ argument
217 outsl((unsigned long) (p), (src), (count))
219 #define readsb(p, dst, count) \ argument
220 insb((unsigned long) (p), (dst), (count))
221 #define readsw(p, dst, count) \ argument
222 insw((unsigned long) (p), (dst), (count))
223 #define readsl(p, dst, count) \ argument
224 insl((unsigned long) (p), (dst), (count))
226 #define writesb(p, src, count) \ argument
227 outsb((unsigned long) (p), (src), (count))
228 #define writesw(p, src, count) \ argument
229 outsw((unsigned long) (p), (src), (count))
230 #define writesl(p, src, count) \ argument
231 outsl((unsigned long) (p), (src), (count))