Lines Matching refs:m_cwnd
241 m_cwnd = 2 * m_mss; in PseudoTcp()
309 m_cwnd = m_mss; in NotifyClock()
397 return m_cwnd; in GetCongestionWindow()
761 m_cwnd = std::min(m_ssthresh, nInFlight + m_mss); // (Fast Retransmit) in process()
774 m_cwnd += m_mss - std::min(nAcked, m_cwnd); in process()
779 if (m_cwnd < m_ssthresh) { in process()
780 m_cwnd += m_mss; in process()
782 m_cwnd += std::max<uint32_t>(1, m_mss * m_mss / m_cwnd); in process()
809 m_cwnd = m_ssthresh + 3 * m_mss; in process()
811 m_cwnd += m_mss; in process()
1026 m_cwnd = 2 * m_mss; // I added this... haven't researched actual formula in transmit()
1065 m_cwnd = m_mss; in attemptSend()
1073 uint32_t cwnd = m_cwnd; in attemptSend()
1101 RTC_LOG(LS_INFO) << "[cwnd: " << m_cwnd << " nWindow: " << nWindow in attemptSend()
1179 m_cwnd = std::max(m_cwnd, m_mss); in adjustMTU()