Lines Matching refs:bufbytes
114 u_int bufbytes; in audiobell() local
175 bufbytes = ptrack->usrbuf_blksize * NBLKHW; in audiobell()
176 if (bufbytes < MINBUFSIZE) in audiobell()
177 bufbytes = MINBUFSIZE; in audiobell()
178 else if (bufbytes > MAXBUFSIZE) in audiobell()
179 bufbytes = MAXBUFSIZE; in audiobell()
181 bufbytes = roundup(bufbytes, wave1bytes); in audiobell()
182 bufbytes = uimin(bufbytes, remainbytes); in audiobell()
183 KASSERT(bufbytes != 0); in audiobell()
184 buf = malloc(bufbytes, M_TEMP, M_WAITOK); in audiobell()
190 for (i = 0; i < bufbytes / sizeof(int16_t); i++) { in audiobell()
200 len = uimin(remainbytes, bufbytes); in audiobell()