Home
last modified time | relevance | path

Searched refs:MathFloor (Results 1 – 17 of 17) sorted by relevance

/third_party/node/deps/npm/node_modules/readable-stream/lib/internal/streams/
Dstate.js3 const { MathFloor, NumberIsInteger } = require('../../ours/primordials')
18 return MathFloor(hwm)
Doperators.js16 MathFloor,
55 concurrency = MathFloor(options.concurrency)
/third_party/node/lib/internal/streams/
Dstate.js4 MathFloor,
39 return MathFloor(hwm);
Doperators.js31 MathFloor,
82 concurrency = MathFloor(options.concurrency);
/third_party/node/lib/internal/main/
Dprint_help.js7 MathFloor,
205 const firstColumn = MathFloor(width * 0.4);
206 const secondColumn = MathFloor(width * 0.57);
/third_party/node/lib/internal/crypto/
Daes.js9 MathFloor,
170 const tagByteLength = MathFloor(tagLength / 8);
/third_party/node/lib/internal/
Dbuffer.js7 MathFloor,
80 if (MathFloor(value) !== value) {
663 const newVal = MathFloor(value * 2 ** -32);
688 buf[offset++] = MathFloor(newVal * 2 ** -32);
774 const newVal = MathFloor(value * 2 ** -32);
791 buf[offset++] = MathFloor(value * 2 ** -32);
/third_party/node/lib/internal/console/
Dconstructor.js15 MathFloor,
648 hours = MathFloor(ms / kHour);
651 minutes = MathFloor(ms / kMinute);
/third_party/node/deps/npm/node_modules/readable-stream/lib/ours/
Dprimordials.js42 MathFloor: Math.floor, property
/third_party/node/lib/internal/test_runner/
Dcoverage.js7 MathFloor,
313 mid = MathFloor((start + end) / 2);
Dutils.js9 MathFloor,
348 filePadLength -= MathFloor(columnsExtras * 0.2);
/third_party/node/lib/
D_http_outgoing.js28 MathFloor,
496 const timeoutSeconds = MathFloor(this._keepAliveTimeout / 1000);
Dbuffer.js30 MathFloor,
211 return ((n % 1) === 0 ? n : MathFloor(n));
/third_party/node/lib/internal/readline/
Dinterface.js18 MathFloor,
709 let maxColumns = MathFloor(this.columns / width) || 1;
/third_party/node/deps/v8/src/builtins/
Dmath.tq78 MathFloor(js-implicit context: NativeContext)(x: JSAny): Number {
/third_party/node/typings/
Dprimordials.d.ts66 export const MathFloor: typeof Math.floor
/third_party/node/lib/internal/util/
Dinspect.js31 MathFloor,
1482 MathFloor((ctx.breakLength - ctx.indentationLvl) / actualMax),