Lines Matching refs:to_copy
193 int fifo_space, to_copy;
231 to_copy = FFMIN(4096, fifo_space);
232 ret = ring_write(ring, h, to_copy);
349 int fifo_size, to_copy;
355 to_copy = FFMIN(to_read, fifo_size);
356 if (to_copy > 0) {
357 ring_read(ring, dest, to_copy);
359 dest = (uint8_t *)dest + to_copy;
360 c->logical_pos += to_copy;
361 to_read -= to_copy;