Lines Matching refs:tmpbuf
132 free(b->tmpbuf, M_DEVBUF); in sndbuf_free()
146 b->tmpbuf = NULL; in sndbuf_free()
160 u_int8_t *tmpbuf; in sndbuf_resize() local
182 tmpbuf = malloc(allocsize, M_DEVBUF, M_WAITOK); in sndbuf_resize()
186 __func__, b, b->tmpbuf, tmpbuf, in sndbuf_resize()
188 free(b->tmpbuf, M_DEVBUF); in sndbuf_resize()
189 b->tmpbuf = tmpbuf; in sndbuf_resize()
209 u_int8_t *buf, *tmpbuf, *shadbuf; in sndbuf_remalloc() local
221 tmpbuf = malloc(allocsize, M_DEVBUF, M_WAITOK); in sndbuf_remalloc()
226 free(b->tmpbuf, M_DEVBUF); in sndbuf_remalloc()
227 b->tmpbuf = tmpbuf; in sndbuf_remalloc()
541 cnt = FEEDER_FEED(feeder, channel, to->tmpbuf, in sndbuf_feed()
545 sndbuf_acquire(to, to->tmpbuf, cnt); in sndbuf_feed()