tag | line | file | source code |
TTY_BUF_SIZE | 69 | include/linux/tty.h | unsigned char buf[TTY_BUF_SIZE]; |
TTY_BUF_SIZE | 122 | include/linux/tty.h | #define INC(a) ((a) = ((a)+1) & (TTY_BUF_SIZE-1)) |
TTY_BUF_SIZE | 123 | include/linux/tty.h | #define DEC(a) ((a) = ((a)-1) & (TTY_BUF_SIZE-1)) |
TTY_BUF_SIZE | 125 | include/linux/tty.h | #define LEFT(a) (((a)->tail-(a)->head-1)&(TTY_BUF_SIZE-1)) |
TTY_BUF_SIZE | 126 | include/linux/tty.h | #define LAST(a) ((a)->buf[(TTY_BUF_SIZE-1)&((a)->head-1)]) |
TTY_BUF_SIZE | 128 | include/linux/tty.h | #define CHARS(a) (((a)->head-(a)->tail)&(TTY_BUF_SIZE-1)) |
TTY_BUF_SIZE | 163 | kernel/chr_drv/keyboard.c | if ((new_head=(qp->head+1)&(TTY_BUF_SIZE-1)) != qp->tail) |
TTY_BUF_SIZE | 181 | kernel/chr_drv/keyboard.c | if ((new_head=(qp->head+1)&(TTY_BUF_SIZE-1)) |
TTY_BUF_SIZE | 54 | kernel/chr_drv/serial.c | #define WAKEUP_CHARS (3*TTY_BUF_SIZE/4) |
TTY_BUF_SIZE | 208 | kernel/chr_drv/serial.c | #define VLEFT ((tail-head-1)&(TTY_BUF_SIZE-1)) |
TTY_BUF_SIZE | 254 | kernel/chr_drv/serial.c | head &= TTY_BUF_SIZE-1; |
TTY_BUF_SIZE | 256 | kernel/chr_drv/serial.c | head &= TTY_BUF_SIZE-1; |
TTY_BUF_SIZE | 261 | kernel/chr_drv/serial.c | head &= TTY_BUF_SIZE-1; |
TTY_BUF_SIZE | 264 | kernel/chr_drv/serial.c | head &= TTY_BUF_SIZE-1; |
TTY_BUF_SIZE | 290 | kernel/chr_drv/serial.c | tail &= TTY_BUF_SIZE-1; |
TTY_BUF_SIZE | 436 | kernel/chr_drv/serial.c | tail &= TTY_BUF_SIZE-1; |
TTY_BUF_SIZE | 98 | kernel/chr_drv/tty_io.c | head = (queue->head + 1) & (TTY_BUF_SIZE-1); |
TTY_BUF_SIZE | 114 | kernel/chr_drv/tty_io.c | queue->tail = (queue->tail + 1) & (TTY_BUF_SIZE-1); |
TTY_BUF_SIZE | 138 | kernel/chr_drv/tty_io.c | tail &= TTY_BUF_SIZE-1; |
TTY_BUF_SIZE | 564 | kernel/chr_drv/tty_io.c | if (tty->write_q.proc_list && LEFT(&tty->write_q) > TTY_BUF_SIZE/2) |
TTY_BUF_SIZE | 1255 | kernel/chr_drv/tty_io.c | #define VLEFT ((tail-head-1)&(TTY_BUF_SIZE-1)) |
TTY_BUF_SIZE | 1270 | kernel/chr_drv/tty_io.c | head &= TTY_BUF_SIZE-1; |
TTY_BUF_SIZE | 1316 | kernel/chr_drv/tty_io.c | head &= TTY_BUF_SIZE-1; |