Home
last modified time | relevance | path

Searched refs:readUIntLE (Results 1 – 13 of 13) sorted by relevance

/third_party/node/test/parallel/
Dtest-buffer-readuint.js87 assert.strictEqual(buffer.readUIntLE(0, 1), 0x01);
89 assert.strictEqual(buffer.readUIntLE(0, 3), 0x030201);
91 assert.strictEqual(buffer.readUIntLE(0, 5), 0x0504030201);
93 assert.strictEqual(buffer.readUIntLE(0, 6), 0x060504030201);
95 assert.strictEqual(buffer.readUIntLE(1, 6), 0x070605040302);
97 assert.strictEqual(buffer.readUIntLE(2, 6), 0x080706050403);
Dtest-buffer-alloc.js926 assert.strictEqual(buf.readUIntLE(0, 3), 0x123456);
976 assert.strictEqual(buf.readUIntLE(0, 5), 0x1234567890);
/third_party/node/deps/npm/node_modules/string_decoder/node_modules/safe-buffer/
Dindex.d.ts15 readUIntLE(offset: number, byteLength: number, noAssert?: boolean): number;
/third_party/node/deps/npm/node_modules/safe-buffer/
Dindex.d.ts15 readUIntLE(offset: number, byteLength: number, noAssert?: boolean): number;
/third_party/node/deps/npm/node_modules/npm-registry-fetch/node_modules/safe-buffer/
Dindex.d.ts15 readUIntLE(offset: number, byteLength: number, noAssert?: boolean): number;
/third_party/node/deps/npm/node_modules/tar/node_modules/safe-buffer/
Dindex.d.ts15 readUIntLE(offset: number, byteLength: number, noAssert?: boolean): number;
/third_party/node/lib/internal/
Dbuffer.js167 function readUIntLE(offset, byteLength) { function
976 proto.readUIntLE = readUIntLE;
983 proto.readUintLE = readUIntLE;
/third_party/jsframework/runtime/main/extend/systemplugin/napi/
Dohos_buffer.js283 this.readUIntLE = function (...args) { method in mockBuffer.BufferClass
/third_party/typescript/src/compiler/
Dsys.ts1025 readUIntLE(offset: number, byteLength: number): number; method
/third_party/node/doc/api/
Dbuffer.md2058 ### `buf.readUIntLE(offset, byteLength)`
2086 console.log(buf.readUIntLE(0, 6).toString(16));
/third_party/node/doc/changelogs/
DCHANGELOG_IOJS.md2585 * Added `buf.writeUIntLE`, `buf.writeUIntBE`, `buf.writeIntLE`, `buf.writeIntBE`, `buf.readUIntLE`,…
DCHANGELOG_V7.md1343 …com/nodejs/node/commit/d4c888df88)] - **test**: basic functionality of readUIntLE() (larissayvette…
DCHANGELOG_V6.md2697 …com/nodejs/node/commit/c9ca82e58e)] - **test**: basic functionality of readUIntLE() (larissayvette…
3720 …com/nodejs/node/commit/a7c21759d9)] - **doc**: fix buf.readUIntBE, buf.readUIntLE examples (David …