Lines Matching refs:mls
415 U32 const mls, const int extDict) in ZSTD_insertBt1() argument
420 size_t const h = ZSTD_hashPtr(ip, hashLog, mls); in ZSTD_insertBt1()
533 const U32 mls, const ZSTD_dictMode_e dictMode) in ZSTD_updateTree_internal() argument
542 … U32 const forward = ZSTD_insertBt1(ms, base+idx, iend, target, mls, dictMode == ZSTD_extDict); in ZSTD_updateTree_internal()
564 U32 const mls /* template */) in ZSTD_insertBtAndGetAllMatches() argument
571 U32 const minMatch = (mls==3) ? 3 : 4; in ZSTD_insertBtAndGetAllMatches()
573 size_t const h = ZSTD_hashPtr(ip, hashLog, mls); in ZSTD_insertBtAndGetAllMatches()
656 if ((mls == 3) /*static*/ && (bestLength < mls)) { in ZSTD_insertBtAndGetAllMatches()
670 if (mlen >= mls /* == 3 > bestLength */) { in ZSTD_insertBtAndGetAllMatches()
743 size_t const dmsH = ZSTD_hashPtr(ip, dmsHashLog, mls); in ZSTD_insertBtAndGetAllMatches()
805 const U32 mls) in ZSTD_btGetAllMatches_internal() argument
807 assert(BOUNDED(3, ms->cParams.minMatch, 6) == mls); in ZSTD_btGetAllMatches_internal()
808 DEBUGLOG(8, "ZSTD_BtGetAllMatches(dictMode=%d, mls=%u)", (int)dictMode, mls); in ZSTD_btGetAllMatches_internal()
811 ZSTD_updateTree_internal(ms, ip, iHighLimit, mls, dictMode); in ZSTD_btGetAllMatches_internal()
812 …ndGetAllMatches(matches, ms, nextToUpdate3, ip, iHighLimit, dictMode, rep, ll0, lengthToBeat, mls); in ZSTD_btGetAllMatches_internal()
815 #define ZSTD_BT_GET_ALL_MATCHES_FN(dictMode, mls) ZSTD_btGetAllMatches_##dictMode##_##mls argument
817 #define GEN_ZSTD_BT_GET_ALL_MATCHES_(dictMode, mls) \ argument
818 static U32 ZSTD_BT_GET_ALL_MATCHES_FN(dictMode, mls)( \
830 rep, ll0, lengthToBeat, ZSTD_##dictMode, mls); \
859 U32 const mls = BOUNDED(3, ms->cParams.minMatch, 6); local
861 assert(mls - 3 < 4);
862 return getAllMatchesFns[(int)dictMode][mls - 3];