• Home
  • Raw
  • Download

Lines Matching refs:_matchFinder

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()
596 byte matchByte = _matchFinder.GetIndexByte(0 - _repDistances[0] - 1 - 1); in GetOptimum()
802 currentByte = _matchFinder.GetIndexByte(0 - 1); in GetOptimum()
803 matchByte = _matchFinder.GetIndexByte(0 - reps[0] - 1 - 1); in GetOptimum()
809 _literalEncoder.GetSubCoder(position, _matchFinder.GetIndexByte(0 - 2)). in GetOptimum()
839 int numAvailableBytesFull = _matchFinder.GetNumAvailableBytes() + 1; in GetOptimum()
851 int lenTest2 = _matchFinder.GetMatchLen(0, reps[0], t); in GetOptimum()
883 int lenTest = _matchFinder.GetMatchLen(0 - 1, reps[repIndex], numAvailableBytes); in GetOptimum()
911 int lenTest2 = _matchFinder.GetMatchLen(lenTest, reps[repIndex], t); in GetOptimum()
921 _matchFinder.GetIndexByte(lenTest - 1 - 1)).GetPrice(true, in GetOptimum()
922 _matchFinder.GetIndexByte(lenTest - 1 - (reps[repIndex] + 1)), in GetOptimum()
923 _matchFinder.GetIndexByte(lenTest - 1)); in GetOptimum()
986 int lenTest2 = _matchFinder.GetMatchLen(lenTest, curBack, t); in GetOptimum()
995 _matchFinder.GetIndexByte(lenTest - 1 - 1)). in GetOptimum()
997 _matchFinder.GetIndexByte(lenTest - (curBack + 1) - 1), in GetOptimum()
998 _matchFinder.GetIndexByte(lenTest - 1)); in GetOptimum()
1071 _matchFinder.SetStream(_inStream); in CodeOneBlock()
1072 _matchFinder.Init(); in CodeOneBlock()
1085 if (_matchFinder.GetNumAvailableBytes() == 0) in CodeOneBlock()
1095 byte curByte = _matchFinder.GetIndexByte(0 - _additionalOffset); in CodeOneBlock()
1101 if (_matchFinder.GetNumAvailableBytes() == 0) in CodeOneBlock()
1116 byte curByte = _matchFinder.GetIndexByte((int)(0 - _additionalOffset)); in CodeOneBlock()
1120 … byte matchByte = _matchFinder.GetIndexByte((int)(0 - _repDistances[0] - 1 - _additionalOffset)); in CodeOneBlock()
1200 _previousByte = _matchFinder.GetIndexByte(len - 1 - _additionalOffset); in CodeOneBlock()
1213 if (_matchFinder.GetNumAvailableBytes() == 0) in CodeOneBlock()
1231 if (_matchFinder != null && _needReleaseMFStream) in ReleaseMFStream()
1233 _matchFinder.ReleaseStream(); in ReleaseMFStream()
1389 if (_matchFinder != null && matchFinderIndexPrev != _matchFinderType) in SetMatchFinder()
1392 _matchFinder = null; in SetMatchFinder()