Home
last modified time | relevance | path

Searched refs:LASTLITERALS (Results 1 – 4 of 4) sorted by relevance

/linux-6.15/lib/lz4/
H A Dlz4_decompress.c224 || (ip + length > iend - (2 + 1 + LASTLITERALS)))) in LZ4_decompress_generic()
319 if ((endOnInput) && (ip > iend - LASTLITERALS)) in LZ4_decompress_generic()
337 if (unlikely(op + length > oend - LASTLITERALS)) { in LZ4_decompress_generic()
422 if (cpy > oend - LASTLITERALS) { in LZ4_decompress_generic()
H A Dlz4_compress.c197 const BYTE * const matchlimit = iend - LASTLITERALS; in LZ4_compress_generic()
308 (2 + 1 + LASTLITERALS) + in LZ4_compress_generic()
369 (1 + LASTLITERALS) + in LZ4_compress_generic()
535 const BYTE * const matchlimit = iend - LASTLITERALS; in LZ4_compress_destSize_generic()
542 - (LASTLITERALS + 1 /* token */); in LZ4_compress_destSize_generic()
H A Dlz4hc_compress.c279 + length + (2 + 1 + LASTLITERALS)) > oend)) { in LZ4HC_encodeSequence()
307 + (1 + LASTLITERALS) > oend)) { in LZ4HC_encodeSequence()
351 const BYTE * const matchlimit = (iend - LASTLITERALS); in LZ4HC_compress_generic()
H A Dlz4defs.h79 #define LASTLITERALS 5 macro