tag | line | file | source code |
TTY_BUF_SIZE | 69 | include/linux/tty.h | unsigned char buf[TTY_BUF_SIZE]; |
TTY_BUF_SIZE | 126 | include/linux/tty.h | #define INC(a) ((a) = ((a)+1) & (TTY_BUF_SIZE-1)) |
TTY_BUF_SIZE | 127 | include/linux/tty.h | #define DEC(a) ((a) = ((a)-1) & (TTY_BUF_SIZE-1)) |
TTY_BUF_SIZE | 129 | include/linux/tty.h | #define LEFT(a) (((a)->tail-(a)->head-1)&(TTY_BUF_SIZE-1)) |
TTY_BUF_SIZE | 130 | include/linux/tty.h | #define LAST(a) ((a)->buf[(TTY_BUF_SIZE-1)&((a)->head-1)]) |
TTY_BUF_SIZE | 132 | include/linux/tty.h | #define CHARS(a) (((a)->head-(a)->tail)&(TTY_BUF_SIZE-1)) |
TTY_BUF_SIZE | 225 | include/linux/tty.h | int readq_flags[TTY_BUF_SIZE/32]; |
TTY_BUF_SIZE | 154 | kernel/chr_drv/keyboard.c | if ((new_head=(qp->head+1)&(TTY_BUF_SIZE-1)) != qp->tail) |
TTY_BUF_SIZE | 172 | kernel/chr_drv/keyboard.c | if ((new_head=(qp->head+1)&(TTY_BUF_SIZE-1)) |
TTY_BUF_SIZE | 55 | kernel/chr_drv/serial.c | #define WAKEUP_CHARS (3*TTY_BUF_SIZE/4) |
TTY_BUF_SIZE | 211 | kernel/chr_drv/serial.c | #define VLEFT ((tail-head-1)&(TTY_BUF_SIZE-1)) |
TTY_BUF_SIZE | 233 | kernel/chr_drv/serial.c | head &= TTY_BUF_SIZE-1; |
TTY_BUF_SIZE | 236 | kernel/chr_drv/serial.c | head &= TTY_BUF_SIZE-1; |
TTY_BUF_SIZE | 263 | kernel/chr_drv/serial.c | tail &= TTY_BUF_SIZE-1; |
TTY_BUF_SIZE | 705 | 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 | 497 | kernel/chr_drv/tty_io.c | (TTY_BUF_SIZE-1); |
TTY_BUF_SIZE | 674 | kernel/chr_drv/tty_io.c | if (tty->write_q.proc_list && LEFT(&tty->write_q) > TTY_BUF_SIZE/2) |
TTY_BUF_SIZE | 1378 | kernel/chr_drv/tty_io.c | #define VLEFT ((tail-head-1)&(TTY_BUF_SIZE-1)) |
TTY_BUF_SIZE | 1393 | kernel/chr_drv/tty_io.c | head &= TTY_BUF_SIZE-1; |
TTY_BUF_SIZE | 1439 | kernel/chr_drv/tty_io.c | head &= TTY_BUF_SIZE-1; |