Home
last modified time | relevance | path

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

/external/webrtc/rtc_tools/rtc_event_log_visualizer/
Danalyzer_common.h152 size_t window_index_end = 0; in MovingAverage() local
157 while (window_index_end < data_view.size() && in MovingAverage()
158 data_view[window_index_end].log_time_us() < t) { in MovingAverage()
159 absl::optional<ResultType> value = fy(data_view[window_index_end]); in MovingAverage()
162 ++window_index_end; in MovingAverage()
Danalyzer.cc696 size_t window_index_end = 0; in CreateIncomingPacketLossGraph() local
704 while (window_index_end < packets.size() && in CreateIncomingPacketLossGraph()
705 packets[window_index_end].rtp.log_time_us() < t) { in CreateIncomingPacketLossGraph()
707 packets[window_index_end].rtp.header.sequenceNumber); in CreateIncomingPacketLossGraph()
709 ++window_index_end; in CreateIncomingPacketLossGraph()
722 int64_t received_packets = window_index_end - window_index_begin; in CreateIncomingPacketLossGraph()