Lines Matching refs:tail
664 unsigned tail, head, n; in gigaset_tty_receive() local
676 tail = inbuf->tail; in gigaset_tty_receive()
679 head, tail, count); in gigaset_tty_receive()
681 if (head <= tail) { in gigaset_tty_receive()
683 n = min_t(unsigned, count, RBUFSIZE - tail); in gigaset_tty_receive()
684 memcpy(inbuf->data + tail, buf, n); in gigaset_tty_receive()
685 tail = (tail + n) % RBUFSIZE; in gigaset_tty_receive()
692 n = head - tail - 1; in gigaset_tty_receive()
699 memcpy(inbuf->data + tail, buf, count); in gigaset_tty_receive()
700 tail += count; in gigaset_tty_receive()
703 gig_dbg(DEBUG_INTR, "setting tail to %u", tail); in gigaset_tty_receive()
704 inbuf->tail = tail; in gigaset_tty_receive()