Home
last modified time | relevance | path

Searched refs:ML_deltaCode (Results 1 - 3 of 3) sorted by relevance

/kernel/linux/linux-5.10/lib/zstd/
H A Dzstd_opt.h157 const BYTE ML_deltaCode = 36; in ZSTD_getPrice() local
158 const BYTE mlCode = (matchLength > 127) ? (BYTE)ZSTD_highbit32(matchLength) + ML_deltaCode : ML_Code[matchLength]; in ZSTD_getPrice()
191 const BYTE ML_deltaCode = 36; in ZSTD_updatePrice() local
192 const BYTE mlCode = (matchLength > 127) ? (BYTE)ZSTD_highbit32(matchLength) + ML_deltaCode : ML_Code[matchLength]; in ZSTD_updatePrice()
H A Dcompress.c566 BYTE const ML_deltaCode = 36; in ZSTD_seqToCodes() local
578 mlCodeTable[u] = (mlv > 127) ? (BYTE)ZSTD_highbit32(mlv) + ML_deltaCode : ML_Code[mlv]; in ZSTD_seqToCodes()
/kernel/linux/linux-6.6/lib/zstd/compress/
H A Dzstd_compress_internal.h484 static const U32 ML_deltaCode = 36; in ZSTD_MLcode() local
485 return (mlBase > 127) ? ZSTD_highbit32(mlBase) + ML_deltaCode : ML_Code[mlBase]; in ZSTD_MLcode()

Completed in 13 milliseconds