Searched refs:timeMs (Results 1 – 6 of 6) sorted by relevance
31 _history[i].timeMs = -1; in Reset()46 if (_history[0].timeMs >= 0 && now - _history[0].timeMs < SHORT_FILTER_MS) { in UpdateMaxHistory()52 if (_history[0].timeMs == -1) { in UpdateMaxHistory()59 _history[i + 1].timeMs = _history[i].timeMs; in UpdateMaxHistory()67 _history[0].timeMs = now; in UpdateMaxHistory()74 if (_history[0].timeMs == -1) { in ProcessHistory()78 if (_history[i].timeMs == -1) { in ProcessHistory()81 if (nowMs - _history[i].timeMs > MAX_HISTORY_SIZE * SHORT_FILTER_MS) { in ProcessHistory()
524 if (_lossPrHistory[0].timeMs >= 0 && in UpdateMaxLossHistory()525 now - _lossPrHistory[0].timeMs < kLossPrShortFilterWinMs) { in UpdateMaxLossHistory()531 if (_lossPrHistory[0].timeMs == -1) { in UpdateMaxLossHistory()538 _lossPrHistory[i + 1].timeMs = _lossPrHistory[i].timeMs; in UpdateMaxLossHistory()546 _lossPrHistory[0].timeMs = now; in UpdateMaxLossHistory()553 if (_lossPrHistory[0].timeMs == -1) { in MaxFilteredLossPr()557 if (_lossPrHistory[i].timeMs == -1) { in MaxFilteredLossPr()560 if (nowMs - _lossPrHistory[i].timeMs > in MaxFilteredLossPr()671 _lossPrHistory[i].timeMs = -1; in Reset()
25 VCMShortMaxSample() : shortMax(0), timeMs(-1) {} in VCMShortMaxSample()28 int64_t timeMs; variable
84 VCMLossProbabilitySample() : lossPr255(0), timeMs(-1) {} in VCMLossProbabilitySample()87 int64_t timeMs; variable
689 int timeMs = clock.getMilliseconds(); in runClient() local690 …d bytes in %d ms: %.2f MiB/s\n", DATA_SIZE, timeMs, ((float)DATA_SIZE / (float)(1024*1024)) / ((fl… in runClient()
60 void set_resend_time_ms(int64_t timeMs) { resend_time_ms_ = timeMs; } in set_resend_time_ms() argument