Lines Matching defs:count
214 hdr->count = cpu_to_le16(hdr->count);
224 static void mcf8390_block_input(struct net_device *dev, int count,
239 ei_outb(count & 0xff, addr + NE_EN0_RCNTLO);
240 ei_outb(count >> 8, addr + NE_EN0_RCNTHI);
245 ei_insw(addr + NE_DATAPORT, buf, count >> 1);
246 if (count & 1)
247 buf[count - 1] = ei_inb(addr + NE_DATAPORT);
253 static void mcf8390_block_output(struct net_device *dev, int count,
262 if (count & 0x1)
263 count++;
277 ei_outb(count & 0xff, addr + NE_EN0_RCNTLO);
278 ei_outb(count >> 8, addr + NE_EN0_RCNTHI);
283 ei_outsw(addr + NE_DATAPORT, buf, count >> 1);
342 {0x00, NE_EN0_RCNTLO}, /* Clear the count regs */