Lines Matching refs:mlBase
10224 MEM_STATIC U32 ZSTD_MLcode(U32 mlBase) in ZSTD_MLcode() argument
10235 return (mlBase > 127) ? ZSTD_highbit32(mlBase) + ML_deltaCode : ML_Code[mlBase]; in ZSTD_MLcode()
10348 …StorePtr, size_t litLength, const BYTE* literals, const BYTE* litLimit, U32 offCode, size_t mlBase) in ZSTD_storeSeq() argument
10357 pos, (U32)litLength, (U32)mlBase+MINMATCH, (U32)offCode); in ZSTD_storeSeq()
10391 if (mlBase>0xFFFF) { in ZSTD_storeSeq()
10396 seqStorePtr->sequences[0].matchLength = (U16)mlBase; in ZSTD_storeSeq()
20408 U32 const mlBase = matchLength - MINMATCH; in ZSTD_getMatchPrice() local
20412 return WEIGHT(mlBase, optLevel) + ((16 + offCode) * BITCOST_MULTIPLIER); in ZSTD_getMatchPrice()
20420 { U32 const mlCode = ZSTD_MLcode(mlBase); in ZSTD_getMatchPrice()
20458 { U32 const mlBase = matchLength - MINMATCH; in ZSTD_updateStats() local
20459 U32 const mlCode = ZSTD_MLcode(mlBase); in ZSTD_updateStats()
27236 U32 const mlBase = mlDInfo.baseValue; in ZSTD_decodeSequence() local
27283 seq.matchLength = mlBase; in ZSTD_decodeSequence()