Lines Matching refs:mlt
130 size_t const mlt = LZ4_count(ip + MINMATCH, in LZ4HC_InsertAndFindBestMatch() local
133 if (mlt > ml) { in LZ4HC_InsertAndFindBestMatch()
134 ml = mlt; in LZ4HC_InsertAndFindBestMatch()
142 size_t mlt; in LZ4HC_InsertAndFindBestMatch() local
148 mlt = LZ4_count(ip + MINMATCH, in LZ4HC_InsertAndFindBestMatch()
150 if ((ip + mlt == vLimit) in LZ4HC_InsertAndFindBestMatch()
152 mlt += LZ4_count(ip + mlt, in LZ4HC_InsertAndFindBestMatch()
155 if (mlt > ml) { in LZ4HC_InsertAndFindBestMatch()
157 ml = mlt; in LZ4HC_InsertAndFindBestMatch()
204 int mlt = MINMATCH + LZ4_count( in LZ4HC_InsertAndGetWiderMatch() local
215 mlt -= back; in LZ4HC_InsertAndGetWiderMatch()
217 if (mlt > longest) { in LZ4HC_InsertAndGetWiderMatch()
218 longest = (int)mlt; in LZ4HC_InsertAndGetWiderMatch()
228 size_t mlt; in LZ4HC_InsertAndGetWiderMatch() local
235 mlt = LZ4_count(ip + MINMATCH, in LZ4HC_InsertAndGetWiderMatch()
238 if ((ip + mlt == vLimit) && (vLimit < iHighLimit)) in LZ4HC_InsertAndGetWiderMatch()
239 mlt += LZ4_count(ip + mlt, base + dictLimit, in LZ4HC_InsertAndGetWiderMatch()
246 mlt -= back; in LZ4HC_InsertAndGetWiderMatch()
248 if ((int)mlt > longest) { in LZ4HC_InsertAndGetWiderMatch()
249 longest = (int)mlt; in LZ4HC_InsertAndGetWiderMatch()