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

  /external/lzma/CPP/7zip/Common/
OutBuffer.cpp 35 _streamPos = 0;
47 UInt64 res = _processedSize + _pos - _streamPos;
48 if (_streamPos > _pos)
56 // _streamPos < _bufferSize
57 UInt32 size = (_streamPos >= _pos) ? (_bufferSize - _streamPos) : (_pos - _streamPos);
64 memmove(_buffer2, _buffer + _streamPos, size);
75 result = _stream->Write(_buffer + _streamPos, size, &processedSize);
78 _streamPos += size;
    [all...]
OutBuffer.h 23 UInt32 _streamPos;
  /external/lzma/Java/SevenZip/Compression/LZ/
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...]
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;
BinTree.java 121 if (_pos + _matchMaxLen <= _streamPos)
125 lenLimit = _streamPos - _pos;
257 if (_pos + _matchMaxLen <= _streamPos)
261 lenLimit = _streamPos - _pos;
  /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...]
LzBinTree.cs 121 if (_pos + _matchMaxLen <= _streamPos)
125 lenLimit = _streamPos - _pos;
257 if (_pos + _matchMaxLen <= _streamPos)
261 lenLimit = _streamPos - _pos;

Completed in 44 milliseconds