Home | History | Annotate | Download | only in lib

Lines Matching refs:litLength

812         {   unsigned const litLength = (unsigned)(ip - anchor);
815 (unlikely(op + litLength + (2 + 1 + LASTLITERALS) + (litLength/255) > olimit)))
818 (unlikely(op + (litLength+240)/255 /* litlen */ + litLength /* literals */ + 2 /* offset */ + 1 /* token */ + MFLIMIT - MINMATCH /* min last literals so last match is <= end - MFLIMIT */ > olimit))) {
822 if (litLength >= RUN_MASK) {
823 int len = (int)litLength-RUN_MASK;
828 else *token = (BYTE)(litLength<<ML_BITS);
831 LZ4_wildCopy(op, anchor, op+litLength);
832 op+=litLength;
834 (int)(anchor-(const BYTE*)source), litLength, (int)(ip-(const BYTE*)source));