Home
last modified time | relevance | path

Searched refs:_streamPos (Results 1 - 8 of 8) sorted by relevance

/third_party/lzma/CPP/7zip/Common/
H A DOutBuffer.cpp30 _streamPos = 0; in Init()
42 UInt64 res = _processedSize + _pos - _streamPos; in GetProcessedSize()
43 if (_streamPos > _pos) in GetProcessedSize()
51 // _streamPos < _bufSize in FlushPart()
52 UInt32 size = (_streamPos >= _pos) ? (_bufSize - _streamPos) : (_pos - _streamPos); in FlushPart()
59 memcpy(_buf2, _buf + _streamPos, size); in FlushPart()
70 result = _stream->Write(_buf + _streamPos, size, &processedSize); in FlushPart()
73 _streamPos in FlushPart()
[all...]
H A DOutBuffer.h23 UInt32 _streamPos; member in COutBuffer
/third_party/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 InWindow
31 int numBytes = _bufferOffset + _streamPos - offset; in MoveBlock()
45 int size = (0 - _bufferOffset) + _blockSize - _streamPos; in ReadBlock()
48 int numReadBytes = _stream.read(_bufferBase, _bufferOffset + _streamPos, size); in ReadBlock()
51 _posLimit = _streamPos; in ReadBlock()
59 _streamPos += numReadBytes; in ReadBlock()
60 if (_streamPos >= _pos + _keepSizeAfter) in ReadBlock()
61 _posLimit = _streamPos - _keepSizeAfter; in ReadBlock()
88 _streamPos in Init()
[all...]
H A DOutWindow.java12 int _streamPos; field in OutWindow
21 _streamPos = 0; in Create()
40 _streamPos = 0; in Init()
47 int size = _pos - _streamPos; in Flush()
50 _stream.write(_buffer, _streamPos, size); in Flush()
53 _streamPos = _pos; in Flush()
H A DBinTree.java121 if (_pos + _matchMaxLen <= _streamPos) in GetMatches()
125 lenLimit = _streamPos - _pos; in GetMatches()
257 if (_pos + _matchMaxLen <= _streamPos) in Skip()
261 lenLimit = _streamPos - _pos; in Skip()
/third_party/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 SevenZip.Compression.LZ.InWindow
31 UInt32 numBytes = (UInt32)(_bufferOffset) + _streamPos - offset; in MoveBlock()
45 int size = (int)((0 - _bufferOffset) + _blockSize - _streamPos); in ReadBlock()
48 int numReadBytes = _stream.Read(_bufferBase, (int)(_bufferOffset + _streamPos), size); in ReadBlock()
51 _posLimit = _streamPos; in ReadBlock()
59 _streamPos += (UInt32)numReadBytes; in ReadBlock()
60 if (_streamPos >= _pos + _keepSizeAfter) in ReadBlock()
61 _posLimit = _streamPos - _keepSizeAfter; in ReadBlock()
88 _streamPos in Init()
[all...]
H A DLzOutWindow.cs10 uint _streamPos; field in SevenZip.Compression.LZ.OutWindow
24 _streamPos = 0; in Create()
33 _streamPos = 0; in Init()
45 _streamPos = _pos = 0; in Train()
56 _streamPos += (uint)numReadBytes; in Train()
58 _streamPos = _pos = 0; in Train()
71 uint size = _pos - _streamPos; in Flush()
74 _stream.Write(_buffer, (int)_streamPos, (int)size); in Flush()
77 _streamPos = _pos; in Flush()
H A DLzBinTree.cs121 if (_pos + _matchMaxLen <= _streamPos) in GetMatches()
125 lenLimit = _streamPos - _pos; in GetMatches()
257 if (_pos + _matchMaxLen <= _streamPos) in Skip()
261 lenLimit = _streamPos - _pos; in Skip()

Completed in 4 milliseconds