Lines Matching refs:MINMATCH
54 >> ((MINMATCH * 8) - (LZ4_HASHLOG + 1))); in LZ4_hash4()
57 >> ((MINMATCH * 8) - LZ4_HASHLOG)); in LZ4_hash4()
348 matchCode = LZ4_count(ip + MINMATCH, in LZ4_compress_generic()
349 match + MINMATCH, limit); in LZ4_compress_generic()
351 ip += MINMATCH + matchCode; in LZ4_compress_generic()
362 matchCode = LZ4_count(ip + MINMATCH, in LZ4_compress_generic()
363 match + MINMATCH, matchlimit); in LZ4_compress_generic()
364 ip += MINMATCH + matchCode; in LZ4_compress_generic()
641 size_t matchLength = LZ4_count(ip + MINMATCH, in LZ4_compress_destSize_generic()
642 match + MINMATCH, matchlimit); in LZ4_compress_destSize_generic()
648 ip += MINMATCH + matchLength; in LZ4_compress_destSize_generic()