Searched defs:_streamPos (Results 1 - 5 of 5) sorted by path

/external/lzma/CPP/7zip/Common/
H A DOutBuffer.h23 UInt32 _streamPos; member in class:COutBuffer
/external/lzma/CS/7zip/Compress/LZ/
H A DLzInWindow.cs12 bool _streamEndWasReached; // if (true) then _streamPos shows real end of stream
22 public UInt32 _streamPos; // offset (from _buffer) of first not read byte from Stream field in class:SevenZip.Compression.LZ.InWindow
31 UInt32 numBytes = (UInt32)(_bufferOffset) + _streamPos - offset;
45 int size = (int)((0 - _bufferOffset) + _blockSize - _streamPos);
48 int numReadBytes = _stream.Read(_bufferBase, (int)(_bufferOffset + _streamPos), size);
51 _posLimit = _streamPos;
59 _streamPos += (UInt32)numReadBytes;
60 if (_streamPos >= _pos + _keepSizeAfter)
61 _posLimit = _streamPos - _keepSizeAfter;
88 _streamPos
[all...]
H A DLzOutWindow.cs10 uint _streamPos; field in class:SevenZip.Compression.LZ.OutWindow
24 _streamPos = 0;
33 _streamPos = 0;
45 _streamPos = _pos = 0;
56 _streamPos += (uint)numReadBytes;
58 _streamPos = _pos = 0;
71 uint size = _pos - _streamPos;
74 _stream.Write(_buffer, (int)_streamPos, (int)size);
77 _streamPos = _pos;
/external/lzma/Java/SevenZip/Compression/LZ/
H A DInWindow.java12 boolean _streamEndWasReached; // if (true) then _streamPos shows real end of stream
22 public int _streamPos; // offset (from _buffer) of first not read byte from Stream field in class:InWindow
31 int numBytes = _bufferOffset + _streamPos - offset;
45 int size = (0 - _bufferOffset) + _blockSize - _streamPos;
48 int numReadBytes = _stream.read(_bufferBase, _bufferOffset + _streamPos, size);
51 _posLimit = _streamPos;
59 _streamPos += numReadBytes;
60 if (_streamPos >= _pos + _keepSizeAfter)
61 _posLimit = _streamPos - _keepSizeAfter;
88 _streamPos
[all...]
H A DOutWindow.java12 int _streamPos; field in class:OutWindow
21 _streamPos = 0;
40 _streamPos = 0;
47 int size = _pos - _streamPos;
50 _stream.write(_buffer, _streamPos, size);
53 _streamPos = _pos;

Completed in 224 milliseconds