Home
last modified time | relevance | path

Searched refs:ml (Results 1 – 3 of 3) sorted by relevance

/lib/lz4/
Dlz4hc_compress.c116 size_t ml = 0; in LZ4HC_InsertAndFindBestMatch() local
128 if (*(match + ml) == *(ip + ml) in LZ4HC_InsertAndFindBestMatch()
133 if (mlt > ml) { in LZ4HC_InsertAndFindBestMatch()
134 ml = mlt; in LZ4HC_InsertAndFindBestMatch()
155 if (mlt > ml) { in LZ4HC_InsertAndFindBestMatch()
157 ml = mlt; in LZ4HC_InsertAndFindBestMatch()
165 return (int)ml; in LZ4HC_InsertAndFindBestMatch()
358 int ml, ml2, ml3, ml0; in LZ4HC_compress_generic() local
379 ml = LZ4HC_InsertAndFindBestMatch(ctx, ip, in LZ4HC_compress_generic()
381 if (!ml) { in LZ4HC_compress_generic()
[all …]
/lib/
Dinflate.c602 unsigned ml, md; /* masks for bl and bd bits */ in inflate_codes() local
613 ml = mask_bits[bl]; /* precompute masks for speed */ in inflate_codes()
618 if ((e = (t = tl + ((unsigned)b & ml))->e) > 16) in inflate_codes()
/lib/zstd/
Dcompress.c1835 size_t ml = EQUAL_READ32 - 1; in ZSTD_HcFindBestMatch_generic() local
1845 if (match[ml] == ip[ml]) /* potentially better */ in ZSTD_HcFindBestMatch_generic()
1854 if (currMl > ml) { in ZSTD_HcFindBestMatch_generic()
1855 ml = currMl; in ZSTD_HcFindBestMatch_generic()
1866 return ml; in ZSTD_HcFindBestMatch_generic()