Lines Matching refs:currentMl
543 size_t currentMl=0; in ZSTD_dedicatedDictSearch_lazy_search() local
558 currentMl = ZSTD_count_2segments(ip+4, match+4, iLimit, ddsEnd, prefixStart) + 4; in ZSTD_dedicatedDictSearch_lazy_search()
562 if (currentMl > ml) { in ZSTD_dedicatedDictSearch_lazy_search()
563 ml = currentMl; in ZSTD_dedicatedDictSearch_lazy_search()
565 if (ip+currentMl == iLimit) { in ZSTD_dedicatedDictSearch_lazy_search()
585 size_t currentMl=0; in ZSTD_dedicatedDictSearch_lazy_search() local
595 currentMl = ZSTD_count_2segments(ip+4, match+4, iLimit, ddsEnd, prefixStart) + 4; in ZSTD_dedicatedDictSearch_lazy_search()
599 if (currentMl > ml) { in ZSTD_dedicatedDictSearch_lazy_search()
600 ml = currentMl; in ZSTD_dedicatedDictSearch_lazy_search()
602 … if (ip+currentMl == iLimit) break; /* best possible, avoids read overflow on next attempt */ in ZSTD_dedicatedDictSearch_lazy_search()
690 size_t currentMl=0; in ZSTD_HcFindBestMatch() local
695 currentMl = ZSTD_count(ip, match, iLimit); in ZSTD_HcFindBestMatch()
700 currentMl = ZSTD_count_2segments(ip+4, match+4, iLimit, dictEnd, prefixStart) + 4; in ZSTD_HcFindBestMatch()
704 if (currentMl > ml) { in ZSTD_HcFindBestMatch()
705 ml = currentMl; in ZSTD_HcFindBestMatch()
707 … if (ip+currentMl == iLimit) break; /* best possible, avoids read overflow on next attempt */ in ZSTD_HcFindBestMatch()
732 size_t currentMl=0; in ZSTD_HcFindBestMatch() local
736 currentMl = ZSTD_count_2segments(ip+4, match+4, iLimit, dmsEnd, prefixStart) + 4; in ZSTD_HcFindBestMatch()
739 if (currentMl > ml) { in ZSTD_HcFindBestMatch()
740 ml = currentMl; in ZSTD_HcFindBestMatch()
743 … if (ip+currentMl == iLimit) break; /* best possible, avoids read overflow on next attempt */ in ZSTD_HcFindBestMatch()
1229 size_t currentMl=0; in ZSTD_RowFindBestMatch() local
1237 currentMl = ZSTD_count(ip, match, iLimit); in ZSTD_RowFindBestMatch()
1242 … currentMl = ZSTD_count_2segments(ip+4, match+4, iLimit, dictEnd, prefixStart) + 4; in ZSTD_RowFindBestMatch()
1246 if (currentMl > ml) { in ZSTD_RowFindBestMatch()
1247 ml = currentMl; in ZSTD_RowFindBestMatch()
1249 … if (ip+currentMl == iLimit) break; /* best possible, avoids read overflow on next attempt */ in ZSTD_RowFindBestMatch()
1284 size_t currentMl=0; in ZSTD_RowFindBestMatch() local
1291 … currentMl = ZSTD_count_2segments(ip+4, match+4, iLimit, dmsEnd, prefixStart) + 4; in ZSTD_RowFindBestMatch()
1294 if (currentMl > ml) { in ZSTD_RowFindBestMatch()
1295 ml = currentMl; in ZSTD_RowFindBestMatch()
1298 if (ip+currentMl == iLimit) break; in ZSTD_RowFindBestMatch()