Home
last modified time | relevance | path

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

/external/webrtc/modules/audio_coding/neteq/tools/
Dneteq_quality_test.h73 int start_ms; member
75 FixedLossEvent(int start_ms, int duration_ms) in FixedLossEvent()
76 : start_ms(start_ms), duration_ms(duration_ms) {} in FixedLossEvent()
82 return l_event.start_ms < r_event.start_ms; in operator()
Dneteq_quality_test.cc303 now_ms > loss_events_it_->start_ms) { in Lost()
304 if (now_ms <= loss_events_it_->start_ms + loss_events_it_->duration_ms) { in Lost()
/external/perfetto/src/trace_processor/importers/ninja/
Dninja_log_parser.cc101 *t_start == jobs_.back().start_ms && *t_end == jobs_.back().end_ms) { in Parse()
117 [](const Job& x, const Job& y) { return x.start_ms < y.start_ms; }); in NotifyEndOfFile()
143 if (cur.busy_until <= job.start_ms) { in NotifyEndOfFile()
172 const int64_t start_ns = job.start_ms * kMsToNs; in NotifyEndOfFile()
173 const int64_t dur_ns = (job.end_ms - job.start_ms) * kMsToNs; in NotifyEndOfFile()
Dninja_log_parser.h59 : start_ms(s), end_ms(e), hash(h), names(n) {} in Job()
61 int64_t start_ms; member
/external/webrtc/modules/desktop_capture/
Dscreen_drawer_unittest.cc90 const int64_t start_ms = rtc::TimeMillis(); in TestScreenDrawerLock() local
94 ASSERT_GT(kLockDurationMs, rtc::TimeMillis() - start_ms); in TestScreenDrawerLock()
96 ASSERT_LE(kLockDurationMs, rtc::TimeMillis() - start_ms); in TestScreenDrawerLock()
/external/webrtc/rtc_tools/py_event_log_analyzer/
Drtp_analyzer.py231 start_ms = self.data_points[0].real_send_time_ms
235 bins=numpy.arange(start_ms, stop_ms, RTPStatistics.PLOT_RESOLUTION_MS),
248 start_ms = self.data_points[0].real_send_time_ms
250 time_axis = numpy.arange(start_ms / 1000, stop_ms / 1000,
253 delay = CalculateDelay(start_ms, stop_ms, RTPStatistics.PLOT_RESOLUTION_MS,
/external/libwebm/
Dsample_muxer_metadata.h56 const int64_t start_ms = cue.start_time.presentation();
59 const int64_t start_ns = start_ms * 1000000;
Dsample_muxer_metadata.cc362 const int64_t start_ms = cue.start_time.presentation(); in Write() local
365 const int64_t start_ns = start_ms * 1000000; in Write()
/external/tensorflow/tensorflow/core/profiler/utils/
Dtimespan.h125 inline Timespan MilliSpan(double start_ms, double end_ms) { in MilliSpan() argument
126 return PicoSpan(MilliToPico(start_ms), MilliToPico(end_ms)); in MilliSpan()
/external/webrtc/video/
Dsend_statistics_proxy.cc1402 if (start_ms == -1) in Start()
1403 start_ms = now_ms; in Start()
1407 if (start_ms != -1) { in Stop()
1408 total_ms += now_ms - start_ms; in Stop()
1409 start_ms = -1; in Stop()
1415 if (start_ms != -1) in Restart()
1416 start_ms = now_ms; in Restart()
Dsend_statistics_proxy.h189 int64_t start_ms = -1; member
/external/webrtc/modules/desktop_capture/win/
Ddxgi_duplicator_controller.cc479 const int64_t start_ms = rtc::TimeMillis(); in EnsureFrameCaptured() local
490 if (rtc::TimeMillis() - start_ms > timeout_ms) { in EnsureFrameCaptured()
/external/perfetto/src/base/
Dsubprocess_unittest.cc323 auto start_ms = GetWallTimeMs(); in TEST() local
325 auto elapsed_ms = GetWallTimeMs() - start_ms; in TEST()
Dunix_socket.cc440 const int64_t start_ms = GetWallTimeMs().count(); in SendMsgAllPosix() local
446 const int64_t deadline = start_ms + tx_timeout_ms_; in SendMsgAllPosix()
/external/webrtc/test/
Drtp_file_reader.cc496 uint32_t CalcTimeDelta(uint32_t ts_sec, uint32_t ts_usec, uint32_t start_ms) { in CalcTimeDelta() argument
500 uint64_t t1_ms = static_cast<uint64_t>(start_ms); in CalcTimeDelta()
/external/webrtc/rtc_base/
Dsocket_unittest.cc1019 uint32_t start_ms = Time(); in UdpReadyToSend() local
1022 while (start_ms + kTimeout > Time()) { in UdpReadyToSend()
/external/cronet/build/android/pylib/local/device/
Dlocal_device_instrumentation_test_run.py864 start_ms = time_ms()
871 duration_ms = time_ms() - start_ms
/external/angle/build/android/pylib/local/device/
Dlocal_device_instrumentation_test_run.py901 start_ms = time_ms()
908 duration_ms = time_ms() - start_ms
/external/tensorflow/tensorflow/core/framework/
Dmodel.cc2307 int64_t start_ms = EnvTime::NowMicros() / EnvTime::kMillisToMicros; in OptimizeLoop() local
2319 VLOG(2) << "Optimized for " << end_ms - start_ms << " ms."; in OptimizeLoop()