Lines Matching refs:tmpbuf
134 if (b->tmpbuf) in sndbuf_free()
135 kfree(b->tmpbuf, M_DEVBUF); in sndbuf_free()
150 b->tmpbuf = NULL; in sndbuf_free()
164 u_int8_t *tmpbuf; in sndbuf_resize() local
186 tmpbuf = kmalloc(allocsize, M_DEVBUF, M_WAITOK); in sndbuf_resize()
190 __func__, b, b->tmpbuf, tmpbuf, in sndbuf_resize()
192 if (b->tmpbuf != NULL) in sndbuf_resize()
193 kfree(b->tmpbuf, M_DEVBUF); in sndbuf_resize()
194 b->tmpbuf = tmpbuf; in sndbuf_resize()
214 u_int8_t *buf, *tmpbuf, *shadbuf; in sndbuf_remalloc() local
226 tmpbuf = kmalloc(allocsize, M_DEVBUF, M_WAITOK); in sndbuf_remalloc()
232 if (b->tmpbuf != NULL) in sndbuf_remalloc()
233 kfree(b->tmpbuf, M_DEVBUF); in sndbuf_remalloc()
234 b->tmpbuf = tmpbuf; in sndbuf_remalloc()
708 cnt = FEEDER_FEED(feeder, channel, to->tmpbuf, in sndbuf_feed()
712 sndbuf_acquire(to, to->tmpbuf, cnt); in sndbuf_feed()