Home
last modified time | relevance | path

Searched refs:WBUF_SIZE (Results 1 – 1 of 1) sorted by relevance

/freebsd/sys/dev/xen/console/
H A Dxen_console.c103 #define WBUF_SIZE 4096 macro
104 #define WBUF_MASK(_i) ((_i)&(WBUF_SIZE-1))
105 char wbuf[WBUF_SIZE];
442 return (used >= WBUF_SIZE); in xencons_tx_full()
454 if (sz > (WBUF_SIZE - WBUF_MASK(cons->wc))) in xencons_tx_flush()
455 sz = WBUF_SIZE - WBUF_MASK(cons->wc); in xencons_tx_flush()
483 if ((cons->wp - cons->wc) < WBUF_SIZE) in xencons_putc()