| tag | line | file | source code |
| TTY_BUF_SIZE | 68 | include/linux/tty.h | unsigned char buf[TTY_BUF_SIZE]; |
| TTY_BUF_SIZE | 116 | include/linux/tty.h | #define INC(a) ((a) = ((a)+1) & (TTY_BUF_SIZE-1)) |
| TTY_BUF_SIZE | 117 | include/linux/tty.h | #define DEC(a) ((a) = ((a)-1) & (TTY_BUF_SIZE-1)) |
| TTY_BUF_SIZE | 119 | include/linux/tty.h | #define LEFT(a) (((a)->tail-(a)->head-1)&(TTY_BUF_SIZE-1)) |
| TTY_BUF_SIZE | 120 | include/linux/tty.h | #define LAST(a) ((a)->buf[(TTY_BUF_SIZE-1)&((a)->head-1)]) |
| TTY_BUF_SIZE | 122 | include/linux/tty.h | #define CHARS(a) (((a)->head-(a)->tail)&(TTY_BUF_SIZE-1)) |
| TTY_BUF_SIZE | 123 | kernel/chr_drv/keyboard.c | if ((new_head=(qp->head+1)&(TTY_BUF_SIZE-1)) != qp->tail) |
| TTY_BUF_SIZE | 141 | kernel/chr_drv/keyboard.c | if ((new_head=(qp->head+1)&(TTY_BUF_SIZE-1)) |
| TTY_BUF_SIZE | 64 | kernel/chr_drv/serial.c | #define WAKEUP_CHARS (3*TTY_BUF_SIZE/4) |
| TTY_BUF_SIZE | 210 | kernel/chr_drv/serial.c | #define VLEFT ((tail-head-1)&(TTY_BUF_SIZE-1)) |
| TTY_BUF_SIZE | 248 | kernel/chr_drv/serial.c | head &= TTY_BUF_SIZE-1; |
| TTY_BUF_SIZE | 250 | kernel/chr_drv/serial.c | head &= TTY_BUF_SIZE-1; |
| TTY_BUF_SIZE | 255 | kernel/chr_drv/serial.c | head &= TTY_BUF_SIZE-1; |
| TTY_BUF_SIZE | 258 | kernel/chr_drv/serial.c | head &= TTY_BUF_SIZE-1; |
| TTY_BUF_SIZE | 284 | kernel/chr_drv/serial.c | tail &= TTY_BUF_SIZE-1; |
| TTY_BUF_SIZE | 358 | kernel/chr_drv/serial.c | queue->tail &= TTY_BUF_SIZE-1; |
| TTY_BUF_SIZE | 377 | kernel/chr_drv/serial.c | int maxhead = (queue->tail-1) & (TTY_BUF_SIZE-1); |
| TTY_BUF_SIZE | 385 | kernel/chr_drv/serial.c | head &= TTY_BUF_SIZE-1; |
| TTY_BUF_SIZE | 64 | kernel/chr_drv/tty_io.c | head = (queue->head + 1) & (TTY_BUF_SIZE-1); |
| TTY_BUF_SIZE | 80 | kernel/chr_drv/tty_io.c | queue->tail = (queue->tail + 1) & (TTY_BUF_SIZE-1); |
| TTY_BUF_SIZE | 258 | kernel/chr_drv/tty_io.c | if (tty->write_q.proc_list && LEFT(&tty->write_q) > TTY_BUF_SIZE/2) |