Home
last modified time | relevance | path

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

/freebsd/sys/contrib/zstd/lib/compress/
H A Dzstd_compress_superblock.c162 … const BYTE* llCode, const BYTE* mlCode, const BYTE* ofCode, in ZSTD_compressSubBlock_sequences() argument
211 fseTables->litlengthCTable, llCode, in ZSTD_compressSubBlock_sequences()
263 const BYTE* llCode, const BYTE* mlCode, const BYTE* ofCode, in ZSTD_compressSubBlock() argument
286 llCode, mlCode, ofCode, in ZSTD_compressSubBlock()
446 const BYTE* llCodePtr = seqStorePtr->llCode; in ZSTD_compressSubBlock_multi()
H A Dzstd_compress_sequences.c334 BYTE const llCode = llCodeTable[n]; in ZSTD_encodeSequences_body() local
337 U32 const llBits = LL_bits[llCode]; in ZSTD_encodeSequences_body()
349 FSE_encodeSymbol(&blockStream, &stateLitLength, llCode); /* 16 */ /* 33 */ in ZSTD_encodeSequences_body()
H A Dzstd_opt.c284 { U32 const llCode = ZSTD_LLcode(litLength); in ZSTD_litLengthPrice() local
285 return (LL_bits[llCode] * BITCOST_MULTIPLIER) in ZSTD_litLengthPrice()
287 - WEIGHT(optPtr->litLengthFreq[llCode], optLevel); in ZSTD_litLengthPrice()
342 { U32 const llCode = ZSTD_LLcode(litLength); in ZSTD_updateStats() local
343 optPtr->litLengthFreq[llCode]++; in ZSTD_updateStats()
H A Dzstd_compress.c1962 zc->seqStore.llCode = ZSTD_cwksp_reserve_buffer(ws, maxNbSeq * sizeof(BYTE)); in ZSTD_resetCCtx_internal()
2391 BYTE* const llCodeTable = seqStorePtr->llCode; in ZSTD_seqToCodes()
2463 const BYTE* const llCodeTable = seqStorePtr->llCode; in ZSTD_buildSequencesStatistics()
2591 const BYTE* const llCodeTable = seqStorePtr->llCode; in ZSTD_entropyCompressSeqStore_internal()
3360 seqStore->ofCode, seqStore->llCode, seqStore->mlCode, in ZSTD_buildEntropyStatisticsAndEstimateSubBlockSize()
3430 resultSeqStore->llCode += startIdx; in ZSTD_deriveSeqStoreChunk()
/freebsd/sys/contrib/openzfs/module/zstd/lib/compress/
H A Dzstd_compress_superblock.c182 const BYTE* const llCodeTable = seqStorePtr->llCode; in ZSTD_buildSuperBlockEntropy_sequences()
439 … const BYTE* llCode, const BYTE* mlCode, const BYTE* ofCode, in ZSTD_compressSubBlock_sequences() argument
488 fseTables->litlengthCTable, llCode, in ZSTD_compressSubBlock_sequences()
540 const BYTE* llCode, const BYTE* mlCode, const BYTE* ofCode, in ZSTD_compressSubBlock() argument
563 llCode, mlCode, ofCode, in ZSTD_compressSubBlock()
722 const BYTE* llCodePtr = seqStorePtr->llCode; in ZSTD_compressSubBlock_multi()
H A Dzstd_compress_sequences.c311 BYTE const llCode = llCodeTable[n]; in ZSTD_encodeSequences_body() local
314 U32 const llBits = LL_bits[llCode]; in ZSTD_encodeSequences_body()
326 FSE_encodeSymbol(&blockStream, &stateLitLength, llCode); /* 16 */ /* 33 */ in ZSTD_encodeSequences_body()
H A Dzstd_opt.c245 { U32 const llCode = ZSTD_LLcode(litLength); in ZSTD_litLengthPrice() local
246 return (LL_bits[llCode] * BITCOST_MULTIPLIER) in ZSTD_litLengthPrice()
248 - WEIGHT(optPtr->litLengthFreq[llCode], optLevel); in ZSTD_litLengthPrice()
301 { U32 const llCode = ZSTD_LLcode(litLength); in ZSTD_updateStats() local
302 optPtr->litLengthFreq[llCode]++; in ZSTD_updateStats()
H A Dzstd_compress.c1555 zc->seqStore.llCode = ZSTD_cwksp_reserve_buffer(ws, maxNbSeq * sizeof(BYTE)); in ZSTD_resetCCtx_internal()
1932 BYTE* const llCodeTable = seqStorePtr->llCode; in ZSTD_seqToCodes()
1981 const BYTE* const llCodeTable = seqStorePtr->llCode; in ZSTD_compressSequences_internal()
/freebsd/sys/contrib/openzfs/module/zstd/lib/common/
H A Dzstd_internal.h337 BYTE* llCode; member
/freebsd/sys/contrib/zstd/lib/common/
H A Dzstd_internal.h304 BYTE* llCode; member
/freebsd/sys/contrib/zstd/lib/legacy/
H A Dzstd_v06.c3288 U32 const llCode = FSEv06_peekSymbol(&(seqState->stateLL)); in ZSTDv06_decodeSequence() local
3292 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()
H A Dzstd_v07.c3518 U32 const llCode = FSEv07_peekSymbol(&(seqState->stateLL)); in ZSTDv07_decodeSequence() local
3522 U32 const llBits = LL_bits[llCode]; in ZSTDv07_decodeSequence()
3554 if ((llCode == 0) & (offset <= 1)) offset = 1-offset; in ZSTDv07_decodeSequence()
3574 …seq.litLength = LL_base[llCode] + ((llCode>15) ? BITv07_readBits(&(seqState->DStream), llBits) : 0… in ZSTDv07_decodeSequence()
/freebsd/sys/contrib/zstd/lib/dictBuilder/
H A Dzdict.c678 { const BYTE* codePtr = seqStorePtr->llCode; in ZDICT_countEStats()