| tag | line | file | source code |
| TTY_BUF_SIZE | 65 | drivers/char/console.c | #define SEL_BUFFER_SIZE TTY_BUF_SIZE |
| TTY_BUF_SIZE | 60 | drivers/char/serial.c | #define WAKEUP_CHARS (3*TTY_BUF_SIZE/4) |
| TTY_BUF_SIZE | 331 | drivers/char/serial.c | #define VLEFT ((tail-head-1)&(TTY_BUF_SIZE-1)) |
| TTY_BUF_SIZE | 353 | drivers/char/serial.c | head &= TTY_BUF_SIZE-1; |
| TTY_BUF_SIZE | 356 | drivers/char/serial.c | head &= TTY_BUF_SIZE-1; |
| TTY_BUF_SIZE | 391 | drivers/char/serial.c | tail &= TTY_BUF_SIZE-1; |
| TTY_BUF_SIZE | 938 | drivers/char/serial.c | tail &= TTY_BUF_SIZE-1; |
| TTY_BUF_SIZE | 106 | drivers/char/tty_io.c | head = (queue->head + 1) & (TTY_BUF_SIZE-1); |
| TTY_BUF_SIZE | 123 | drivers/char/tty_io.c | queue->tail = (queue->tail + 1) & (TTY_BUF_SIZE-1); |
| TTY_BUF_SIZE | 152 | drivers/char/tty_io.c | tail &= TTY_BUF_SIZE-1; |
| TTY_BUF_SIZE | 510 | drivers/char/tty_io.c | (TTY_BUF_SIZE-1); |
| TTY_BUF_SIZE | 704 | drivers/char/tty_io.c | if (tty->write_q.proc_list && LEFT(&tty->write_q) > TTY_BUF_SIZE/2) |
| TTY_BUF_SIZE | 1505 | drivers/char/tty_io.c | #define VLEFT ((tail-head-1)&(TTY_BUF_SIZE-1)) |
| TTY_BUF_SIZE | 1521 | drivers/char/tty_io.c | head &= TTY_BUF_SIZE-1; |
| TTY_BUF_SIZE | 1569 | drivers/char/tty_io.c | head &= TTY_BUF_SIZE-1; |
| TTY_BUF_SIZE | 69 | include/linux/tty.h | unsigned char buf[TTY_BUF_SIZE]; |
| TTY_BUF_SIZE | 136 | include/linux/tty.h | #define INC(a) ((a) = ((a)+1) & (TTY_BUF_SIZE-1)) |
| TTY_BUF_SIZE | 137 | include/linux/tty.h | #define DEC(a) ((a) = ((a)-1) & (TTY_BUF_SIZE-1)) |
| TTY_BUF_SIZE | 139 | include/linux/tty.h | #define LEFT(a) (((a)->tail-(a)->head-1)&(TTY_BUF_SIZE-1)) |
| TTY_BUF_SIZE | 140 | include/linux/tty.h | #define LAST(a) ((a)->buf[(TTY_BUF_SIZE-1)&((a)->head-1)]) |
| TTY_BUF_SIZE | 142 | include/linux/tty.h | #define CHARS(a) (((a)->head-(a)->tail)&(TTY_BUF_SIZE-1)) |
| TTY_BUF_SIZE | 240 | include/linux/tty.h | int readq_flags[TTY_BUF_SIZE/32]; |