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

/freebsd-13-stable/sys/contrib/openzfs/module/zfs/
H A Dlz4.c320 #define MFLIMIT (COPYLENGTH + MINMATCH) macro
321 #define MINLENGTH (MFLIMIT + 1)
480 const BYTE *const mflimit = iend - MFLIMIT;
651 #define LZ4_64KLIMIT ((1 << 16) + (MFLIMIT - 1))
671 const BYTE *const mflimit = iend - MFLIMIT;
/freebsd-13-stable/sys/cddl/contrib/opensolaris/common/lz4/
H A Dlz4.c328 #define MFLIMIT (COPYLENGTH + MINMATCH) macro
329 #define MINLENGTH (MFLIMIT + 1)
488 const BYTE *const mflimit = iend - MFLIMIT;
659 #define LZ4_64KLIMIT ((1 << 16) + (MFLIMIT - 1))
683 const BYTE *const mflimit = iend - MFLIMIT;
/freebsd-13-stable/contrib/subversion/subversion/libsvn_subr/lz4/
H A Dlz4.c277 #define MFLIMIT (WILDCOPYLENGTH+MINMATCH) macro
278 static const int LZ4_minLength = (MFLIMIT+1);
383 static const int LZ4_64Klimit = ((64 KB) + (MFLIMIT-1));
490 const BYTE* const mflimit = iend - MFLIMIT;
744 const BYTE* const mflimit = iend - MFLIMIT;
749 BYTE* const oMaxLit = op + targetDstSize - 2 /* offset */ - 8 /* because 8+MINMATCH==MFLIMIT */ - 1 /* token */;
1133 if ((partialDecoding) && (oexit > oend-MFLIMIT)) oexit = oend-MFLIMIT; /* targetOutputSize too high => decode everything */
1157 if ( ((endOnInput) && ((cpy>(partialDecoding?oexit:oend-MFLIMIT)) || (ip+length>iend-(2+1+LASTLITERALS))) )

Completed in 70 milliseconds