Searched refs:nInFlight (Results 1 – 1 of 1) sorted by relevance
314 uint32 nInFlight = m_snd_nxt - m_snd_una; in NotifyClock() local315 m_ssthresh = talk_base::_max(nInFlight / 2, 2 * m_mss); in NotifyClock()711 uint32 nInFlight = m_snd_nxt - m_snd_una; in process() local712 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() local779 m_ssthresh = talk_base::_max(nInFlight / 2, 2 * m_mss); in process()982 uint32 nInFlight = m_snd_nxt - m_snd_una; in attemptSend() local983 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 …]