Home
last modified time | relevance | path

Searched refs:writeUInt32LE (Results 1 – 12 of 12) sorted by relevance

/third_party/node/test/parallel/
Dtest-buffer-writeuint.js113 data.writeUInt32LE(value, 0);
116 data.writeUInt32LE(value, 1);
119 data.writeUInt32LE(value, 2);
Dtest-buffer-arraybuffer.js27 buf.writeUInt32LE(0xF00, 0);
Dtest-buffer-alloc.js838 assert.strictEqual(b.writeUInt32LE(0, 0), 4);
/third_party/node/deps/npm/node_modules/iconv-lite/encodings/
Dutf32.js35 var write32 = this.isLE ? dst.writeUInt32LE : dst.writeUInt32BE;
89 buf.writeUInt32LE(this.highSurrogate, 0);
/third_party/node/deps/npm/node_modules/smart-buffer/build/
Dsmartbuffer.js488 writeUInt32LE(value, offset) { method in SmartBuffer
489 return this._writeNumberValue(Buffer.prototype.writeUInt32LE, 4, value, offset);
500 return this._insertNumberValue(Buffer.prototype.writeUInt32LE, 4, value, offset);
/third_party/node/benchmark/buffers/
Dbuffer-write.js59 writeUInt32LE: UINT32, property
/third_party/node/lib/internal/
Dbuffer.js706 function writeUInt32LE(value, offset = 0) { function
1002 proto.writeUInt32LE = writeUInt32LE;
1009 proto.writeUint32LE = writeUInt32LE;
/third_party/jsframework/runtime/main/extend/systemplugin/napi/
Dohos_buffer.js418 this.writeUInt32LE = function (...args) { method in mockBuffer.BufferClass
/third_party/node/deps/npm/node_modules/buffer/
Dindex.js1469 Buffer.prototype.writeUInt32LE = function writeUInt32LE (value, offset, noAssert) { method in Buffer
/third_party/typescript/src/compiler/
Dsys.ts1298 writeUInt32LE(value: number, offset: number): number; method
/third_party/node/doc/api/
Dbuffer.md4778 ### `buf.writeUInt32LE(value[, offset])`
4810 buf.writeUInt32LE(0xfeedface, 0);
4821 buf.writeUInt32LE(0xfeedface, 0);
/third_party/node/deps/corepack/dist/lib/
Dcorepack.cjs7200 writeUInt32LE(value, offset) {
7201 return this._writeNumberValue(Buffer.prototype.writeUInt32LE, 4, value, offset);
7212 return this._insertNumberValue(Buffer.prototype.writeUInt32LE, 4, value, offset);