Lines Matching defs:tail
356 u16 tail;
364 /* cache head and tail of queue */
366 tail = ch->ch_r_tail & RQUEUEMASK;
371 qleft = tail - head - 1;
412 tail = (tail + 1) & RQUEUEMASK;
413 ch->ch_r_tail = tail;
447 u16 tail;
472 /* cache tail of queue */
473 tail = circ->tail & (UART_XMIT_SIZE - 1);
480 writeb(circ->buf[tail], &ch->ch_cls_uart->txrx);
481 tail = (tail + 1) & (UART_XMIT_SIZE - 1);
487 /* Update the final tail */
488 circ->tail = tail & (UART_XMIT_SIZE - 1);