Lines Matching refs:MINMATCH
47 #define OPTIMAL_ML (int)((ML_MASK - 1) + MINMATCH)
50 >> ((MINMATCH*8) - LZ4HC_HASH_LOG))
130 size_t const mlt = LZ4_count(ip + MINMATCH, in LZ4HC_InsertAndFindBestMatch()
131 match + MINMATCH, iLimit) + MINMATCH; in LZ4HC_InsertAndFindBestMatch()
148 mlt = LZ4_count(ip + MINMATCH, in LZ4HC_InsertAndFindBestMatch()
149 match + MINMATCH, vLimit) + MINMATCH; in LZ4HC_InsertAndFindBestMatch()
204 int mlt = MINMATCH + LZ4_count( in LZ4HC_InsertAndGetWiderMatch()
205 ip + MINMATCH, in LZ4HC_InsertAndGetWiderMatch()
206 matchPtr + MINMATCH, in LZ4HC_InsertAndGetWiderMatch()
235 mlt = LZ4_count(ip + MINMATCH, in LZ4HC_InsertAndGetWiderMatch()
236 matchPtr + MINMATCH, vLimit) + MINMATCH; in LZ4HC_InsertAndGetWiderMatch()
304 length = (int)(matchLength - MINMATCH); in LZ4HC_encodeSequence()
438 if (ip + new_ml > start2 + ml2 - MINMATCH) in LZ4HC_compress_generic()
439 new_ml = (int)(start2 - ip) + ml2 - MINMATCH; in LZ4HC_compress_generic()
491 if (ml2 < MINMATCH) { in LZ4HC_compress_generic()
528 if (ip + ml > start2 + ml2 - MINMATCH) in LZ4HC_compress_generic()
529 ml = (int)(start2 - ip) + ml2 - MINMATCH; in LZ4HC_compress_generic()