HomeSort by relevance Sort by last modified time
    Searched defs:_streamPos (Results 1 - 5 of 5) sorted by null

  /external/lzma/CPP/7zip/Common/
OutBuffer.h 23 UInt32 _streamPos;
  /external/lzma/CS/7zip/Compress/LZ/
LzOutWindow.cs 10 uint _streamPos;
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;
LzInWindow.cs 12 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
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 = 0;
    [all...]
  /external/lzma/Java/SevenZip/Compression/LZ/
OutWindow.java 12 int _streamPos;
21 _streamPos = 0;
40 _streamPos = 0;
47 int size = _pos - _streamPos;
50 _stream.write(_buffer, _streamPos, size);
53 _streamPos = _pos;
InWindow.java 12 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
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 = 0;
    [all...]

Completed in 44 milliseconds