Lines Matching defs:count
31 * @count: number of qdio buffers to free
33 void qdio_free_buffers(struct qdio_buffer **buf, unsigned int count)
37 for (pos = 0; pos < count; pos += QBUFF_PER_PAGE)
45 * @count: number of qdio buffers to allocate
47 int qdio_alloc_buffers(struct qdio_buffer **buf, unsigned int count)
51 for (pos = 0; pos < count; pos += QBUFF_PER_PAGE) {
54 qdio_free_buffers(buf, count);
58 for (pos = 0; pos < count; pos++)
68 * @count: number of qdio buffers that will be zeroed
70 void qdio_reset_buffers(struct qdio_buffer **buf, unsigned int count)
74 for (pos = 0; pos < count; pos++)
79 static void __qdio_free_queues(struct qdio_q **queues, unsigned int count)
84 for (i = 0; i < count; i++) {