Home
last modified time | relevance | path

Searched refs:current_congestion_window (Results 1 – 1 of 1) sorted by relevance

/external/chromium_org/net/quic/congestion_control/
Dcubic.cc92 QuicTcpCongestionWindow current_congestion_window) { in CongestionWindowAfterPacketLoss() argument
93 if (current_congestion_window < last_max_congestion_window_) { in CongestionWindowAfterPacketLoss()
97 static_cast<int>(kBetaLastMax * current_congestion_window); in CongestionWindowAfterPacketLoss()
99 last_max_congestion_window_ = current_congestion_window; in CongestionWindowAfterPacketLoss()
102 return static_cast<int>(current_congestion_window * kNConnectionBeta); in CongestionWindowAfterPacketLoss()
106 QuicTcpCongestionWindow current_congestion_window, in CongestionWindowAfterAck() argument
112 if (last_congestion_window_ == current_congestion_window && in CongestionWindowAfterAck()
117 last_congestion_window_ = current_congestion_window; in CongestionWindowAfterAck()
126 estimated_tcp_congestion_window_ = current_congestion_window; in CongestionWindowAfterAck()
127 if (last_max_congestion_window_ <= current_congestion_window) { in CongestionWindowAfterAck()
[all …]