Home
last modified time | relevance | path

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

/kernel/linux/linux-5.10/lib/zstd/
H A Dzstd_opt.h134 const BYTE LL_deltaCode = 19; in ZSTD_getLiteralPrice() local
135 const BYTE llCode = (litLength > 63) ? (BYTE)ZSTD_highbit32(litLength) + LL_deltaCode : LL_Code[litLength]; in ZSTD_getLiteralPrice()
176 const BYTE LL_deltaCode = 19; in ZSTD_updatePrice() local
177 const BYTE llCode = (litLength > 63) ? (BYTE)ZSTD_highbit32(litLength) + LL_deltaCode : LL_Code[litLength]; in ZSTD_updatePrice()
H A Dcompress.c565 BYTE const LL_deltaCode = 19; in ZSTD_seqToCodes() local
576 llCodeTable[u] = (llv > 63) ? (BYTE)ZSTD_highbit32(llv) + LL_deltaCode : LL_Code[llv]; in ZSTD_seqToCodes()
/kernel/linux/linux-6.6/lib/zstd/compress/
H A Dzstd_compress_internal.h467 static const U32 LL_deltaCode = 19; in ZSTD_LLcode() local
468 return (litLength > 63) ? ZSTD_highbit32(litLength) + LL_deltaCode : LL_Code[litLength]; in ZSTD_LLcode()

Completed in 11 milliseconds