tx_put            151 drivers/char/pcmcia/synclink_cs.c 	int            tx_put;
tx_put            972 drivers/char/pcmcia/synclink_cs.c 	info->tx_count = info->tx_put = info->tx_get = 0;
tx_put           1375 drivers/char/pcmcia/synclink_cs.c 	info->tx_count = info->tx_put = info->tx_get = 0;
tx_put           1505 drivers/char/pcmcia/synclink_cs.c 			info->tx_buf[info->tx_put++] = ch;
tx_put           1506 drivers/char/pcmcia/synclink_cs.c 			info->tx_put &= TXBUFSIZE-1;
tx_put           1583 drivers/char/pcmcia/synclink_cs.c 			    TXBUFSIZE - info->tx_put));
tx_put           1587 drivers/char/pcmcia/synclink_cs.c 		memcpy(info->tx_buf + info->tx_put, buf, c);
tx_put           1590 drivers/char/pcmcia/synclink_cs.c 		info->tx_put = (info->tx_put + c) & (TXBUFSIZE-1);
tx_put           1681 drivers/char/pcmcia/synclink_cs.c 	info->tx_count = info->tx_put = info->tx_get = 0;
tx_put           1919 drivers/char/pcmcia/synclink_cs.c 		info->tx_count = info->tx_put = info->tx_get = 0;
tx_put           3849 drivers/char/pcmcia/synclink_cs.c 	info->tx_count = info->tx_put = info->tx_get = 0;
tx_put           3941 drivers/char/pcmcia/synclink_cs.c 	info->tx_put = info->tx_count = skb->len;
tx_put           1015 drivers/tty/cyclades.c 	__u32 tx_put, tx_get, tx_bufsize, tx_bufaddr;
tx_put           1021 drivers/tty/cyclades.c 	tx_put = readl(&buf_ctrl->tx_put);
tx_put           1024 drivers/tty/cyclades.c 	if (tx_put >= tx_get)
tx_put           1025 drivers/tty/cyclades.c 		char_count = tx_get - tx_put - 1 + tx_bufsize;
tx_put           1027 drivers/tty/cyclades.c 		char_count = tx_get - tx_put - 1;
tx_put           1039 drivers/tty/cyclades.c 		cy_writeb(cinfo->base_addr + tx_bufaddr + tx_put, data);
tx_put           1040 drivers/tty/cyclades.c 		tx_put = (tx_put + 1) & (tx_bufsize - 1);
tx_put           1047 drivers/tty/cyclades.c 			tx_bufsize - tx_put, min_t(unsigned int,
tx_put           1052 drivers/tty/cyclades.c 		memcpy_toio((char *)(cinfo->base_addr + tx_bufaddr + tx_put),
tx_put           1056 drivers/tty/cyclades.c 		tx_put = (tx_put + small_count) & (tx_bufsize - 1);
tx_put           1070 drivers/tty/cyclades.c 		cy_writeb(cinfo->base_addr + tx_bufaddr + tx_put, data);
tx_put           1071 drivers/tty/cyclades.c 		tx_put = (tx_put + 1) & (tx_bufsize - 1);
tx_put           1080 drivers/tty/cyclades.c 	cy_writel(&buf_ctrl->tx_put, tx_put);
tx_put           1908 drivers/tty/cyclades.c 		__u32 tx_put, tx_get, tx_bufsize;
tx_put           1911 drivers/tty/cyclades.c 		tx_put = readl(&buf_ctrl->tx_put);
tx_put           1913 drivers/tty/cyclades.c 		if (tx_put >= tx_get)
tx_put           1914 drivers/tty/cyclades.c 			char_count = tx_put - tx_get;
tx_put           1916 drivers/tty/cyclades.c 			char_count = tx_put - tx_get + tx_bufsize;
tx_put            168 drivers/tty/synclinkmp.c 	int			tx_put;
tx_put            946 drivers/tty/synclinkmp.c 			    info->max_frame_size - info->tx_put));
tx_put            950 drivers/tty/synclinkmp.c 		memcpy(info->tx_buf + info->tx_put, buf, c);
tx_put            953 drivers/tty/synclinkmp.c 		info->tx_put += c;
tx_put            954 drivers/tty/synclinkmp.c 		if (info->tx_put >= info->max_frame_size)
tx_put            955 drivers/tty/synclinkmp.c 			info->tx_put -= info->max_frame_size;
tx_put           1011 drivers/tty/synclinkmp.c 			info->tx_buf[info->tx_put++] = ch;
tx_put           1012 drivers/tty/synclinkmp.c 			if (info->tx_put >= info->max_frame_size)
tx_put           1013 drivers/tty/synclinkmp.c 				info->tx_put -= info->max_frame_size;
tx_put           1192 drivers/tty/synclinkmp.c 	info->tx_count = info->tx_put = info->tx_get = 0;
tx_put           2233 drivers/tty/synclinkmp.c 		info->tx_count = info->tx_put = info->tx_get = 0;
tx_put           2705 drivers/tty/synclinkmp.c 	info->tx_count = info->tx_put = info->tx_get = 0;
tx_put           5469 drivers/tty/synclinkmp.c 	info->tx_count = info->tx_put = info->tx_get = 0;
tx_put            428 include/uapi/linux/cyclades.h 	__u32	tx_put;		/* head index tx buf */