Lines Matching refs:buffers
48 /* Pointers to all buffers */
49 struct pvr2_buffer **buffers;
50 /* Array size of buffers */
52 /* Total buffers actually in circulation */
54 /* Designed number of buffers to be in circulation */
286 /* Allocate buffers pointer array in multiples of 32 entries */
305 memcpy(nb, sp->buffers,
307 kfree(sp->buffers);
309 sp->buffers = nb;
321 sp->buffers[sp->buffer_total_count] = bp;
328 bp = sp->buffers[sp->buffer_total_count - 1];
330 sp->buffers[sp->buffer_total_count - 1] = NULL;
338 nb = kmemdup(sp->buffers, scnt * sizeof(*nb),
342 kfree(sp->buffers);
343 sp->buffers = nb;
367 bp = sp->buffers[sp->buffer_total_count - (cnt + 1)];
565 return sp->buffers[id];