Home | History | Annotate | Download | only in LZMA

Lines Matching full:numavailablebytes

562 		int numAvailableBytes = _matchFinder.GetNumAvailableBytes() + 1;

563 if (numAvailableBytes < 2)
568 if (numAvailableBytes > Base.kMatchMaxLen)
569 numAvailableBytes = Base.kMatchMaxLen;
841 numAvailableBytes = numAvailableBytesFull;
843 if (numAvailableBytes < 2)
845 if (numAvailableBytes > _numFastBytes)
846 numAvailableBytes = _numFastBytes;
883 int lenTest = _matchFinder.GetMatchLen(0 - 1, reps[repIndex], numAvailableBytes);
951 if (newLen > numAvailableBytes)
953 newLen = numAvailableBytes;