Home
last modified time | relevance | path

Searched refs:hrtime (Results 1 – 25 of 65) sorted by relevance

123

/third_party/node/test/parallel/
Dtest-process-hrtime.js27 const tuple = process.hrtime();
33 validateTuple(process.hrtime(tuple));
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]);
Dtest-vm-timeout-escape-promise.js13 const hrtime = process.hrtime.bigint; constant
16 const start = hrtime();
18 const current = hrtime();
31 hrtime, property
Dtest-vm-timeout-escape-promise-2.js12 const hrtime = process.hrtime.bigint; constant
15 const start = hrtime();
17 const current = hrtime();
30 hrtime, property
Dtest-vm-timeout-escape-promise-module.js14 const hrtime = process.hrtime.bigint; constant
17 const start = hrtime();
19 const current = hrtime();
33 hrtime, property
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();
Dtest-http2-session-timeout.js27 let startTime = process.hrtime();
43 const diff = process.hrtime(startTime);
51 startTime = process.hrtime();
Dtest-process-hrtime-bigint.js8 const start = process.hrtime.bigint();
11 const end = process.hrtime.bigint();
/third_party/node/benchmark/process/
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/
Dtest-vm-timeout-escape-queuemicrotask.js13 const hrtime = process.hrtime.bigint; constant
19 const start = hrtime();
21 const current = hrtime();
34 hrtime, property
Dtest-vm-timeout-escape-nexttick.js13 const hrtime = process.hrtime.bigint; constant
19 const start = hrtime();
21 const current = hrtime();
37 hrtime, property
/third_party/node/test/sequential/
Dtest-vm-timeout-escape-promise-module-2.js14 const hrtime = process.hrtime.bigint; constant
17 const start = hrtime();
19 const current = hrtime();
33 hrtime, property
/third_party/node/deps/npm/node_modules/performance-now/lib/
Dperformance-now.js3 var getNanoSeconds, hrtime, loadTime, moduleLoadTime, nodeLoadTime, upTime;
9 } else if ((typeof process !== "undefined" && process !== null) && process.hrtime) {
13 hrtime = process.hrtime;
16 hr = hrtime();
/third_party/node/deps/npm/node_modules/performance-now/src/
Dperformance-now.coffee3 else if process? and process.hrtime
5 hrtime = process.hrtime
7 hr = hrtime()
/third_party/node/benchmark/diagnostics_channel/
Dhttp.js47 start: process.hrtime.bigint()
54 end: process.hrtime.bigint()
77 start: process.hrtime.bigint()
85 end: process.hrtime.bigint()
/third_party/node/test/pummel/
Dtest-process-hrtime.js26 const start = process.hrtime();
36 const diff = process.hrtime(start);
/third_party/node/deps/npm/node_modules/jsprim/
DREADME.md212 Given two hrtime readings (as from Node's `process.hrtime()`), where timeA is
213 later than timeB, compute the difference and return that as an hrtime. It is
218 Add two hrtime intervals (as from Node's `process.hrtime()`), returning a new
219 hrtime interval array. This function does not modify either input argument.
224 Add two hrtime intervals (as from Node's `process.hrtime()`), storing the
231 This suite of functions converts a hrtime interval (as from Node's
232 `process.hrtime()`) into a scalar number of nanoseconds, microseconds or
/third_party/typescript/src/testRunner/unittests/tsserver/
Dsession.ts50 hrtime: process.hrtime,
471 hrtime: process.hrtime,
518 hrtime: process.hrtime,
586 hrtime: process.hrtime,
/third_party/node/benchmark/
D_test-double-benchmarker.js18 const start = process.hrtime();
26 const [sec, nanosec] = process.hrtime(start);
D_benchmark_progress.js34 this.startTime = process.hrtime();
78 const diff = process.hrtime(this.startTime);
/third_party/node/deps/npm/node_modules/performance-now/
DREADME.md3 Implements a function similar to `performance.now` (based on `process.hrtime`).
5 …cision. This module offers the same function based on the Node.js native `process.hrtime` function.
7 Using `process.hrtime` means that the reported time will be monotonically increasing, and not subje…
/third_party/libuv/
DMakefile.am190 test/test-hrtime.c \
402 src/unix/posix-hrtime.c \
430 src/unix/posix-hrtime.c
440 src/unix/posix-hrtime.c \
452 src/unix/posix-hrtime.c \
461 src/unix/posix-hrtime.c \
487 src/unix/posix-hrtime.c \
500 src/unix/posix-hrtime.c
510 src/unix/posix-hrtime.c \
/third_party/node/lib/internal/bootstrap/
Dnode.js84 process.hrtime = wrapped.hrtime;
85 process.hrtime.bigint = wrapped.hrtimeBigInt;
/third_party/node/lib/internal/process/
Dper_thread.js50 hrtime: _hrtime,
126 function hrtime(time) { function
241 hrtime,
/third_party/typescript/src/tsserver/
DwebServer.ts88 function hrtime(previous?: [number, number]) { function
106 … super(sys as ServerHost, { writeMessage }, options, logger, cancellationToken, hrtime);
/third_party/node/test/fixtures/
Dguess-hash-seed.js68 const t1 = process.hrtime();
75 const t = process.hrtime(t1);

123