Searched refs:readUInt32LE (Results 1 – 13 of 13) sorted by relevance
78 assert.strictEqual(data.readUInt32LE(0), 0x56426532);79 assert.strictEqual(data.readUInt32LE(1), 0x23564265);80 assert.strictEqual(data.readUInt32LE(2), 0xff235642);
177 return this.readUInt32LE(offset);214 function readUInt32LE(offset = 0) { function977 proto.readUInt32LE = readUInt32LE;984 proto.readUint32LE = readUInt32LE;
22 readUInt32LE(offset: number, noAssert?: boolean): number;
259 readUInt32LE(offset?: number): number;
369 readUInt32LE(offset) { method in SmartBuffer370 return this._readNumberValue(Buffer.prototype.readUInt32LE, 4, offset);
273 this.readUInt32LE = function (...args) { method in mockBuffer.BufferClass
179 * readUInt32LE
284 ### buff.readUInt32LE([offset])
1032 readUInt32LE(offset: number): number; method
1993 ### `buf.readUInt32LE([offset])`2018 console.log(buf.readUInt32LE(0).toString(16));2020 console.log(buf.readUInt32LE(1).toString(16));