Searched defs:_bufferBase (Results 1 - 3 of 3) sorted by relevance

/external/lzma/CPP/7zip/Common/
H A DInBuffer.h21 Byte *_bufferBase; member in class:CInBuffer
77 UInt64 GetProcessedSize() const { return _processedSize + (_buffer - _bufferBase); }
/external/lzma/CS/7zip/Compress/LZ/
H A DLzInWindow.cs9 public Byte[] _bufferBase = null; // pointer to buffer with data field in class:SevenZip.Compression.LZ.InWindow
35 _bufferBase[i] = _bufferBase[offset + i];
48 int numReadBytes = _stream.Read(_bufferBase, (int)(_bufferOffset + _streamPos), size);
65 void Free() { _bufferBase = null; }
72 if (_bufferBase == null || _blockSize != blockSize)
76 _bufferBase = new Byte[_blockSize];
105 public Byte GetIndexByte(Int32 index) { return _bufferBase[_bufferOffset + _pos + index]; }
118 for (i = 0; i < limit && _bufferBase[pby + i] == _bufferBase[pb
[all...]
/external/lzma/Java/SevenZip/Compression/LZ/
H A DInWindow.java9 public byte[] _bufferBase; // pointer to buffer with data field in class:InWindow
35 _bufferBase[i] = _bufferBase[offset + i];
48 int numReadBytes = _stream.read(_bufferBase, _bufferOffset + _streamPos, size);
65 void Free() { _bufferBase = null; }
72 if (_bufferBase == null || _blockSize != blockSize)
76 _bufferBase = new byte[_blockSize];
105 public byte GetIndexByte(int index) { return _bufferBase[_bufferOffset + _pos + index]; }
118 for (i = 0; i < limit && _bufferBase[pby + i] == _bufferBase[pb
[all...]

Completed in 1031 milliseconds