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

/freebsd-10.0-release/sys/netinet/cc/
H A Dcc_cubic.h94 theoretical_cubic_cwnd(int ticks_since_cong, unsigned long wmax, uint32_t smss) argument
99 wmax_pkts = wmax / (double)smss;
107 theoretical_reno_cwnd(int ticks_since_cong, int rtt_ticks, unsigned long wmax, argument
111 return ((wmax * 0.5) + ((ticks_since_cong / (float)rtt_ticks) * smss));
115 theoretical_tf_cwnd(int ticks_since_cong, int rtt_ticks, unsigned long wmax, argument
119 return ((wmax * 0.8) + ((3 * 0.2) / (2 - 0.2) *
139 /* (wmax * beta)/C with CUBIC_SHIFT worth of precision. */
167 cubic_cwnd(int ticks_since_cong, unsigned long wmax, uint32_t smss, int64_t K) argument
180 * C(t - K)^3 + wmax
185 cwnd = ((cwnd * CUBIC_C_FACTOR * smss) >> CUBIC_SHIFT_4) + wmax;
199 reno_cwnd(int ticks_since_cong, int rtt_ticks, unsigned long wmax, uint32_t smss) argument
220 tf_cwnd(int ticks_since_cong, int rtt_ticks, unsigned long wmax, uint32_t smss) argument
[all...]
/freebsd-10.0-release/lib/libedit/
H A Dtokenizer.c71 char *wptr, *wmax; /* Space and limit on the word buffer */ member in struct:tokenizer
130 tok->wmax = tok->wspace + WINCR;
389 if (tok->wptr >= tok->wmax - 4) {
390 size_t size = tok->wmax - tok->wspace + WINCR;
405 tok->wmax = s + size;
/freebsd-10.0-release/sys/netgraph/
H A Dng_l2tp.c122 * - The number of unacknowledged xmit packets is (ns - rack) <= seq->wmax
138 u_int16_t wmax; /* peer's max recv window */ member in struct:l2tp_seq
1200 seq->wmax = priv->conf.peer_win;
1201 if (seq->wmax > L2TP_MAX_XWIN)
1202 seq->wmax = L2TP_MAX_XWIN;
1203 seq->ssth = seq->wmax;
1256 if (new_wmax < seq->wmax)
1258 seq->wmax = new_wmax;
1296 seq->wmax = L2TP_MAX_XWIN;
1298 seq->ssth = seq->wmax;
[all...]
/freebsd-10.0-release/sbin/geom/class/part/
H A Dgeom_part.c587 int idx, wblocks, wname, wmax; local
598 wmax = strlen(gp->lg_name);
602 if (wname > wmax)
603 wmax = wname;
606 wname = wmax;

Completed in 87 milliseconds