Home
last modified time | relevance | path

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

/openbmc/u-boot/lib/
H A 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()
/openbmc/linux/lib/lz4/
H A Dlz4_compress.c42 static const int LZ4_minLength = (MFLIMIT + 1);
43 static const int LZ4_64Klimit = ((64 * KB) + (MFLIMIT - 1));
197 const BYTE * const mflimit = iend - MFLIMIT; in LZ4_compress_generic()
535 const BYTE * const mflimit = iend - MFLIMIT; in LZ4_compress_destSize_generic()
H A Dlz4defs.h79 #define MFLIMIT (WILDCOPYLENGTH + MINMATCH) macro
H A Dlz4_decompress.c222 LZ4_STATIC_ASSERT(MFLIMIT >= WILDCOPYLENGTH); in LZ4_decompress_generic()
224 if (((endOnInput) && ((cpy > oend - MFLIMIT) in LZ4_decompress_generic()
H A Dlz4hc_compress.c351 const BYTE * const mflimit = iend - MFLIMIT; in LZ4HC_compress_generic()