/third_party/skia/third_party/externals/sfntly/cpp/src/test/ |
D | platform_thread.cc | 51 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.
|
D | platform_thread.h | 52 static void Sleep(int32_t duration_ms);
|
/third_party/flutter/skia/third_party/externals/sfntly/cpp/src/test/ |
D | platform_thread.cc | 51 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.
|
D | platform_thread.h | 52 static void Sleep(int32_t duration_ms);
|
/third_party/gstreamer/gstplugins_good/tests/check/elements/ |
D | flvmux.c | 233 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/ |
D | argo_brp.c | 76 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/ |
D | cpu.cfg | 20 duration_ms: 10000
|
D | gpu.cfg | 29 duration_ms: 16000
|
D | system.cfg | 103 duration_ms: 7000
|
/third_party/lwip/src/apps/lwiperf/ |
D | lwiperf.c | 232 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/ |
D | opus_silk.c | 789 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()
|
D | opus.h | 193 int duration_ms);
|
/third_party/libwebsockets/include/libwebsockets/ |
D | lws-fts.h | 77 int duration_ms; member
|
/third_party/node/src/ |
D | env.cc | 809 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()
|
D | node_http2.cc | 2968 double duration_ms = duration_ns / 1e6; in Done() local 2984 Number::New(isolate, duration_ms), in Done()
|
/third_party/libwebsockets/lib/misc/fts/ |
D | trie-fd.c | 423 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/ |
D | CHANGELOG_V6.md | 4407 …/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…
|