/third_party/node/test/parallel/ |
D | test-process-hrtime.js | 27 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]);
|
D | test-vm-timeout-escape-promise.js | 13 const hrtime = process.hrtime.bigint; constant 16 const start = hrtime(); 18 const current = hrtime(); 31 hrtime, property
|
D | test-vm-timeout-escape-promise-2.js | 12 const hrtime = process.hrtime.bigint; constant 15 const start = hrtime(); 17 const current = hrtime(); 30 hrtime, property
|
D | test-vm-timeout-escape-promise-module.js | 14 const hrtime = process.hrtime.bigint; constant 17 const start = hrtime(); 19 const current = hrtime(); 33 hrtime, property
|
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();
|
D | test-http2-session-timeout.js | 27 let startTime = process.hrtime(); 43 const diff = process.hrtime(startTime); 51 startTime = process.hrtime();
|
D | test-process-hrtime-bigint.js | 8 const start = process.hrtime.bigint(); 11 const end = process.hrtime.bigint();
|
/third_party/node/benchmark/process/ |
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/ |
D | test-vm-timeout-escape-queuemicrotask.js | 13 const hrtime = process.hrtime.bigint; constant 19 const start = hrtime(); 21 const current = hrtime(); 34 hrtime, property
|
D | test-vm-timeout-escape-nexttick.js | 13 const hrtime = process.hrtime.bigint; constant 19 const start = hrtime(); 21 const current = hrtime(); 37 hrtime, property
|
/third_party/node/test/sequential/ |
D | test-vm-timeout-escape-promise-module-2.js | 14 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/ |
D | performance-now.js | 3 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/ |
D | performance-now.coffee | 3 else if process? and process.hrtime 5 hrtime = process.hrtime 7 hr = hrtime()
|
/third_party/node/benchmark/diagnostics_channel/ |
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/test/pummel/ |
D | test-process-hrtime.js | 26 const start = process.hrtime(); 36 const diff = process.hrtime(start);
|
/third_party/node/deps/npm/node_modules/jsprim/ |
D | README.md | 212 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/ |
D | session.ts | 50 hrtime: process.hrtime, 471 hrtime: process.hrtime, 518 hrtime: process.hrtime, 586 hrtime: process.hrtime,
|
/third_party/node/benchmark/ |
D | _test-double-benchmarker.js | 18 const start = process.hrtime(); 26 const [sec, nanosec] = process.hrtime(start);
|
D | _benchmark_progress.js | 34 this.startTime = process.hrtime(); 78 const diff = process.hrtime(this.startTime);
|
/third_party/node/deps/npm/node_modules/performance-now/ |
D | README.md | 3 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/ |
D | Makefile.am | 190 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/ |
D | node.js | 84 process.hrtime = wrapped.hrtime; 85 process.hrtime.bigint = wrapped.hrtimeBigInt;
|
/third_party/node/lib/internal/process/ |
D | per_thread.js | 50 hrtime: _hrtime, 126 function hrtime(time) { function 241 hrtime,
|
/third_party/typescript/src/tsserver/ |
D | webServer.ts | 88 function hrtime(previous?: [number, number]) { function 106 … super(sys as ServerHost, { writeMessage }, options, logger, cancellationToken, hrtime);
|
/third_party/node/test/fixtures/ |
D | guess-hash-seed.js | 68 const t1 = process.hrtime(); 75 const t = process.hrtime(t1);
|