Home
last modified time | relevance | path

Searched refs:LL_deltaCode (Results 1 – 2 of 2) sorted by relevance

/linux-4.19.296/lib/zstd/
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[li… 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[li… in ZSTD_updatePrice()
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()