Home
last modified time | relevance | path

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

/external/webrtc/rtc_base/numerics/
Dmoving_max_counter.h51 void RollWindow(int64_t new_time_ms);
103 void MovingMaxCounter<T>::RollWindow(int64_t new_time_ms) { in RollWindow() argument
105 RTC_DCHECK_GE(new_time_ms, last_call_time_ms_); in RollWindow()
106 last_call_time_ms_ = new_time_ms; in RollWindow()
108 const int64_t window_begin_ms = new_time_ms - window_length_ms_; in RollWindow()