Searched refs:_matchFinder (Results 1 – 2 of 2) sorted by relevance
/external/lzma/Java/SevenZip/Compression/LZMA/ |
D | Encoder.java | 304 SevenZip.Compression.LZ.BinTree _matchFinder = null; field in Encoder 364 if (_matchFinder == null) in Create() 371 _matchFinder = bt; in Create() 377 _matchFinder.Create(_dictionarySize, kNumOpts, _numFastBytes, Base.kMatchMaxLen + 1); in Create() 434 _numDistancePairs = _matchFinder.GetMatches(_matchDistances); in ReadMatchDistances() 439 lenRes += _matchFinder.GetMatchLen((int)lenRes - 1, _matchDistances[_numDistancePairs - 1], in ReadMatchDistances() 450 _matchFinder.Skip(num); in MovePos() 562 int numAvailableBytes = _matchFinder.GetNumAvailableBytes() + 1; in GetOptimum() 576 repLens[i] = _matchFinder.GetMatchLen(0 - 1, reps[i], Base.kMatchMaxLen); in GetOptimum() 595 byte currentByte = _matchFinder.GetIndexByte(0 - 1); in GetOptimum() [all …]
|
/external/lzma/CS/7zip/Compress/LZMA/ |
D | LzmaEncoder.cs | 304 LZ.IMatchFinder _matchFinder = null; field in SevenZip.Compression.LZMA.Encoder 364 if (_matchFinder == null) in Create() 371 _matchFinder = bt; in Create() 377 _matchFinder.Create(_dictionarySize, kNumOpts, _numFastBytes, Base.kMatchMaxLen + 1); in Create() 434 numDistancePairs = _matchFinder.GetMatches(_matchDistances); in ReadMatchDistances() 439 lenRes += _matchFinder.GetMatchLen((int)lenRes - 1, _matchDistances[numDistancePairs - 1], in ReadMatchDistances() 450 _matchFinder.Skip(num); in MovePos() 562 UInt32 numAvailableBytes = _matchFinder.GetNumAvailableBytes() + 1; in GetOptimum() 576 repLens[i] = _matchFinder.GetMatchLen(0 - 1, reps[i], Base.kMatchMaxLen); in GetOptimum() 595 Byte currentByte = _matchFinder.GetIndexByte(0 - 1); in GetOptimum() [all …]
|