Symbol: q_to_b
sys/arch/amiga/dev/ite.c
620
len = q_to_b(rbp, buf, ITEBURST);
sys/arch/amiga/dev/mfc.c
853
cc = q_to_b(&tp->t_outq, sc->outbuf, cc);
sys/arch/amiga/dev/msc.c
1034
cc = q_to_b (&tp->t_outq, msc->tmpbuf, cc);
sys/arch/amiga/dev/ser.c
949
cc = q_to_b(&tp->t_outq, ser_outbuf, cc);
sys/arch/arc/dev/opms.c
304
(void) q_to_b(&sc->sc_q, buffer, length);
sys/arch/arc/dev/pccons.c
818
len = q_to_b(cl, buf, PCBURST);
sys/arch/arm/amlogic/meson_uart.c
428
for (brem = q_to_b(&tp->t_outq, sc->sc_buf, sizeof(sc->sc_buf));
sys/arch/arm/footbridge/footbridge_com.c
408
len = q_to_b(cl, buf, 64);
sys/arch/arm/samsung/exynos_uart.c
518
for (brem = q_to_b(&tp->t_outq, sc->sc_buf, sizeof(sc->sc_buf));
sys/arch/atari/dev/ite.c
610
len = q_to_b(rbp, buf, ITEBURST);
sys/arch/hp300/dev/dcm.c
1206
nch = q_to_b(&tp->t_outq, buf, (head - next) & TX_MASK);
sys/arch/news68k/news68k/romcons.c
259
len = q_to_b(&tp->t_outq, buf, BURSTLEN);
sys/arch/sparc/dev/kd.c
403
while ((len = q_to_b(cl, buf, PUT_WSIZE-1)) > 0) {
sys/arch/sparc64/dev/kd.c
387
while ((len = q_to_b(cl, buf, PUT_WSIZE-1)) > 0) {
sys/arch/sparc64/dev/pcons.c
243
len = q_to_b(cl, buf, OFBURSTLEN);
sys/arch/sun2/dev/kd.c
432
while ((len = q_to_b(cl, buf, PUT_WSIZE-1)) > 0) {
sys/arch/sun2/dev/pcons.c
243
len = q_to_b(cl, buf, OFBURSTLEN);
sys/arch/sun3/dev/kd.c
360
while ((len = q_to_b(cl, buf, PUT_WSIZE-1)) > 0) {
sys/arch/usermode/dev/ttycons.c
328
brem = q_to_b(&t->t_outq, sc->sc_buf, sizeof(sc->sc_buf));
sys/arch/x68k/dev/ite.c
535
len = q_to_b(rbp, buf, ITEBURST);
sys/arch/xen/xen/xencons.c
392
len = q_to_b(cl, buf, XENCONS_BURST);
sys/arch/xen/xen/xencons.c
415
len = q_to_b(cl, __UNVOLATILE(
sys/dev/hid/uhid_common.c
390
(void) q_to_b(&sc->sc_q, buffer, length);
sys/dev/hpc/biconsdev.c
156
n = q_to_b(&tp->t_outq, buf, sizeof(buf));
sys/dev/ofw/ofcons.c
232
len = q_to_b(&tp->t_outq, buf, OFBURSTLEN);
sys/dev/pci/cz.c
1592
error = q_to_b(&tp->t_outq, 0, move);
sys/dev/pci/xmm7360.c
2695
n = q_to_b(&tp->t_outq, qp->user_buf, qp->page_size);
sys/dev/rcons/rcons_kern.c
96
n = q_to_b(&tp->t_outq, buf, sizeof(buf));
sys/dev/usb/ugen.c
895
q_to_b(&sce->q, sc->sc_buffer, n);
sys/dev/usb/uhso.c
1859
hp->hp_wlen = q_to_b(&tp->t_outq, hp->hp_wbuf, hp->hp_wsize);
sys/dev/virtio/viocon.c
461
cnt = q_to_b(&tp->t_outq, buf, BUFSIZE);
sys/kern/tty_pty.c
717
cc = q_to_b(&tp->t_outq, bf, uimin(uio->uio_resid, BUFSIZ));
sys/sys/tty.h
273
int q_to_b(struct clist *, u_char *, int);