Home
last modified time | relevance | path

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

12345678910>>...12

/dports/www/wget2/wget2-2.0.0/tests/
H A Dtest-limit-rate.c36 static long long start_ms; variable
100 start_ms = wget_get_timemillis(); in main()
108 normal_elapsed_ms = wget_get_timemillis() - start_ms; in main()
111 start_ms = wget_get_timemillis(); in main()
120 elapsed_ms = wget_get_timemillis() - start_ms; in main()
144 start_ms = wget_get_timemillis(); in main()
158 start_ms = wget_get_timemillis(); in main()
170 elapsed_ms = wget_get_timemillis() - start_ms; in main()
193 start_ms = wget_get_timemillis(); in main()
204 start_ms = wget_get_timemillis(); in main()
[all …]
H A Dtest-limit-rate-http2.c36 static long long start_ms; variable
100 start_ms = wget_get_timemillis(); in main()
108 normal_elapsed_ms = wget_get_timemillis() - start_ms; in main()
111 start_ms = wget_get_timemillis(); in main()
120 elapsed_ms = wget_get_timemillis() - start_ms; in main()
144 start_ms = wget_get_timemillis(); in main()
158 start_ms = wget_get_timemillis(); in main()
170 elapsed_ms = wget_get_timemillis() - start_ms; in main()
193 start_ms = wget_get_timemillis(); in main()
204 start_ms = wget_get_timemillis(); in main()
[all …]
/dports/audio/musicpd/mpd-0.23.6/test/
H A Ddump_playlist.cxx98 const unsigned start_ms = song->GetStartTime().ToMS(); in main() local
103 start_ms / 60000, in main()
104 (start_ms / 1000) % 60, in main()
107 else if (start_ms > 0) in main()
109 start_ms / 60000, in main()
110 (start_ms / 1000) % 60); in main()
/dports/x11/runner/runner-1.1/src/aguix/
H A Dtimeoutstore.cc81 loff_t start_ms, now_ms, diff; in getNextTimeout() local
85 start_ms = m_time_reference.tv_sec * 1000 + in getNextTimeout()
90 if ( now_ms < start_ms ) { in getNextTimeout()
93 start_ms = now_ms; in getNextTimeout()
97 diff = now_ms - start_ms; in getNextTimeout()
102 res = ( start_ms + diff ) - now_ms; in getNextTimeout()
/dports/x11-fm/worker/worker-4.10.0/src/aguix/
H A Dtimeoutstore.cc81 loff_t start_ms, now_ms, diff; in getNextTimeout() local
85 start_ms = m_time_reference.tv_sec * 1000 + in getNextTimeout()
90 if ( now_ms < start_ms ) { in getNextTimeout()
93 start_ms = now_ms; in getNextTimeout()
97 diff = now_ms - start_ms; in getNextTimeout()
102 res = ( start_ms + diff ) - now_ms; in getNextTimeout()
/dports/audio/musicpd/mpd-0.23.6/src/
H A DSongPrint.cxx70 const unsigned start_ms = start_time.ToMS(); in PrintRange() local
75 start_ms / 1000, in PrintRange()
76 start_ms % 1000, in PrintRange()
79 else if (start_ms > 0) in PrintRange()
81 start_ms / 1000, in PrintRange()
82 start_ms % 1000); in PrintRange()
H A DSongSave.cxx43 range_save(BufferedOutputStream &os, unsigned start_ms, unsigned end_ms) in range_save() argument
46 os.Format("Range: %u-%u\n", start_ms, end_ms); in range_save()
47 else if (start_ms > 0) in range_save()
48 os.Format("Range: %u-\n", start_ms); in range_save()
128 unsigned start_ms = strtoul(value, &endptr, 10); in song_load() local
133 song.SetStartTime(SongTime::FromMS(start_ms)); in song_load()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/webrtc/modules/audio_coding/neteq/tools/
H A 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()
/dports/net-im/tg_owt/tg_owt-d578c76/src/modules/audio_coding/neteq/tools/
H A 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()
/dports/www/firefox/firefox-99.0/third_party/libwebrtc/modules/audio_coding/neteq/tools/
H A 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()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/webrtc/modules/audio_coding/neteq/tools/
H A 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()
/dports/mail/thunderbird/thunderbird-91.8.0/third_party/libwebrtc/webrtc/build/android/pylib/
H A Dpython_test_base.py95 start_ms = int(time.time()) * 1000
107 duration_ms = int(time.time()) * 1000 - start_ms
110 return self._ProcessResults(result, start_ms, duration_ms)
112 def _ProcessResults(self, result, start_ms, duration_ms): argument
140 python_result = SingleTestResult(self.qualified_name, start_ms,
154 python_result = SingleTestResult(self.qualified_name, start_ms,
/dports/lang/spidermonkey60/firefox-60.9.0/media/webrtc/trunk/build/android/pylib/
H A Dpython_test_base.py95 start_ms = int(time.time()) * 1000
107 duration_ms = int(time.time()) * 1000 - start_ms
110 return self._ProcessResults(result, start_ms, duration_ms)
112 def _ProcessResults(self, result, start_ms, duration_ms): argument
140 python_result = SingleTestResult(self.qualified_name, start_ms,
154 python_result = SingleTestResult(self.qualified_name, start_ms,
/dports/www/firefox-legacy/firefox-52.8.0esr/media/webrtc/trunk/build/android/pylib/
H A Dpython_test_base.py95 start_ms = int(time.time()) * 1000
107 duration_ms = int(time.time()) * 1000 - start_ms
110 return self._ProcessResults(result, start_ms, duration_ms)
112 def _ProcessResults(self, result, start_ms, duration_ms): argument
140 python_result = SingleTestResult(self.qualified_name, start_ms,
154 python_result = SingleTestResult(self.qualified_name, start_ms,
/dports/www/firefox-esr/firefox-91.8.0/third_party/libwebrtc/webrtc/build/android/pylib/
H A Dpython_test_base.py95 start_ms = int(time.time()) * 1000
107 duration_ms = int(time.time()) * 1000 - start_ms
110 return self._ProcessResults(result, start_ms, duration_ms)
112 def _ProcessResults(self, result, start_ms, duration_ms): argument
140 python_result = SingleTestResult(self.qualified_name, start_ms,
154 python_result = SingleTestResult(self.qualified_name, start_ms,
/dports/lang/spidermonkey78/firefox-78.9.0/media/webrtc/trunk/webrtc/build/android/pylib/
H A Dpython_test_base.py95 start_ms = int(time.time()) * 1000
107 duration_ms = int(time.time()) * 1000 - start_ms
110 return self._ProcessResults(result, start_ms, duration_ms)
112 def _ProcessResults(self, result, start_ms, duration_ms): argument
140 python_result = SingleTestResult(self.qualified_name, start_ms,
154 python_result = SingleTestResult(self.qualified_name, start_ms,
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/perfetto/src/trace_processor/importers/ninja/
H A Dninja_log_parser.cc110 *t_start == jobs_.back().start_ms && *t_end == jobs_.back().end_ms) { in Parse()
126 [](const Job& x, const Job& y) { return x.start_ms < y.start_ms; }); in NotifyEndOfFile()
158 if (cur.busy_until <= job.start_ms) { in NotifyEndOfFile()
181 const int64_t start_ns = job.start_ms * kMsToNs; in NotifyEndOfFile()
182 const int64_t dur_ns = (job.end_ms - job.start_ms) * kMsToNs; in NotifyEndOfFile()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/perfetto/src/trace_processor/importers/ninja/
H A Dninja_log_parser.cc110 *t_start == jobs_.back().start_ms && *t_end == jobs_.back().end_ms) { in Parse()
126 [](const Job& x, const Job& y) { return x.start_ms < y.start_ms; }); in NotifyEndOfFile()
158 if (cur.busy_until <= job.start_ms) { in NotifyEndOfFile()
180 const int64_t start_ns = job.start_ms * kMsToNs; in NotifyEndOfFile()
181 const int64_t dur_ns = (job.end_ms - job.start_ms) * kMsToNs; in NotifyEndOfFile()
/dports/net/ortp/ortp-1.0.2-0/src/
H A Dcongestiondetector.c65 cd->start_ms = (uint64_t)-1; in ortp_congestion_detector_set_state()
156 cd->start_ms = ortp_get_cur_time_ms(); in ortp_congestion_detector_record()
159 cd->last_packet_recv = cd->start_ms; in ortp_congestion_detector_record()
187 if (curtime - cd->start_ms > congestion_pending_duration_ms) { in ortp_congestion_detector_record()
199 cd->start_ms = ortp_get_cur_time_ms(); in ortp_congestion_detector_record()
206 if (ortp_get_cur_time_ms() - cd->start_ms > congestion_pending_duration_ms) { in ortp_congestion_detector_record()
/dports/multimedia/aegisub/aegisub-3.2.2/src/
H A Daudio_controller.cpp153 void AudioController::PlayToEndOfPrimary(int start_ms) in PlayToEndOfPrimary() argument
155 PlayRange(TimeRange(start_ms, GetPrimaryPlaybackRange().end())); in PlayToEndOfPrimary()
160 void AudioController::PlayToEnd(int start_ms) in PlayToEnd() argument
164 int64_t start_sample = SamplesFromMilliseconds(start_ms); in PlayToEnd()
169 AnnouncePlaybackPosition(start_ms); in PlayToEnd()
/dports/net-im/tg_owt/tg_owt-d578c76/src/rtc_base/time/
H A Dtimestamp_extrapolator.cc17 TimestampExtrapolator::TimestampExtrapolator(int64_t start_ms) in TimestampExtrapolator() argument
33 Reset(start_ms); in TimestampExtrapolator()
36 void TimestampExtrapolator::Reset(int64_t start_ms) { in Reset() argument
37 _startMs = start_ms; in Reset()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/webrtc/rtc_base/time/
H A Dtimestamp_extrapolator.cc17 TimestampExtrapolator::TimestampExtrapolator(int64_t start_ms) in TimestampExtrapolator() argument
33 Reset(start_ms); in TimestampExtrapolator()
36 void TimestampExtrapolator::Reset(int64_t start_ms) { in Reset() argument
37 _startMs = start_ms; in Reset()
/dports/misc/mxnet/incubator-mxnet-1.9.0/3rdparty/mkldnn/src/common/
H A Dprimitive.cpp88 double start_ms = get_msec(); in primitive_create() local
90 double duration_ms = get_msec() - start_ms; in primitive_create()
94 if (get_verbose_timestamp()) stamp = "," + std::to_string(start_ms); in primitive_create()
116 double start_ms = get_msec(); in primitive_execute() local
119 double duration_ms = get_msec() - start_ms; in primitive_execute()
121 if (get_verbose_timestamp()) stamp = "," + std::to_string(start_ms); in primitive_execute()
/dports/emulators/qemu/qemu-6.2.0/crypto/
H A Dpbkdf.c74 unsigned long long delta_ms, start_ms, end_ms; in MIRef()
77 if (qcrypto_pbkdf2_get_thread_cpu(&start_ms, errp) < 0) { in MIRef()
92 delta_ms = end_ms - start_ms; in MIRef()
/dports/emulators/qemu42/qemu-4.2.1/crypto/
H A Dpbkdf.c74 unsigned long long delta_ms, start_ms, end_ms; in qcrypto_pbkdf2_count_iters() local
77 if (qcrypto_pbkdf2_get_thread_cpu(&start_ms, errp) < 0) { in qcrypto_pbkdf2_count_iters()
92 delta_ms = end_ms - start_ms; in qcrypto_pbkdf2_count_iters()

12345678910>>...12