Lines Matching refs:tmpbuf
137 if (b->tmpbuf) in sndbuf_free()
138 free(b->tmpbuf, M_DEVBUF); in sndbuf_free()
153 b->tmpbuf = NULL; in sndbuf_free()
167 u_int8_t *tmpbuf; in sndbuf_resize() local
189 tmpbuf = malloc(allocsize, M_DEVBUF, M_WAITOK); in sndbuf_resize()
193 __func__, b, b->tmpbuf, tmpbuf, in sndbuf_resize()
195 if (b->tmpbuf != NULL) in sndbuf_resize()
196 free(b->tmpbuf, M_DEVBUF); in sndbuf_resize()
197 b->tmpbuf = tmpbuf; in sndbuf_resize()
217 u_int8_t *buf, *tmpbuf, *shadbuf; in sndbuf_remalloc() local
229 tmpbuf = malloc(allocsize, M_DEVBUF, M_WAITOK); in sndbuf_remalloc()
235 if (b->tmpbuf != NULL) in sndbuf_remalloc()
236 free(b->tmpbuf, M_DEVBUF); in sndbuf_remalloc()
237 b->tmpbuf = tmpbuf; in sndbuf_remalloc()
711 cnt = FEEDER_FEED(feeder, channel, to->tmpbuf, in sndbuf_feed()
715 sndbuf_acquire(to, to->tmpbuf, cnt); in sndbuf_feed()