Home
last modified time | relevance | path

Searched refs:hrtime (Results 1 - 25 of 26) sorted by relevance

12

/third_party/node/test/parallel/
H A Dtest-process-hrtime.js27 const tuple = process.hrtime();
33 validateTuple(process.hrtime(tuple));
35 // Test that only an Array may be passed to process.hrtime()
37 process.hrtime(1);
45 process.hrtime([]);
52 process.hrtime([1]);
59 process.hrtime([1, 2, 3]);
73 const diff = process.hrtime([0, 1e9 - 1]);
H A Dtest-vm-timeout-escape-promise-2.js12 const hrtime = process.hrtime.bigint;
15 const start = hrtime();
17 const current = hrtime();
30 hrtime,
H A Dtest-vm-timeout-escape-promise.js13 const hrtime = process.hrtime.bigint;
16 const start = hrtime();
18 const current = hrtime();
31 hrtime,
H A Dtest-vm-timeout-escape-promise-module.js14 const hrtime = process.hrtime.bigint;
17 const start = hrtime();
19 const current = hrtime();
33 hrtime,
H A Dtest-fs-stat-bigint.js98 const startTime = process.hrtime.bigint();
101 const endTime = process.hrtime.bigint();
153 const startTime = process.hrtime.bigint();
156 const endTime = process.hrtime.bigint();
185 const startTime = process.hrtime.bigint();
188 const endTime = process.hrtime.bigint();
208 const startTime = process.hrtime.bigint();
211 const endTime = process.hrtime.bigint();
/third_party/node/benchmark/process/
H A Dbench-hrtime.js12 const hrtime = process.hrtime;
13 let noDead = type === 'bigint' ? hrtime.bigint() : hrtime();
19 noDead = hrtime();
26 noDead = hrtime(noDead);
33 noDead = hrtime.bigint();
/third_party/node/test/known_issues/
H A Dtest-vm-timeout-escape-nexttick.js13 const hrtime = process.hrtime.bigint;
19 const start = hrtime();
21 const current = hrtime();
37 hrtime,
H A Dtest-vm-timeout-escape-queuemicrotask.js13 const hrtime = process.hrtime.bigint;
19 const start = hrtime();
21 const current = hrtime();
34 hrtime,
/third_party/node/test/sequential/
H A Dtest-vm-timeout-escape-promise-module-2.js14 const hrtime = process.hrtime.bigint;
17 const start = hrtime();
19 const current = hrtime();
33 hrtime,
/third_party/node/benchmark/diagnostics_channel/
H A Dhttp.js47 start: process.hrtime.bigint(),
54 end: process.hrtime.bigint(),
77 start: process.hrtime.bigint(),
85 end: process.hrtime.bigint(),
/third_party/node/benchmark/
H A D_test-double-benchmarker.js18 const start = process.hrtime();
26 const [sec, nanosec] = process.hrtime(start);
H A D_benchmark_progress.js34 this.startTime = process.hrtime();
78 const diff = process.hrtime(this.startTime);
H A Dcommon.js18 // Holds process.hrtime value
242 this._time = process.hrtime.bigint();
247 const time = process.hrtime.bigint();
/third_party/node/lib/internal/bootstrap/
H A Dnode.js206 process.hrtime = perThreadSetup.hrtime;
207 process.hrtime.bigint = perThreadSetup.hrtimeBigInt;
/third_party/node/lib/internal/test_runner/
H A Dharness.js25 const { bigint: hrtime } = process.hrtime;
192 root.startTime = hrtime();
H A Dtest.js61 const { bigint: hrtime } = process.hrtime;
449 test.startTime = test.startTime || hrtime();
500 this.endTime = hrtime();
510 this.endTime = hrtime();
581 this.startTime = hrtime();
681 this.endTime = hrtime();
930 this.startTime = hrtime();
/third_party/node/test/pummel/
H A Dtest-crypto-timing-safe-equal-benchmarks.js17 const startTime = process.hrtime();
19 const endTime = process.hrtime(startTime);
/third_party/node/test/fixtures/
H A Dguess-hash-seed.js68 const t1 = process.hrtime();
75 const t = process.hrtime(t1);
/third_party/node/lib/internal/process/
H A Dper_thread.js64 // The 3 entries filled in by the original process.hrtime contains
76 function hrtime(time) { function
77 binding.hrtime();
425 hrtime,
/third_party/node/lib/internal/perf/
H A Dutils.js14 const hr = process.hrtime();
/third_party/libuv/test/
H A Dtest-hrtime.c34 TEST_IMPL(hrtime) { in TEST_IMPL()
45 * that the difference between the two hrtime values has a reasonable in TEST_IMPL()
H A Dtest-timer.c380 uint64_t hrtime = uv_hrtime() / 1000000; in timer_early_check_cb() local
381 ASSERT_GE(hrtime, timer_early_check_expected_time); in timer_early_check_cb()
/third_party/node/test/async-hooks/
H A Dinit-hooks.js150 const time = process.hrtime(this._start);
238 return new ActivityCollector(process.hrtime(), {
/third_party/node/lib/internal/console/
H A Dconstructor.js405 this._times.set(label, process.hrtime());
623 const duration = process.hrtime(time);
/third_party/typescript/lib/
H A Dtsserver.js[all...]

Completed in 43 milliseconds

12