Home
last modified time | relevance | path

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

/linux-4.1.27/lib/lz4/
Dlz4_decompress.c83 if (unlikely(cpy > oend - COPYLENGTH)) { in lz4_uncompress()
138 if (cpy > (oend - COPYLENGTH)) { in lz4_uncompress()
143 if ((ref + COPYLENGTH) > oend || in lz4_uncompress()
144 (op + COPYLENGTH) > oend) in lz4_uncompress()
146 LZ4_SECURECOPY(ref, op, (oend - COPYLENGTH)); in lz4_uncompress()
201 if ((cpy > oend - COPYLENGTH) || in lz4_uncompress_unknownoutputsize()
202 (ip + length > iend - COPYLENGTH)) { in lz4_uncompress_unknownoutputsize()
266 if (cpy > oend - COPYLENGTH) { in lz4_uncompress_unknownoutputsize()
270 LZ4_SECURECOPY(ref, op, (oend - COPYLENGTH)); in lz4_uncompress_unknownoutputsize()
Dlz4defs.h67 #define COPYLENGTH 8 macro
76 #define MFLIMIT (COPYLENGTH + MINMATCH)