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()
1220 size_t currentMl=0; in ZSTD_RowFindBestMatch() local
1228 currentMl = ZSTD_count(ip, match, iLimit); in ZSTD_RowFindBestMatch()
1233currentMl = ZSTD_count_2segments(ip+4, match+4, iLimit, dictEnd, prefixStart) + 4; in ZSTD_RowFindBestMatch()
1237 if (currentMl > ml) { in ZSTD_RowFindBestMatch()
1238 ml = currentMl; in ZSTD_RowFindBestMatch()
1240 … if (ip+currentMl == iLimit) break; /* best possible, avoids read overflow on next attempt */ in ZSTD_RowFindBestMatch()
1275 size_t currentMl=0; in ZSTD_RowFindBestMatch() local
1282currentMl = ZSTD_count_2segments(ip+4, match+4, iLimit, dmsEnd, prefixStart) + 4; in ZSTD_RowFindBestMatch()
1285 if (currentMl > ml) { in ZSTD_RowFindBestMatch()
1286 ml = currentMl; in ZSTD_RowFindBestMatch()
1289 if (ip+currentMl == iLimit) break; in ZSTD_RowFindBestMatch()