Lines Matching refs:tmpbuf
135 if (b->tmpbuf) in sndbuf_free()
136 free(b->tmpbuf, M_DEVBUF); in sndbuf_free()
152 b->tmpbuf = NULL; in sndbuf_free()
166 u_int8_t *tmpbuf; in sndbuf_resize() local
188 tmpbuf = malloc(allocsize, M_DEVBUF, M_WAITOK); in sndbuf_resize()
192 __func__, b, b->tmpbuf, tmpbuf, in sndbuf_resize()
194 if (b->tmpbuf != NULL) in sndbuf_resize()
195 free(b->tmpbuf, M_DEVBUF); in sndbuf_resize()
196 b->tmpbuf = tmpbuf; in sndbuf_resize()
216 u_int8_t *buf, *tmpbuf, *shadbuf; in sndbuf_remalloc() local
228 tmpbuf = malloc(allocsize, M_DEVBUF, M_WAITOK); in sndbuf_remalloc()
234 if (b->tmpbuf != NULL) in sndbuf_remalloc()
235 free(b->tmpbuf, M_DEVBUF); in sndbuf_remalloc()
236 b->tmpbuf = tmpbuf; in sndbuf_remalloc()
710 cnt = FEEDER_FEED(feeder, channel, to->tmpbuf, in sndbuf_feed()
714 sndbuf_acquire(to, to->tmpbuf, cnt); in sndbuf_feed()