Searched defs:LASTLITERALS (Results 1 - 1 of 1) sorted by relevance

/external/lz4/lib/
H A Dlz4.c301 #define LASTLITERALS 5 macro
521 const BYTE* const matchlimit = iend - LASTLITERALS;
602 if ((outputLimited) && (unlikely(op + litLength + (2 + 1 + LASTLITERALS) + (litLength/255) > olimit)))
647 if ((outputLimited) && (unlikely(op + (1 + LASTLITERALS) + (matchLength>>8) > olimit)))
1005 if (((endOnInput) && ((cpy>(partialDecoding?oexit:oend-MFLIMIT)) || (ip+length>iend-(2+1+LASTLITERALS))) )
1037 if ((endOnInput) && (ip > iend-LASTLITERALS)) goto _output_error;
1048 if (unlikely(op+length > oend-LASTLITERALS)) goto _output_error; /* doesn't respect parsing restriction */
1095 if (cpy > oend-LASTLITERALS) goto _output_error; /* Error : last LASTLITERALS bytes must be literals */

Completed in 200 milliseconds