Home
last modified time | relevance | path

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

/freebsd-14-stable/sys/dev/xen/console/
HDxen_console.c104 #define WBUF_SIZE 4096 macro
105 #define WBUF_MASK(_i) ((_i)&(WBUF_SIZE-1))
106 char wbuf[WBUF_SIZE];
438 return (used >= WBUF_SIZE); in xencons_tx_full()
450 if (sz > (WBUF_SIZE - WBUF_MASK(cons->wc))) in xencons_tx_flush()
451 sz = WBUF_SIZE - WBUF_MASK(cons->wc); in xencons_tx_flush()
479 if ((cons->wp - cons->wc) < WBUF_SIZE) in xencons_putc()