Searched refs:cwnd (Results 1 - 15 of 15) sorted by relevance

/external/chromium_org/third_party/usrsctp/usrsctplib/netinet/
H A Dsctp_cc_functions.c69 net->cwnd = min((net->mtu * 4), max((2 * net->mtu), SCTP_INITIAL_CWND));
77 net->cwnd = (net->mtu - sizeof(struct sctphdr)) * cwnd_in_mtu;
82 net->cwnd /= assoc->numnets;
83 if (net->cwnd < (net->mtu - sizeof(struct sctphdr))) {
84 net->cwnd = net->mtu - sizeof(struct sctphdr);
89 SDT_PROBE(sctp, cwnd, net, init,
91 0, net->cwnd);
115 t_cwnd += net->cwnd;
117 t_ucwnd_sbw += (uint64_t)net->cwnd / (uint64_t)net->lastsa;
138 * adjust ssthresh and cwnd
1448 uint32_t cwnd_in_mtu, cwnd; local
1599 int32_t cwnd; member in struct:sctp_hs_raise_drop
[all...]
H A Dsctp_timer.c196 * cwnd value. If all destinations are in PF state, unreachable, or unconfirmed, choose
250 * cwnd of the destination to the highest cwnd seen thus far. Store the
251 * destination with the higher cwnd value. If the cwnd values are equal,
254 if (max_cwnd < mnet->cwnd) {
256 max_cwnd = mnet->cwnd;
257 } else if (max_cwnd == mnet->cwnd) {
274 max_cwnd = mnet->cwnd; /* Useless? */
297 if (max_cwnd < mnet->cwnd) {
[all...]
H A Dsctputil.c323 sctp_clog.x.cwnd.net = net;
325 sctp_clog.x.cwnd.cnt_in_send = 255;
327 sctp_clog.x.cwnd.cnt_in_send = stcb->asoc.send_queue_cnt;
329 sctp_clog.x.cwnd.cnt_in_str = 255;
331 sctp_clog.x.cwnd.cnt_in_str = stcb->asoc.stream_queue_cnt;
334 sctp_clog.x.cwnd.cwnd_new_value = net->cwnd;
335 sctp_clog.x.cwnd.inflight = net->flight_size;
336 sctp_clog.x.cwnd.pseudo_cumack = net->pseudo_cumack;
337 sctp_clog.x.cwnd
[all...]
H A Dsctp_uio.h766 uint32_t cwnd_new_value;/* cwnd in k */
934 struct sctp_cwnd_args cwnd; member in union:sctp_cwnd_log::__anon15642
1087 uint32_t sctps_ecnereducedcwnd; /* Number of times a ECN reduced the cwnd */
1105 uint32_t sctps_send_cwnd_avoid; /* Send cwnd full avoidance, already max burst inflight to net */
1261 uint32_t cwnd; /* */ member in struct:xsctp_raddr
H A Dsctp_indata.c2689 * new_(rtx_)pseudo_cumack to TRUE so that the cwnd for this dest can be
2783 /* deflate the cwnd */
2784 tp1->whoTo->cwnd -= tp1->book_size;
2927 /* We inflate the cwnd to compensate for our
2930 tp1->whoTo->cwnd += tp1->book_size;
3605 net->prev_cwnd = net->cwnd;
3725 * cwnd update.
3743 /* deflate the cwnd */
3744 tp1->whoTo->cwnd -= tp1->book_size;
4141 * revoked blocks and mark. 7) Update the cwnd
[all...]
H A Dsctp_structs.h339 uint32_t cwnd; /* actual cwnd */ member in struct:sctp_nets
340 uint32_t prev_cwnd; /* cwnd before any processing */
341 uint32_t ecn_prev_cwnd; /* ECN prev cwnd at first ecn_echo seen in new window */
H A Dsctp_sysctl.c614 xraddr.cwnd = net->cwnd;
H A Dsctp_output.c7391 data_list[i]->rec.data.cwnd_at_send = net->cwnd;
8217 * see if the cwnd/rwnd allows any output, if so we go ahead and
8334 * each net, if its's got space in cwnd and
8358 if (net->flight_size >= net->cwnd) {
8424 (net->flight_size >= net->cwnd)) {
8983 if (net->flight_size >= net->cwnd) {
9058 if (net->flight_size >= net->cwnd) {
9853 * happening we ignore the cwnd. Otherwise we obey the cwnd and
10081 * flight_size > cwnd
[all...]
H A Dsctp_usrreq.c3200 paddri->spinfo_cwnd = net->cwnd;
3289 sstat->sstat_primary.spinfo_cwnd = net->cwnd;
/external/chromium_org/net/quic/congestion_control/
H A Dsend_algorithm_simulator.h33 QuicByteCount cwnd = send_algorithm->GetCongestionWindow(); local
34 max_cwnd = std::max(max_cwnd, cwnd);
35 min_cwnd = std::min(min_cwnd, cwnd);
36 if (last_cwnd > cwnd) {
37 max_cwnd_drop = std::max(max_cwnd_drop, last_cwnd - cwnd);
39 last_cwnd = cwnd;
45 " cwnd:%" PRIu64
/external/libnl/lib/route/
H A Droute_utils.c149 __ADD(RTAX_CWND, cwnd)
/external/chromium_org/third_party/libjingle/source/talk/p2p/base/
H A Dpseudotcp.cc1048 uint32 cwnd = m_cwnd; local
1050 cwnd += m_dup_acks * m_mss;
1052 uint32 nWindow = rtc::_min(m_snd_wnd, cwnd);
1076 LOG(LS_INFO) << "[cwnd: " << m_cwnd
1155 // Enforce minimums on ssthresh and cwnd
/external/iproute2/misc/
H A Dss.c447 int rto, ato, qack, cwnd, ssthresh; member in struct:tcpstat
1227 &s.cwnd, &s.ssthresh, opt);
1234 s.cwnd = 2;
1265 if (s.cwnd != 2)
1266 printf(" cwnd:%d", s.cwnd);
1396 printf(" cwnd:%d", info->tcpi_snd_cwnd);
/external/chromium_org/net/spdy/
H A Dspdy_session.cc2792 uint32 cwnd = (it != server_settings_map.end()) ? it->second.second : 0; local
2793 UMA_HISTOGRAM_CUSTOM_COUNTS("Net.SpdySettingsCwndSent", cwnd, 1, 200, 100);
3011 // Record several different histograms to see if cwnd converges
/external/iproute2/doc/
H A Dip-cref.tex1305 \item \verb|cwnd NUMBER|

Completed in 8320 milliseconds