Lines Matching defs:count
19 void insb (unsigned long port, void *dst, unsigned long count)
26 if (!count)
28 count--;
33 while (count >= 4) {
35 count -= 4;
44 while (count) {
45 --count;
59 void insw (unsigned long port, void *dst, unsigned long count)
66 if (!count)
72 while (count>=2) {
74 count -= 2;
80 if (count) {
88 count--;
89 while (count>=2) {
91 count -= 2;
97 if (count) {
106 --count;
111 while (count--)
131 void insl (unsigned long port, void *dst, unsigned long count)
138 if (!count)
144 while (count--)
152 --count;
158 while (count--)
168 --count;
175 while (count--)
185 --count;
190 while (count--)
211 void outsb(unsigned long port, const void * src, unsigned long count)
216 while (count) {
217 count--;
229 void outsw (unsigned long port, const void *src, unsigned long count)
236 if (!count)
242 while (count>=2) {
243 count -= 2;
249 if (count) {
258 count--;
260 while (count>=2) {
261 count -= 2;
267 if (count) {
278 count--;
279 while (count)
281 count--;
301 void outsl (unsigned long port, const void *src, unsigned long count)
308 if (!count)
314 while (count--)
322 --count;
327 while (count--)
338 --count;
345 while (count--)
356 --count;
361 while (count--)