Searched refs:writeUInt32LE (Results 1 – 12 of 12) sorted by relevance
/third_party/node/test/parallel/ |
D | test-buffer-writeuint.js | 113 data.writeUInt32LE(value, 0); 116 data.writeUInt32LE(value, 1); 119 data.writeUInt32LE(value, 2);
|
D | test-buffer-arraybuffer.js | 27 buf.writeUInt32LE(0xF00, 0);
|
D | test-buffer-alloc.js | 838 assert.strictEqual(b.writeUInt32LE(0, 0), 4);
|
/third_party/node/deps/npm/node_modules/iconv-lite/encodings/ |
D | utf32.js | 35 var write32 = this.isLE ? dst.writeUInt32LE : dst.writeUInt32BE; 89 buf.writeUInt32LE(this.highSurrogate, 0);
|
/third_party/node/deps/npm/node_modules/smart-buffer/build/ |
D | smartbuffer.js | 488 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/ |
D | buffer-write.js | 59 writeUInt32LE: UINT32, property
|
/third_party/node/lib/internal/ |
D | buffer.js | 706 function writeUInt32LE(value, offset = 0) { function 1002 proto.writeUInt32LE = writeUInt32LE; 1009 proto.writeUint32LE = writeUInt32LE;
|
/third_party/jsframework/runtime/main/extend/systemplugin/napi/ |
D | ohos_buffer.js | 418 this.writeUInt32LE = function (...args) { method in mockBuffer.BufferClass
|
/third_party/node/deps/npm/node_modules/buffer/ |
D | index.js | 1469 Buffer.prototype.writeUInt32LE = function writeUInt32LE (value, offset, noAssert) { method in Buffer
|
/third_party/typescript/src/compiler/ |
D | sys.ts | 1298 writeUInt32LE(value: number, offset: number): number; method
|
/third_party/node/doc/api/ |
D | buffer.md | 4778 ### `buf.writeUInt32LE(value[, offset])` 4810 buf.writeUInt32LE(0xfeedface, 0); 4821 buf.writeUInt32LE(0xfeedface, 0);
|
/third_party/node/deps/corepack/dist/lib/ |
D | corepack.cjs | 7200 writeUInt32LE(value, offset) { 7201 return this._writeNumberValue(Buffer.prototype.writeUInt32LE, 4, value, offset); 7212 return this._insertNumberValue(Buffer.prototype.writeUInt32LE, 4, value, offset);
|