Home
last modified time | relevance | path

Searched refs:_writeOffset (Results 1 – 2 of 2) sorted by relevance

/third_party/node/deps/npm/node_modules/smart-buffer/build/
Dsmartbuffer.js17 this._writeOffset = 0;
881 … this.writeUInt8(0x00, typeof offset === 'number' ? offset + value.length : this._writeOffset);
888 this._writeOffset = 0;
926 return this._writeOffset;
937 this._writeOffset = offset;
999 let offsetVal = this._writeOffset;
1028 this._writeOffset += byteLength;
1033 this._writeOffset = Math.max(this._writeOffset, offsetVal + byteLength);
1037 this._writeOffset += byteLength;
1049 const offsetVal = typeof offset === 'number' ? offset : this._writeOffset;
[all …]
/third_party/node/deps/npm/node_modules/smart-buffer/typings/
Dsmartbuffer.d.ts14 private _writeOffset; property in SmartBuffer