Home
last modified time | relevance | path

Searched refs:writeInt16LE (Results 1 – 9 of 9) sorted by relevance

/third_party/node/test/parallel/
Dtest-buffer-writeint.js56 buffer.writeInt16LE(0x0023, 2);
60 buffer.writeInt16LE(-5, 2);
64 buffer.writeInt16LE(-1679, 2);
72 buffer.writeInt16LE(0x7fff, 0);
73 buffer.writeInt16LE(-0x8000, 2);
/third_party/node/deps/npm/node_modules/smart-buffer/build/
Dsmartbuffer.js220 writeInt16LE(value, offset) { method in SmartBuffer
221 return this._writeNumberValue(Buffer.prototype.writeInt16LE, 2, value, offset);
232 return this._insertNumberValue(Buffer.prototype.writeInt16LE, 2, value, offset);
/third_party/node/benchmark/buffers/
Dbuffer-write.js52 writeInt16LE: INT16, property
/third_party/node/lib/internal/
Dbuffer.js866 function writeInt16LE(value, offset = 0) { function
1017 proto.writeInt16LE = writeInt16LE;
/third_party/jsframework/runtime/main/extend/systemplugin/napi/
Dohos_buffer.js373 this.writeInt16LE = function (...args) { method in mockBuffer.BufferClass
/third_party/node/deps/npm/node_modules/buffer/
Dindex.js1599 Buffer.prototype.writeInt16LE = function writeInt16LE (value, offset, noAssert) { method in Buffer
/third_party/typescript/src/compiler/
Dsys.ts1301 writeInt16LE(value: number, offset: number): number; method
/third_party/node/doc/api/
Dbuffer.md4352 ### `buf.writeInt16LE(value[, offset])`
4379 buf.writeInt16LE(0x0304, 0);
4390 buf.writeInt16LE(0x0304, 0);
/third_party/node/deps/corepack/dist/lib/
Dcorepack.cjs6932 writeInt16LE(value, offset) {
6933 return this._writeNumberValue(Buffer.prototype.writeInt16LE, 2, value, offset);
6944 return this._insertNumberValue(Buffer.prototype.writeInt16LE, 2, value, offset);