Searched refs:tx_put (Results 1 - 4 of 4) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/char/
H A Dcyclades.c1031 __u32 tx_put, tx_get, tx_bufsize, tx_bufaddr; local
1037 tx_put = readl(&buf_ctrl->tx_put);
1040 if (tx_put >= tx_get)
1041 char_count = tx_get - tx_put - 1 + tx_bufsize;
1043 char_count = tx_get - tx_put - 1;
1053 cy_writeb(cinfo->base_addr + tx_bufaddr + tx_put, data);
1054 tx_put = (tx_put + 1) & (tx_bufsize - 1);
1061 tx_bufsize - tx_put, min_
1957 __u32 tx_put, tx_get, tx_bufsize; local
[all...]
H A Dsynclinkmp.c170 int tx_put; member in struct:_synclinkmp_info
954 info->max_frame_size - info->tx_put));
958 memcpy(info->tx_buf + info->tx_put, buf, c);
961 info->tx_put += c;
962 if (info->tx_put >= info->max_frame_size)
963 info->tx_put -= info->max_frame_size;
1019 info->tx_buf[info->tx_put++] = ch;
1020 if (info->tx_put >= info->max_frame_size)
1021 info->tx_put -= info->max_frame_size;
1200 info->tx_count = info->tx_put
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/char/pcmcia/
H A Dsynclink_cs.c155 int tx_put; member in struct:_mgslpc_info
988 info->tx_count = info->tx_put = info->tx_get = 0;
1393 info->tx_count = info->tx_put = info->tx_get = 0;
1530 info->tx_buf[info->tx_put++] = ch;
1531 info->tx_put &= TXBUFSIZE-1;
1608 TXBUFSIZE - info->tx_put));
1612 memcpy(info->tx_buf + info->tx_put, buf, c);
1615 info->tx_put = (info->tx_put + c) & (TXBUFSIZE-1);
1706 info->tx_count = info->tx_put
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/include/linux/
H A Dcyclades.h427 __u32 tx_put; /* head index tx buf */ member in struct:BUF_CTRL

Completed in 62 milliseconds