/third_party/node/test/parallel/ |
H A D | test-process-hrtime.js | 27 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 D | test-vm-timeout-escape-promise-2.js | 12 const hrtime = process.hrtime.bigint; 15 const start = hrtime(); 17 const current = hrtime(); 30 hrtime,
|
H A D | test-vm-timeout-escape-promise.js | 13 const hrtime = process.hrtime.bigint; 16 const start = hrtime(); 18 const current = hrtime(); 31 hrtime,
|
H A D | test-vm-timeout-escape-promise-module.js | 14 const hrtime = process.hrtime.bigint; 17 const start = hrtime(); 19 const current = hrtime(); 33 hrtime,
|
H A D | test-fs-stat-bigint.js | 98 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 D | bench-hrtime.js | 12 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 D | test-vm-timeout-escape-nexttick.js | 13 const hrtime = process.hrtime.bigint; 19 const start = hrtime(); 21 const current = hrtime(); 37 hrtime,
|
H A D | test-vm-timeout-escape-queuemicrotask.js | 13 const hrtime = process.hrtime.bigint; 19 const start = hrtime(); 21 const current = hrtime(); 34 hrtime,
|
/third_party/node/test/sequential/ |
H A D | test-vm-timeout-escape-promise-module-2.js | 14 const hrtime = process.hrtime.bigint; 17 const start = hrtime(); 19 const current = hrtime(); 33 hrtime,
|
/third_party/node/benchmark/diagnostics_channel/ |
H A D | http.js | 47 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.js | 18 const start = process.hrtime(); 26 const [sec, nanosec] = process.hrtime(start);
|
H A D | _benchmark_progress.js | 34 this.startTime = process.hrtime(); 78 const diff = process.hrtime(this.startTime);
|
H A D | common.js | 18 // Holds process.hrtime value 242 this._time = process.hrtime.bigint(); 247 const time = process.hrtime.bigint();
|
/third_party/node/lib/internal/bootstrap/ |
H A D | node.js | 206 process.hrtime = perThreadSetup.hrtime; 207 process.hrtime.bigint = perThreadSetup.hrtimeBigInt;
|
/third_party/node/lib/internal/test_runner/ |
H A D | harness.js | 25 const { bigint: hrtime } = process.hrtime; 192 root.startTime = hrtime();
|
H A D | test.js | 61 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 D | test-crypto-timing-safe-equal-benchmarks.js | 17 const startTime = process.hrtime(); 19 const endTime = process.hrtime(startTime);
|
/third_party/node/test/fixtures/ |
H A D | guess-hash-seed.js | 68 const t1 = process.hrtime(); 75 const t = process.hrtime(t1);
|
/third_party/node/lib/internal/process/ |
H A D | per_thread.js | 64 // 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 D | utils.js | 14 const hr = process.hrtime();
|
/third_party/libuv/test/ |
H A D | test-hrtime.c | 34 TEST_IMPL(hrtime) { in TEST_IMPL() 45 * that the difference between the two hrtime values has a reasonable in TEST_IMPL()
|
H A D | test-timer.c | 380 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 D | init-hooks.js | 150 const time = process.hrtime(this._start); 238 return new ActivityCollector(process.hrtime(), {
|
/third_party/node/lib/internal/console/ |
H A D | constructor.js | 405 this._times.set(label, process.hrtime()); 623 const duration = process.hrtime(time);
|
/third_party/typescript/lib/ |
H A D | tsserver.js | [all...] |