Home
last modified time | relevance | path

Searched refs:MFLIMIT (Results 1 – 2 of 2) sorted by relevance

/external/lz4/lib/
Dlz4.c302 #define MFLIMIT (COPYLENGTH+MINMATCH) macro
303 static const int LZ4_minLength = (MFLIMIT+1);
421 static const int LZ4_64Klimit = ((64 KB) + (MFLIMIT-1));
520 const BYTE* const mflimit = iend - MFLIMIT; in LZ4_compress_generic()
976 …if ((partialDecoding) && (oexit> oend-MFLIMIT)) oexit = oend-MFLIMIT; /* t… in LZ4_decompress_generic()
1005 …if (((endOnInput) && ((cpy>(partialDecoding?oexit:oend-MFLIMIT)) || (ip+length>iend-(2+1+LASTLITER… in LZ4_decompress_generic()
Dlz4hc.c344 const BYTE* const mflimit = iend - MFLIMIT; in LZ4HC_compress_generic()