Searched refs:LASTLITERALS (Results 1 – 2 of 2) sorted by relevance
301 #define LASTLITERALS 5 macro521 const BYTE* const matchlimit = iend - LASTLITERALS; in LZ4_compress_generic()602 …if ((outputLimited) && (unlikely(op + litLength + (2 + 1 + LASTLITERALS) + (litLength/255) > olimi… in LZ4_compress_generic()647 if ((outputLimited) && (unlikely(op + (1 + LASTLITERALS) + (matchLength>>8) > olimit))) in LZ4_compress_generic()1005 …ndOnInput) && ((cpy>(partialDecoding?oexit:oend-MFLIMIT)) || (ip+length>iend-(2+1+LASTLITERALS))) ) in LZ4_decompress_generic()1037 if ((endOnInput) && (ip > iend-LASTLITERALS)) goto _output_error; in LZ4_decompress_generic()1048 …if (unlikely(op+length > oend-LASTLITERALS)) goto _output_error; /* doesn't respect parsing rest… in LZ4_decompress_generic()1095 …if (cpy > oend-LASTLITERALS) goto _output_error; /* Error : last LASTLITERALS bytes must be lit… in LZ4_decompress_generic()
305 …if ((limitedOutputBuffer) && ((*op + (length>>8) + length + (2 + 1 + LASTLITERALS)) > oend)) retur… in LZ4HC_encodeSequence()318 …if ((limitedOutputBuffer) && (*op + (length>>8) + (1 + LASTLITERALS) > oend)) return 1; /* Check… in LZ4HC_encodeSequence()345 const BYTE* const matchlimit = (iend - LASTLITERALS); in LZ4HC_compress_generic()