Home
last modified time | relevance | path

Searched refs:llCode (Results 1 – 4 of 4) sorted by relevance

/lib/zstd/
Ddecompress.c935 U32 const llCode = FSE_peekSymbol(&seqState->stateLL); in ZSTD_decodeSequence() local
939 U32 const llBits = LL_bits[llCode]; in ZSTD_decodeSequence()
967 offset += (llCode == 0); in ZSTD_decodeSequence()
990 …seq.litLength = LL_base[llCode] + ((llCode > 15) ? BIT_readBitsFast(&seqState->DStream, llBits) : … in ZSTD_decodeSequence()
1167 U32 const llCode = FSE_peekSymbol(&seqState->stateLL); in ZSTD_decodeSequenceLong_generic() local
1171 U32 const llBits = LL_bits[llCode]; in ZSTD_decodeSequenceLong_generic()
1208 offset += (llCode == 0); in ZSTD_decodeSequenceLong_generic()
1231 …seq.litLength = LL_base[llCode] + ((llCode > 15) ? BIT_readBitsFast(&seqState->DStream, llBits) : … in ZSTD_decodeSequenceLong_generic()
Dzstd_internal.h193 BYTE *llCode; member
Dzstd_opt.h135 …const BYTE llCode = (litLength > 63) ? (BYTE)ZSTD_highbit32(litLength) + LL_deltaCode : LL_Code[li… in ZSTD_getLiteralPrice() local
136 …price += LL_bits[llCode] + ssPtr->log2litLengthSum - ZSTD_highbit32(ssPtr->litLengthFreq[llCode] +… in ZSTD_getLiteralPrice()
177 …const BYTE llCode = (litLength > 63) ? (BYTE)ZSTD_highbit32(litLength) + LL_deltaCode : LL_Code[li… in ZSTD_updatePrice() local
178 seqStorePtr->litLengthFreq[llCode]++; in ZSTD_updatePrice()
Dcompress.c320 zc->seqStore.llCode = (BYTE *)ptr; in ZSTD_resetCCtx_advanced()
321 zc->seqStore.mlCode = zc->seqStore.llCode + maxNbSeq; in ZSTD_resetCCtx_advanced()
568 BYTE *const llCodeTable = seqStorePtr->llCode; in ZSTD_seqToCodes()
596 const BYTE *const llCodeTable = seqStorePtr->llCode; in ZSTD_compressSequences_internal()
784 BYTE const llCode = llCodeTable[n]; in ZSTD_compressSequences_internal() local
787 U32 const llBits = LL_bits[llCode]; in ZSTD_compressSequences_internal()
795 FSE_encodeSymbol(&blockStream, &stateLitLength, llCode); /* 16 */ /* 33 */ in ZSTD_compressSequences_internal()