Home
last modified time | relevance | path

Searched refs:mlBase (Results 1 – 3 of 3) sorted by relevance

/linux-6.1.9/lib/zstd/compress/
Dzstd_compress_internal.h381 MEM_STATIC U32 ZSTD_MLcode(U32 mlBase) in ZSTD_MLcode() argument
392 return (mlBase > 127) ? ZSTD_highbit32(mlBase) + ML_deltaCode : ML_Code[mlBase]; in ZSTD_MLcode()
505 …StorePtr, size_t litLength, const BYTE* literals, const BYTE* litLimit, U32 offCode, size_t mlBase) in ZSTD_storeSeq() argument
514 pos, (U32)litLength, (U32)mlBase+MINMATCH, (U32)offCode); in ZSTD_storeSeq()
548 if (mlBase>0xFFFF) { in ZSTD_storeSeq()
553 seqStorePtr->sequences[0].matchLength = (U16)mlBase; in ZSTD_storeSeq()
Dzstd_opt.c276 U32 const mlBase = matchLength - MINMATCH; in ZSTD_getMatchPrice() local
280 return WEIGHT(mlBase, optLevel) + ((16 + offCode) * BITCOST_MULTIPLIER); in ZSTD_getMatchPrice()
288 { U32 const mlCode = ZSTD_MLcode(mlBase); in ZSTD_getMatchPrice()
326 { U32 const mlBase = matchLength - MINMATCH; in ZSTD_updateStats() local
327 U32 const mlCode = ZSTD_MLcode(mlBase); in ZSTD_updateStats()
/linux-6.1.9/lib/zstd/decompress/
Dzstd_decompress_block.c949 U32 const mlBase = mlDInfo.baseValue; in ZSTD_decodeSequence() local
996 seq.matchLength = mlBase; in ZSTD_decodeSequence()