Lines Matching refs:currentMl

557         size_t currentMl=0;  in ZSTD_dedicatedDictSearch_lazy_search()  local
572 currentMl = ZSTD_count_2segments(ip+4, match+4, iLimit, ddsEnd, prefixStart) + 4; in ZSTD_dedicatedDictSearch_lazy_search()
576 if (currentMl > ml) { in ZSTD_dedicatedDictSearch_lazy_search()
577 ml = currentMl; in ZSTD_dedicatedDictSearch_lazy_search()
579 if (ip+currentMl == iLimit) { in ZSTD_dedicatedDictSearch_lazy_search()
599 size_t currentMl=0; in ZSTD_dedicatedDictSearch_lazy_search() local
609 currentMl = ZSTD_count_2segments(ip+4, match+4, iLimit, ddsEnd, prefixStart) + 4; in ZSTD_dedicatedDictSearch_lazy_search()
613 if (currentMl > ml) { in ZSTD_dedicatedDictSearch_lazy_search()
614 ml = currentMl; in ZSTD_dedicatedDictSearch_lazy_search()
616 … if (ip+currentMl == iLimit) break; /* best possible, avoids read overflow on next attempt */ in ZSTD_dedicatedDictSearch_lazy_search()
710 size_t currentMl=0; in ZSTD_HcFindBestMatch() local
716 currentMl = ZSTD_count(ip, match, iLimit); in ZSTD_HcFindBestMatch()
721 currentMl = ZSTD_count_2segments(ip+4, match+4, iLimit, dictEnd, prefixStart) + 4; in ZSTD_HcFindBestMatch()
725 if (currentMl > ml) { in ZSTD_HcFindBestMatch()
726 ml = currentMl; in ZSTD_HcFindBestMatch()
728 … if (ip+currentMl == iLimit) break; /* best possible, avoids read overflow on next attempt */ in ZSTD_HcFindBestMatch()
753 size_t currentMl=0; in ZSTD_HcFindBestMatch() local
757 currentMl = ZSTD_count_2segments(ip+4, match+4, iLimit, dmsEnd, prefixStart) + 4; in ZSTD_HcFindBestMatch()
760 if (currentMl > ml) { in ZSTD_HcFindBestMatch()
761 ml = currentMl; in ZSTD_HcFindBestMatch()
764 … if (ip+currentMl == iLimit) break; /* best possible, avoids read overflow on next attempt */ in ZSTD_HcFindBestMatch()
1257 size_t currentMl=0; in ZSTD_RowFindBestMatch() local
1266 currentMl = ZSTD_count(ip, match, iLimit); in ZSTD_RowFindBestMatch()
1271currentMl = ZSTD_count_2segments(ip+4, match+4, iLimit, dictEnd, prefixStart) + 4; in ZSTD_RowFindBestMatch()
1275 if (currentMl > ml) { in ZSTD_RowFindBestMatch()
1276 ml = currentMl; in ZSTD_RowFindBestMatch()
1278 … if (ip+currentMl == iLimit) break; /* best possible, avoids read overflow on next attempt */ in ZSTD_RowFindBestMatch()
1315 size_t currentMl=0; in ZSTD_RowFindBestMatch() local
1322currentMl = ZSTD_count_2segments(ip+4, match+4, iLimit, dmsEnd, prefixStart) + 4; in ZSTD_RowFindBestMatch()
1325 if (currentMl > ml) { in ZSTD_RowFindBestMatch()
1326 ml = currentMl; in ZSTD_RowFindBestMatch()
1329 if (ip+currentMl == iLimit) break; in ZSTD_RowFindBestMatch()