Searched refs:readIntBE (Results 1 – 13 of 13) sorted by relevance
/third_party/node/test/parallel/ |
D | test-buffer-readint.js | 120 assert.strictEqual(buffer.readIntBE(0, 1), 0x01); 122 assert.strictEqual(buffer.readIntBE(0, 3), 0x010203); 124 assert.strictEqual(buffer.readIntBE(0, 5), 0x0102030405); 126 assert.strictEqual(buffer.readIntBE(0, 6), 0x010203040506); 128 assert.strictEqual(buffer.readIntBE(1, 6), 0x020304050607); 130 assert.strictEqual(buffer.readIntBE(2, 6), 0x030405060708);
|
D | test-buffer-alloc.js | 941 assert.strictEqual(buf.readIntBE(0, 3), 0x123456); 951 assert.strictEqual(buf.readIntBE(0, 3), -0x123456); 961 assert.strictEqual(buf.readIntBE(0, 3), -0x123400); 971 assert.strictEqual(buf.readIntBE(0, 3), -0x120000); 991 assert.strictEqual(buf.readIntBE(0, 5), 0x1234567890); 1001 assert.strictEqual(buf.readIntBE(0, 5), -0x1234567890); 1011 assert.strictEqual(buf.readIntBE(0, 5), -0x0012000000);
|
D | test-http2-max-invalid-frames.js | 41 settingsFrameLength = inbuf.readIntBE(0, 3);
|
D | test-http2-reset-flood.js | 46 settingsFrameLength = inbuf.readIntBE(0, 3);
|
/third_party/node/deps/npm/node_modules/string_decoder/node_modules/safe-buffer/ |
D | index.d.ts | 18 readIntBE(offset: number, byteLength: number, noAssert?: boolean): number;
|
/third_party/node/deps/npm/node_modules/safe-buffer/ |
D | index.d.ts | 18 readIntBE(offset: number, byteLength: number, noAssert?: boolean): number;
|
/third_party/node/deps/npm/node_modules/npm-registry-fetch/node_modules/safe-buffer/ |
D | index.d.ts | 18 readIntBE(offset: number, byteLength: number, noAssert?: boolean): number;
|
/third_party/node/deps/npm/node_modules/tar/node_modules/safe-buffer/ |
D | index.d.ts | 18 readIntBE(offset: number, byteLength: number, noAssert?: boolean): number;
|
/third_party/node/lib/internal/ |
D | buffer.js | 428 function readIntBE(offset, byteLength) { function 994 proto.readIntBE = readIntBE;
|
/third_party/jsframework/runtime/main/extend/systemplugin/napi/ |
D | ohos_buffer.js | 243 this.readIntBE = function (...args) { method in mockBuffer.BufferClass
|
/third_party/typescript/src/compiler/ |
D | sys.ts | 1028 readIntBE(offset: number, byteLength: number): number; method
|
/third_party/node/doc/api/ |
D | buffer.md | 1810 ### `buf.readIntBE(offset, byteLength)` 1833 console.log(buf.readIntBE(0, 6).toString(16)); 1835 console.log(buf.readIntBE(1, 6).toString(16)); 1837 console.log(buf.readIntBE(1, 0).toString(16));
|
/third_party/node/doc/changelogs/ |
D | CHANGELOG_IOJS.md | 2585 …iteIntBE`, `buf.readUIntLE`, `buf.readUIntBE`, `buf.readIntLE` and `buf.readIntBE` methods that re…
|