taglinefilesource code
queue101drivers/char/psaux.cstatic struct aux_queue *queue;
queue176drivers/char/psaux.cresult = queue->buf[queue->tail];
queue177drivers/char/psaux.cqueue->tail = (queue->tail + 1) & (AUX_BUF_SIZE-1);
queue185drivers/char/psaux.creturn queue->head == queue->tail;
queue197drivers/char/psaux.cint head = queue->head;
queue198drivers/char/psaux.cint maxhead = (queue->tail-1) & (AUX_BUF_SIZE-1);
queue200drivers/char/psaux.cqueue->buf[head] = inb(AUX_INPUT_PORT);
queue205drivers/char/psaux.cqueue->head = head;
queue207drivers/char/psaux.cwake_up_interruptible(&queue->proc_list);
queue218drivers/char/psaux.cint head = queue->head;
queue219drivers/char/psaux.cint maxhead = (queue->tail-1) & (AUX_BUF_SIZE-1);
queue221drivers/char/psaux.cqueue->buf[head] = inb(qp_data);
queue226drivers/char/psaux.cqueue->head = head;
queue228drivers/char/psaux.cwake_up_interruptible(&queue->proc_list);
queue274drivers/char/psaux.cqueue->head = queue->tail = 0;          /* Flush input queue */
queue316drivers/char/psaux.cqueue->head = queue->tail = 0;          /* Flush input queue */
queue385drivers/char/psaux.cadd_wait_queue(&queue->proc_list, &wait);
queue393drivers/char/psaux.cremove_wait_queue(&queue->proc_list, &wait);      
queue417drivers/char/psaux.cselect_wait(&queue->proc_list, wait);
queue463drivers/char/psaux.cqueue = (struct aux_queue *) kmem_start;
queue465drivers/char/psaux.cqueue->head = queue->tail = 0;
queue466drivers/char/psaux.cqueue->proc_list = NULL;
queue313drivers/char/serial.cstruct tty_queue * queue;
queue322drivers/char/serial.cqueue = &info->tty->read_q;
queue323drivers/char/serial.chead = queue->head;
queue324drivers/char/serial.ctail = queue->tail;
queue336drivers/char/serial.cqueue->buf[head++]= TTY_BREAK;
queue339drivers/char/serial.cqueue->buf[head++]= TTY_PARITY;
queue341drivers/char/serial.cqueue->buf[head++]= TTY_FRAME;
queue343drivers/char/serial.cqueue->buf[head++]= TTY_OVERRUN;
queue346drivers/char/serial.cqueue->buf[head++] = ch;
queue349drivers/char/serial.cqueue->head = head;
queue361drivers/char/serial.cstruct tty_queue * queue;
queue364drivers/char/serial.cqueue = &info->tty->write_q;
queue365drivers/char/serial.chead = queue->head;
queue366drivers/char/serial.ctail = queue->tail;
queue381drivers/char/serial.cserial_outp(info, UART_TX, queue->buf[tail++]);
queue384drivers/char/serial.cqueue->tail = tail;
queue980drivers/char/serial.cstruct tty_queue * queue;
queue991drivers/char/serial.cqueue = &info->tty->write_q;
queue992drivers/char/serial.chead = queue->head;
queue993drivers/char/serial.ctail = queue->tail;
queue998drivers/char/serial.cserial_outp(info, UART_TX, queue->buf[tail++]);
queue1001drivers/char/serial.cqueue->tail = tail;
queue104drivers/char/tty_io.cvoid put_tty_queue(unsigned char c, struct tty_queue * queue)
queue111drivers/char/tty_io.chead = (queue->head + 1) & (TTY_BUF_SIZE-1);
queue112drivers/char/tty_io.cif (head != queue->tail) {
queue113drivers/char/tty_io.cqueue->buf[queue->head] = c;
queue114drivers/char/tty_io.cqueue->head = head;
queue119drivers/char/tty_io.cint get_tty_queue(struct tty_queue * queue)
queue126drivers/char/tty_io.cif (queue->tail != queue->head) {
queue127drivers/char/tty_io.cresult = queue->buf[queue->tail];
queue128drivers/char/tty_io.cINC(queue->tail);
queue55drivers/sound/sequencer.cstatic unsigned char *queue = NULL;  /* SEQ_MAX_QUEUE * EV_SZ bytes */
queue294drivers/sound/sequencer.cmemcpy (&queue[qtail * EV_SZ], note, EV_SZ);
queue365drivers/sound/sequencer.cq = &queue[this_one * EV_SZ];
queue1119drivers/sound/sequencer.cPERMANENT_MALLOC (unsigned char *, queue, SEQ_MAX_QUEUE * EV_SZ, mem_start);
queue84fs/ext2/dcache.cstatic struct dir_cache_entry * find_name (int queue, unsigned short dev,
queue90fs/ext2/dcache.cfor (p = queue_head[queue]; p != NULL && (p->dev != dev ||
queue130fs/ext2/dcache.cstatic void add_to_queue (int queue, struct dir_cache_entry * p)
queue133fs/ext2/dcache.cp->queue_next = queue_head[queue];
queue134fs/ext2/dcache.cif (queue_head[queue])
queue135fs/ext2/dcache.cqueue_head[queue]->queue_prev = p;
queue136fs/ext2/dcache.cif (!queue_tail[queue])
queue137fs/ext2/dcache.cqueue_tail[queue] = p;
queue138fs/ext2/dcache.cqueue_head[queue] = p;
queue161fs/ext2/dcache.cstatic void remove_from_queue (int queue, struct dir_cache_entry * p)
queue166fs/ext2/dcache.cqueue_head[queue] = p->queue_next;
queue170fs/ext2/dcache.cqueue_tail[queue] = p->queue_prev;
queue207fs/ext2/dcache.cint queue;
queue219fs/ext2/dcache.cqueue = hash (dev, dir);
queue220fs/ext2/dcache.cif ((p = find_name (queue, dev, dir, our_name, len))) {
queue225fs/ext2/dcache.cif (p != queue_head[queue]) {
queue226fs/ext2/dcache.cremove_from_queue (queue, p);
queue227fs/ext2/dcache.cadd_to_queue (queue, p);
queue257fs/ext2/dcache.cint queue;
queue267fs/ext2/dcache.cqueue = hash (dev, dir);
queue268fs/ext2/dcache.cif ((p = find_name (queue, dev, dir, name, len))) {
queue275fs/ext2/dcache.cif (p != queue_head[queue]) {
queue276fs/ext2/dcache.cremove_from_queue (queue, p);
queue277fs/ext2/dcache.cadd_to_queue (queue, p);
queue301fs/ext2/dcache.cadd_to_queue (queue, p);
queue317fs/ext2/dcache.cint queue;
queue326fs/ext2/dcache.cqueue = hash (dev, dir);
queue327fs/ext2/dcache.cif ((p = find_name (queue, dev, dir, name, len))) {
queue329fs/ext2/dcache.cremove_from_queue (queue, p);
queue145include/linux/tty.hextern void put_tty_queue(unsigned char c, struct tty_queue * queue);
queue146include/linux/tty.hextern int get_tty_queue(struct tty_queue * queue);
queue561mm/swap.cdo { struct mem_list * queue = free_area_list+order; \
queue563mm/swap.cdo { struct mem_list *next = queue->next; \
queue564mm/swap.cif (queue != next) { \
queue565mm/swap.cqueue->next = next->next; \
queue566mm/swap.cnext->next->prev = queue; \
queue572mm/swap.c} new_order++; queue++; \