/third_party/curl/tests/unit/ |
H A D | unit2600.c | 140 timediff_t duration_ms; in cf_test_connect() local 145 duration_ms = Curl_timediff(Curl_now(), ctx->started); in cf_test_connect() 146 if(duration_ms >= ctx->fail_delay_ms) { in cf_test_connect() 148 (int)duration_ms, ctx->id); in cf_test_connect() 151 if(duration_ms) in cf_test_connect() 152 infof(data, "%04dms: cf[%s] continuing", (int)duration_ms, ctx->id); in cf_test_connect() 153 Curl_expire(data, ctx->fail_delay_ms - duration_ms, EXPIRE_RUN_NOW); in cf_test_connect() 237 timediff_t duration_ms; in check_result() local 239 duration_ms = Curl_timediff(tr->ended, tr->started); in check_result() 240 fprintf(stderr, "%d: test case took %dms\n", tc->id, (int)duration_ms); in check_result() [all...] |
/third_party/skia/third_party/externals/sfntly/cpp/src/test/ |
H A 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) { 88 // Contains the portion of duration_ms >= 1 sec. 89 sleep_time.tv_sec = duration_ms / 1000; 90 duration_ms -= sleep_time.tv_sec * 1000; 92 // Contains the portion of duration_ms < 1 sec. 93 sleep_time.tv_nsec = duration_ms * 1000 * 1000; // nanoseconds.
|
H A D | platform_thread.h | 52 static void Sleep(int32_t duration_ms);
|
/third_party/node/lib/internal/test_runner/reporter/ |
H A D | spec.js | 73 const duration_ms = data.details?.duration_ms ? ` ${gray}(${data.details.duration_ms}ms)${white}` : ''; 74 let title = `${data.name}${duration_ms}`;
|
H A D | tap.js | 86 const { error, duration_ms } = data; 90 details += jsToYaml(_indent, 'duration_ms', duration_ms);
|
/third_party/node/deps/v8/src/heap/ |
H A D | gc-tracer-inl.h | 55 double duration_ms = tracer_->MonotonicallyIncreasingTimeInMs() - start_time_; in ~Scope() local 56 tracer_->AddScopeSample(scope_, duration_ms); in ~Scope() 69 static_cast<int64_t>(duration_ms * in ~Scope()
|
H A D | incremental-marking.cc | 534 double* duration_ms) { in EmbedderStep() 536 *duration_ms = 0.0; in EmbedderStep() 572 *duration_ms = current - start; in EmbedderStep() 533 EmbedderStep(double expected_duration_ms, double* duration_ms) EmbedderStep() argument
|
H A D | incremental-marking.h | 167 StepResult EmbedderStep(double expected_duration_ms, double* duration_ms);
|
/third_party/lwip/src/apps/lwiperf/ |
H A 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/libavformat/ |
H A 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/ffmpeg/libavcodec/ |
H A D | opus_silk.c | 790 int duration_ms) in ff_silk_decode_superframe() 796 coded_channels > 2 || duration_ms > 60) { in ff_silk_decode_superframe() 802 nb_frames = 1 + (duration_ms > 20) + (duration_ms > 40); in ff_silk_decode_superframe() 803 s->subframes = duration_ms / nb_frames / 5; // 5ms subframes in ff_silk_decode_superframe() 824 if (redundancy[i] && duration_ms > 20) { in ff_silk_decode_superframe() 825 redundancy[i] = ff_opus_rc_dec_cdf(rc, duration_ms == 40 ? in ff_silk_decode_superframe() 786 ff_silk_decode_superframe(SilkContext *s, OpusRangeCoder *rc, float *output[2], enum OpusBandwidth bandwidth, int coded_channels, int duration_ms) ff_silk_decode_superframe() argument
|
H A D | opus.h | 193 int duration_ms);
|
/third_party/libwebsockets/include/libwebsockets/ |
H A D | lws-fts.h | 77 int duration_ms; member
|
/third_party/node/lib/internal/test_runner/ |
H A D | test.js | 753 reporter.diagnostic(nesting, loc, `duration_ms ${this.duration()}`); 800 const details = { __proto__: null, duration_ms: this.duration() }; 877 duration_ms: this.duration(),
|
/third_party/node/src/ |
H A D | env.cc | 1172 void Environment::ScheduleTimer(int64_t duration_ms) { in ScheduleTimer() argument 1174 uv_timer_start(timer_handle(), RunTimers, duration_ms, 0); in ScheduleTimer() 1233 int64_t duration_ms = in RunTimers() local 1236 env->ScheduleTimer(duration_ms > 0 ? duration_ms : 1); in RunTimers()
|
H A D | node_http2.cc | 3117 double duration_ms = duration_ns / 1e6; in Done() local 3132 Boolean::New(isolate, ack), Number::New(isolate, duration_ms), buf}; in Done()
|
/third_party/node/test/parallel/ |
H A D | test-runner-cli.js | 137 assert.match(stdout, / {2}duration_ms: .*/);
|
/third_party/libwebsockets/lib/misc/fts/ |
H A 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()
|