• Home
  • Raw
  • Download

Lines Matching refs:_matchFinder

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()
596 Byte matchByte = _matchFinder.GetIndexByte((Int32)(0 - _repDistances[0] - 1 - 1)); in GetOptimum()
802 currentByte = _matchFinder.GetIndexByte(0 - 1); in GetOptimum()
803 matchByte = _matchFinder.GetIndexByte((Int32)(0 - reps[0] - 1 - 1)); in GetOptimum()
809 _literalEncoder.GetSubCoder(position, _matchFinder.GetIndexByte(0 - 2)). in GetOptimum()
839 UInt32 numAvailableBytesFull = _matchFinder.GetNumAvailableBytes() + 1; in GetOptimum()
851 UInt32 lenTest2 = _matchFinder.GetMatchLen(0, reps[0], t); in GetOptimum()
883 UInt32 lenTest = _matchFinder.GetMatchLen(0 - 1, reps[repIndex], numAvailableBytes); in GetOptimum()
911 UInt32 lenTest2 = _matchFinder.GetMatchLen((Int32)lenTest, reps[repIndex], t); in GetOptimum()
921 _matchFinder.GetIndexByte((Int32)lenTest - 1 - 1)).GetPrice(true, in GetOptimum()
922 _matchFinder.GetIndexByte((Int32)((Int32)lenTest - 1 - (Int32)(reps[repIndex] + 1))), in GetOptimum()
923 _matchFinder.GetIndexByte((Int32)lenTest - 1)); in GetOptimum()
986 UInt32 lenTest2 = _matchFinder.GetMatchLen((Int32)lenTest, curBack, t); in GetOptimum()
995 _matchFinder.GetIndexByte((Int32)lenTest - 1 - 1)). in GetOptimum()
997 _matchFinder.GetIndexByte((Int32)lenTest - (Int32)(curBack + 1) - 1), in GetOptimum()
998 _matchFinder.GetIndexByte((Int32)lenTest - 1)); in GetOptimum()
1071 _matchFinder.SetStream(_inStream); in CodeOneBlock()
1072 _matchFinder.Init(); in CodeOneBlock()
1076 _matchFinder.Skip(_trainSize); in CodeOneBlock()
1087 if (_matchFinder.GetNumAvailableBytes() == 0) in CodeOneBlock()
1097 Byte curByte = _matchFinder.GetIndexByte((Int32)(0 - _additionalOffset)); in CodeOneBlock()
1103 if (_matchFinder.GetNumAvailableBytes() == 0) in CodeOneBlock()
1118 Byte curByte = _matchFinder.GetIndexByte((Int32)(0 - _additionalOffset)); in CodeOneBlock()
1122 … Byte matchByte = _matchFinder.GetIndexByte((Int32)(0 - _repDistances[0] - 1 - _additionalOffset)); in CodeOneBlock()
1202 _previousByte = _matchFinder.GetIndexByte((Int32)(len - 1 - _additionalOffset)); in CodeOneBlock()
1215 if (_matchFinder.GetNumAvailableBytes() == 0) in CodeOneBlock()
1233 if (_matchFinder != null && _needReleaseMFStream) in ReleaseMFStream()
1235 _matchFinder.ReleaseStream(); in ReleaseMFStream()
1405 if (_matchFinder != null && matchFinderIndexPrev != _matchFinderType) in SetCoderProperties()
1408 _matchFinder = null; in SetCoderProperties()