Home
last modified time | relevance | path

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

/third_party/skia/third_party/externals/sfntly/cpp/src/test/
Dplatform_thread.cc51 void PlatformThread::Sleep(int32_t duration_ms) { in Sleep() argument
52 ::Sleep(duration_ms); in Sleep()
85 void PlatformThread::Sleep(int32_t duration_ms) {
89 sleep_time.tv_sec = duration_ms / 1000;
90 duration_ms -= sleep_time.tv_sec * 1000;
93 sleep_time.tv_nsec = duration_ms * 1000 * 1000; // nanoseconds.
Dplatform_thread.h52 static void Sleep(int32_t duration_ms);
/third_party/flutter/skia/third_party/externals/sfntly/cpp/src/test/
Dplatform_thread.cc51 void PlatformThread::Sleep(int32_t duration_ms) { in Sleep() argument
52 ::Sleep(duration_ms); in Sleep()
85 void PlatformThread::Sleep(int32_t duration_ms) {
89 sleep_time.tv_sec = duration_ms / 1000;
90 duration_ms -= sleep_time.tv_sec * 1000;
93 sleep_time.tv_nsec = duration_ms * 1000 * 1000; // nanoseconds.
Dplatform_thread.h52 static void Sleep(int32_t duration_ms);
/third_party/gstreamer/gstplugins_good/tests/check/elements/
Dflvmux.c233 const GstClockTime duration_ms = 20; in GST_START_TEST() local
234 const GstClockTime duration = duration_ms * GST_MSECOND; in GST_START_TEST()
348 fail_unless_equals_int (duration_ms, map.data[6]); in GST_START_TEST()
577 const GstClockTime duration_ms = 20; in GST_START_TEST() local
578 const GstClockTime duration = duration_ms * GST_MSECOND; in GST_START_TEST()
680 const GstClockTime duration_ms = 20; in GST_START_TEST() local
681 const GstClockTime duration = duration_ms * GST_MSECOND; in GST_START_TEST()
781 const GstClockTime duration_ms = 20; in GST_START_TEST() local
782 const GstClockTime duration = duration_ms * GST_MSECOND; in GST_START_TEST()
862 const GstClockTime duration_ms = 20; in GST_START_TEST() local
[all …]
/third_party/ffmpeg/libavformat/
Dargo_brp.c76 uint32_t duration_ms; member
190 hdr->duration_ms = AV_RL32(buf + 8); in argo_brp_read_header()
200 st->duration = hdr->duration_ms; in argo_brp_read_header()
341 … st->duration = av_rescale_rnd(hdr->duration_ms, st->codecpar->sample_rate, 1000, AV_ROUND_UP); in argo_brp_read_header()
/third_party/mesa3d/src/tool/pps/cfg/
Dcpu.cfg20 duration_ms: 10000
Dgpu.cfg29 duration_ms: 16000
Dsystem.cfg103 duration_ms: 7000
/third_party/lwip/src/apps/lwiperf/
Dlwiperf.c232 u32_t now, duration_ms, bandwidth_kbitpsec; in lwip_tcp_conn_report() local
234 duration_ms = now - conn->time_started; in lwip_tcp_conn_report()
235 if (duration_ms == 0) { in lwip_tcp_conn_report()
238 bandwidth_kbitpsec = (conn->bytes_transferred / duration_ms) * 8U; in lwip_tcp_conn_report()
243 conn->bytes_transferred, duration_ms, bandwidth_kbitpsec); in lwip_tcp_conn_report()
/third_party/ffmpeg/libavcodec/
Dopus_silk.c789 int duration_ms) in ff_silk_decode_superframe() argument
795 coded_channels > 2 || duration_ms > 60) { in ff_silk_decode_superframe()
801 nb_frames = 1 + (duration_ms > 20) + (duration_ms > 40); in ff_silk_decode_superframe()
802 s->subframes = duration_ms / nb_frames / 5; // 5ms subframes in ff_silk_decode_superframe()
823 if (redundancy[i] && duration_ms > 20) { in ff_silk_decode_superframe()
824 redundancy[i] = ff_opus_rc_dec_cdf(rc, duration_ms == 40 ? in ff_silk_decode_superframe()
Dopus.h193 int duration_ms);
/third_party/libwebsockets/include/libwebsockets/
Dlws-fts.h77 int duration_ms; member
/third_party/node/src/
Denv.cc809 void Environment::ScheduleTimer(int64_t duration_ms) { in ScheduleTimer() argument
811 uv_timer_start(timer_handle(), RunTimers, duration_ms, 0); in ScheduleTimer()
871 int64_t duration_ms = in RunTimers() local
874 env->ScheduleTimer(duration_ms > 0 ? duration_ms : 1); in RunTimers()
Dnode_http2.cc2968 double duration_ms = duration_ns / 1e6; in Done() local
2984 Number::New(isolate, duration_ms), in Done()
/third_party/libwebsockets/lib/misc/fts/
Dtrie-fd.c423 result->duration_ms = 0; in lws_fts_search()
601 result->duration_ms = (int)(((uint64_t)lws_now_usecs() - tf) / 1000); in lws_fts_search()
/third_party/node/doc/changelogs/
DCHANGELOG_V6.md4407 …/github.com/nodejs/node/commit/257f4e6202)] - **test**: add note about duration_ms in TAP reporter…
4408 …b.com/nodejs/node/commit/798a737f45)] - ***Revert*** "**test**: change duration_ms to duration" (R…
4414 * [[`e8b1456d8b`](https://github.com/nodejs/node/commit/e8b1456d8b)] - **test**: change duration_ms