/third_party/node/test/parallel/ |
D | test-buffer-readuint.js | 88 assert.strictEqual(buffer.readUIntBE(0, 1), 0x01); 90 assert.strictEqual(buffer.readUIntBE(0, 3), 0x010203); 92 assert.strictEqual(buffer.readUIntBE(0, 5), 0x0102030405); 94 assert.strictEqual(buffer.readUIntBE(0, 6), 0x010203040506); 96 assert.strictEqual(buffer.readUIntBE(1, 6), 0x020304050607); 98 assert.strictEqual(buffer.readUIntBE(2, 6), 0x030405060708);
|
D | test-buffer-alloc.js | 931 assert.strictEqual(buf.readUIntBE(0, 3), 0x123456); 981 assert.strictEqual(buf.readUIntBE(0, 5), 0x1234567890);
|
/third_party/node/lib/internal/crypto/ |
D | random.js | 187 const x = randomBytes(6).readUIntBE(0, 6); 199 const x = bytes.readUIntBE(0, 6);
|
/third_party/node/deps/npm/node_modules/npm-registry-fetch/node_modules/safe-buffer/ |
D | index.d.ts | 16 readUIntBE(offset: number, byteLength: number, noAssert?: boolean): number;
|
/third_party/node/deps/npm/node_modules/string_decoder/node_modules/safe-buffer/ |
D | index.d.ts | 16 readUIntBE(offset: number, byteLength: number, noAssert?: boolean): number;
|
/third_party/node/deps/npm/node_modules/safe-buffer/ |
D | index.d.ts | 16 readUIntBE(offset: number, byteLength: number, noAssert?: boolean): number;
|
/third_party/node/deps/npm/node_modules/tar/node_modules/safe-buffer/ |
D | index.d.ts | 16 readUIntBE(offset: number, byteLength: number, noAssert?: boolean): number;
|
/third_party/node/lib/internal/ |
D | buffer.js | 256 function readUIntBE(offset, byteLength) { function 980 proto.readUIntBE = readUIntBE; 987 proto.readUintBE = readUIntBE;
|
/third_party/node/test/common/ |
D | tls.js | 105 const length = buf.readUIntBE(offset, 3);
|
D | inspector-helper.js | 76 dataLen = buffer.readUIntBE(4, 6);
|
/third_party/jsframework/runtime/main/extend/systemplugin/napi/ |
D | ohos_buffer.js | 278 this.readUIntBE = function (...args) { method in mockBuffer.BufferClass
|
/third_party/typescript/src/compiler/ |
D | sys.ts | 1026 readUIntBE(offset: number, byteLength: number): number; method
|
/third_party/node/doc/api/ |
D | buffer.md | 2024 ### `buf.readUIntBE(offset, byteLength)` 2052 console.log(buf.readUIntBE(0, 6).toString(16)); 2054 console.log(buf.readUIntBE(1, 6).toString(16));
|
/third_party/node/doc/changelogs/ |
D | CHANGELOG_IOJS.md | 2585 …iteUIntBE`, `buf.writeIntLE`, `buf.writeIntBE`, `buf.readUIntLE`, `buf.readUIntBE`, `buf.readIntLE…
|
D | CHANGELOG_V7.md | 1358 …com/nodejs/node/commit/826decf8e5)] - **test**: basic functionality of readUIntBE() (larissayvette…
|
D | CHANGELOG_V6.md | 2699 …com/nodejs/node/commit/9546ad7d4d)] - **test**: basic functionality of readUIntBE() (larissayvette… 3720 * [[`a7c21759d9`](https://github.com/nodejs/node/commit/a7c21759d9)] - **doc**: fix buf.readUIntBE,…
|
/third_party/boost/libs/math/doc/graphs/hypergeometric_1f1/ |
D | plotlyjs-bundle.js | 1 …=this[t],i=1,a=0;++a<e&&(i*=256);)n+=this[t+a]*i;return n},s.prototype.readUIntBE=function(t,e,r){…
|