Searched refs:llCode (Results 1 – 7 of 7) sorted by relevance
116 { U32 const llCode = ZSTD_LLcode(litLength); in ZSTD_litLengthPrice() local117 …U32 const price = LL_bits[llCode] + optPtr->log2litLengthSum - ZSTD_highbit32(optPtr->litLengthFre… in ZSTD_litLengthPrice()141 { U32 const llCode = ZSTD_LLcode(litLength); in ZSTD_litLengthContribution() local142 int const contribution = LL_bits[llCode] in ZSTD_litLengthContribution()144 - ZSTD_highbit32(optPtr->litLengthFreq[llCode]+1); in ZSTD_litLengthContribution()206 { U32 const llCode = ZSTD_LLcode(litLength); in ZSTD_updateStats() local207 optPtr->litLengthFreq[llCode]++; in ZSTD_updateStats()
1063 zc->seqStore.llCode = (BYTE*) ptr; in ZSTD_resetCCtx_internal()1064 zc->seqStore.mlCode = zc->seqStore.llCode + maxNbSeq; in ZSTD_resetCCtx_internal()1449 BYTE* const llCodeTable = seqStorePtr->llCode; in ZSTD_seqToCodes()1593 BYTE const llCode = llCodeTable[n]; in ZSTD_encodeSequences_body() local1596 U32 const llBits = LL_bits[llCode]; in ZSTD_encodeSequences_body()1608 FSE_encodeSymbol(&blockStream, &stateLitLength, llCode); /* 16 */ /* 33 */ in ZSTD_encodeSequences_body()1716 const BYTE* const llCodeTable = seqStorePtr->llCode; in ZSTD_compressSequences_internal()
227 BYTE* llCode; member
624 seqStore->llCode = SEQUENCE_LLCODE; in initSeqStore()808 const BYTE* const llCodeTable = seqStorePtr->llCode; in writeSequences()950 BYTE const llCode = llCodeTable[n]; in writeSequences() local953 U32 const llBits = LL_bits[llCode]; in writeSequences()960 FSE_encodeSymbol(&blockStream, &stateLitLength, llCode); /* 16 */ /* 33 */ in writeSequences()
3288 U32 const llCode = FSEv06_peekSymbol(&(seqState->stateLL)); in ZSTDv06_decodeSequence() local3292 U32 const llBits = LL_bits[llCode]; in ZSTDv06_decodeSequence()3324 if (llCode == 0 && offset <= 1) offset = 1-offset; in ZSTDv06_decodeSequence()3349 …seq->litLength = LL_base[llCode] + ((llCode>15) ? BITv06_readBits(&(seqState->DStream), llBits) : … in ZSTDv06_decodeSequence()
3514 U32 const llCode = FSEv07_peekSymbol(&(seqState->stateLL)); in ZSTDv07_decodeSequence() local3518 U32 const llBits = LL_bits[llCode]; in ZSTDv07_decodeSequence()3550 if ((llCode == 0) & (offset <= 1)) offset = 1-offset; in ZSTDv07_decodeSequence()3570 …seq.litLength = LL_base[llCode] + ((llCode>15) ? BITv07_readBits(&(seqState->DStream), llBits) : 0… in ZSTDv07_decodeSequence()
629 { const BYTE* codePtr = seqStorePtr->llCode; in ZDICT_countEStats()