Home
last modified time | relevance | path

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

/external/u-boot/lib/
Dlz4.c33 #define MFLIMIT (COPYLENGTH+MINMATCH) macro
34 static const int LZ4_minLength = (MFLIMIT+1);
101 …if ((partialDecoding) && (oexit> oend-MFLIMIT)) oexit = oend-MFLIMIT; /* t… in LZ4_decompress_generic()
130 …if (((endOnInput) && ((cpy>(partialDecoding?oexit:oend-MFLIMIT)) || (ip+length>iend-(2+1+LASTLITER… in LZ4_decompress_generic()
/external/lz4/lib/
Dlz4.c301 #define MFLIMIT 12 /* see ../doc/lz4_Block_format.md#parsing-restrictions */ macro
303 static const int LZ4_minLength = (MFLIMIT+1);
451 static const int LZ4_64Klimit = ((64 KB) + (MFLIMIT-1));
680 const BYTE* const mflimitPlusOne = iend - MFLIMIT + 1; in LZ4_compress_generic()
818 … litlen */ + litLength /* literals */ + 2 /* offset */ + 1 /* token */ + MFLIMIT - MINMATCH /* min… in LZ4_compress_generic()
847 …(op + 2 /* offset */ + 1 /* token */ + MFLIMIT - MINMATCH /* min last literals so last match is <=… in LZ4_compress_generic()
1509 LZ4_STATIC_ASSERT(MFLIMIT >= WILDCOPYLENGTH); in LZ4_decompress_generic()
1510 if ( ((endOnInput) && ((cpy>oend-MFLIMIT) || (ip+length>iend-(2+1+LASTLITERALS))) ) in LZ4_decompress_generic()
Dlz4hc.c496 const BYTE* const mflimit = iend - MFLIMIT; in LZ4HC_compress_hashChain()
1171 const BYTE* const mflimit = iend - MFLIMIT; in LZ4HC_compress_optimal()