Home | History | Annotate | Download | only in LZMA

Lines Matching refs:matchByte

89 			public void EncodeMatched(SevenZip.Compression.RangeCoder.Encoder rangeEncoder, byte matchByte, byte symbol) throws IOException

99 int matchBit = ((matchByte >> i) & 1);
108 public int GetPrice(boolean matchMode, byte matchByte, byte symbol)
117 int matchBit = (matchByte >> i) & 1;
596 byte matchByte = _matchFinder.GetIndexByte(0 - _repDistances[0] - 1 - 1);
598 if (lenMain < 2 && currentByte != matchByte && repLens[repMaxIndex] < 2)
609 _literalEncoder.GetSubCoder(position, _previousByte).GetPrice(!Base.StateIsCharState(_state), matchByte, currentByte);
615 if (matchByte == currentByte)
803 matchByte = _matchFinder.GetIndexByte(0 - reps[0] - 1 - 1);
810 GetPrice(!Base.StateIsCharState(state), matchByte, currentByte);
826 if (matchByte == currentByte &&
847 if (!nextIsChar && matchByte != currentByte)
1120 byte matchByte = _matchFinder.GetIndexByte((int)(0 - _repDistances[0] - 1 - _additionalOffset));
1121 subCoder.EncodeMatched(_rangeEncoder, matchByte, curByte);