Lines Matching defs:count
97 * Returns count of how many buffers are not in use.
177 const char *buf, size_t count)
236 * count: size of buf in bytes
240 static int s10_send_buf(struct fpga_manager *mgr, const char *buf, size_t count)
258 xfer_sz = count < SVC_BUF_SIZE ? count : SVC_BUF_SIZE;
279 size_t count)
291 while (count > 0 || s10_free_buffer_count(mgr) != NUM_SVC_BUFS) {
294 if (count > 0) {
295 sent = s10_send_buf(mgr, buf, count);
299 count -= sent;