Home
last modified time | relevance | path

Searched refs:_numFastBytes (Results 1 – 2 of 2) sorted by relevance

/external/lzma/Java/SevenZip/Compression/LZMA/
DEncoder.java326 int _numFastBytes = kNumFastBytesDefault; field in Encoder
375 if (_dictionarySize == _dictionarySizePrev && _numFastBytesPrev == _numFastBytes) in Create()
377 _matchFinder.Create(_dictionarySize, kNumOpts, _numFastBytes, Base.kMatchMaxLen + 1); in Create()
379 _numFastBytesPrev = _numFastBytes; in Create()
438 if (lenRes == _numFastBytes) in ReadMatchDistances()
580 if (repLens[repMaxIndex] >= _numFastBytes) in GetOptimum()
588 if (lenMain >= _numFastBytes) in GetOptimum()
704 if (newLen >= _numFastBytes) in GetOptimum()
845 if (numAvailableBytes > _numFastBytes) in GetOptimum()
846 numAvailableBytes = _numFastBytes; in GetOptimum()
[all …]
/external/lzma/CS/7zip/Compress/LZMA/
DLzmaEncoder.cs326 UInt32 _numFastBytes = kNumFastBytesDefault; field in SevenZip.Compression.LZMA.Encoder
375 if (_dictionarySize == _dictionarySizePrev && _numFastBytesPrev == _numFastBytes) in Create()
377 _matchFinder.Create(_dictionarySize, kNumOpts, _numFastBytes, Base.kMatchMaxLen + 1); in Create()
379 _numFastBytesPrev = _numFastBytes; in Create()
438 if (lenRes == _numFastBytes) in ReadMatchDistances()
580 if (repLens[repMaxIndex] >= _numFastBytes) in GetOptimum()
588 if (lenMain >= _numFastBytes) in GetOptimum()
704 if (newLen >= _numFastBytes) in GetOptimum()
845 if (numAvailableBytes > _numFastBytes) in GetOptimum()
846 numAvailableBytes = _numFastBytes; in GetOptimum()
[all …]