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

/linux-master/drivers/pcmcia/
H A Dpcmcia_cis.c198 cistpl_io_t *io = (cfg->io.nwin) ? &cfg->io : &dflt->io;
203 if (io->nwin == 0)
209 if (io->nwin > 1) {
226 cistpl_mem_t *mem = (cfg->mem.nwin) ? &cfg->mem : &dflt->mem;
229 if (mem->nwin == 0)
H A Dcistpl.c987 io->nwin = 1;
995 io->nwin = (*p & 0x0f) + 1;
1004 for (i = 0; i < io->nwin; i++) {
1030 mem->nwin = (*p & 0x07) + 1;
1037 for (i = 0; i < mem->nwin; i++) {
1146 entry->io.nwin = 0;
1158 entry->mem.nwin = 0;
1161 entry->mem.nwin = 1;
1170 entry->mem.nwin = 1;
/linux-master/include/pcmcia/
H A Dcistpl.h422 u_char nwin; member in struct:cistpl_io_t
438 u_char nwin; member in struct:cistpl_mem_t
/linux-master/net/ipv4/
H A Dtcp_input.c3561 const u32 nwin)
3565 (ack_seq == tp->snd_wl1 && (nwin > tp->snd_wnd || !nwin));
3630 u32 nwin = ntohs(tcp_hdr(skb)->window); local
3633 nwin <<= tp->rx_opt.snd_wscale;
3635 if (tcp_may_update_window(tp, ack, ack_seq, nwin)) {
3639 if (tp->snd_wnd != nwin) {
3640 tp->snd_wnd = nwin;
3651 if (nwin > tp->max_window) {
3652 tp->max_window = nwin;
3559 tcp_may_update_window(const struct tcp_sock *tp, const u32 ack, const u32 ack_seq, const u32 nwin) argument
[all...]

Completed in 291 milliseconds