Home
last modified time | relevance | path

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

/external/chromium/third_party/libjingle/source/talk/p2p/base/
Dpseudotcp.cc314 uint32 nInFlight = m_snd_nxt - m_snd_una; in NotifyClock() local
315 m_ssthresh = talk_base::_max(nInFlight / 2, 2 * m_mss); in NotifyClock()
711 uint32 nInFlight = m_snd_nxt - m_snd_una; in process() local
712 m_cwnd = talk_base::_min(m_ssthresh, nInFlight + m_mss); // (Fast Retransmit) in process()
778 uint32 nInFlight = m_snd_nxt - m_snd_una; in process() local
779 m_ssthresh = talk_base::_max(nInFlight / 2, 2 * m_mss); in process()
982 uint32 nInFlight = m_snd_nxt - m_snd_una; in attemptSend() local
983 uint32 nUseable = (nInFlight < nWindow) ? (nWindow - nInFlight) : 0; in attemptSend()
985 uint32 nAvailable = talk_base::_min(m_slen - nInFlight, m_mss); in attemptSend()
1001 << " nInFlight: " << nInFlight in attemptSend()
[all …]