Home
last modified time | relevance | path

Searched refs:MaxLL (Results 1 – 8 of 8) sorted by relevance

/linux-6.15/lib/zstd/common/
H A Dzstd_internal.h98 #define MaxLL 35 macro
101 #define MaxSeq MAX(MaxLL, MaxML) /* Assumption : MaxOff < MaxLL,MaxML */
111 #define ZSTD_MAX_FSE_HEADERS_SIZE (((MaxML + 1) * MLFSELog + (MaxLL + 1) * LLFSELog + (MaxOff + 1) …
113 static UNUSED_ATTR const U8 LL_bits[MaxLL+1] = {
120 static UNUSED_ATTR const S16 LL_defaultNorm[MaxLL+1] = {
/linux-6.15/lib/zstd/decompress/
H A Dzstd_decompress_internal.h31 static UNUSED_ATTR const U32 LL_base[MaxLL+1] = {
H A Dzstd_decompress.c1437 { short litlengthNCount[MaxLL+1]; in ZSTD_loadDEntropy()
1438 unsigned litlengthMaxValue = MaxLL, litlengthLog; in ZSTD_loadDEntropy()
1441 RETURN_ERROR_IF(litlengthMaxValue > MaxLL, dictionary_corrupted, ""); in ZSTD_loadDEntropy()
H A Dzstd_decompress_block.c739 LLtype, MaxLL, LLFSELog, in ZSTD_decodeSeqHeaders()
/linux-6.15/lib/zstd/compress/
H A Dzstd_compress_superblock.c382 … cSeqSizeEstimate += ZSTD_estimateSubBlockSize_symbolType(fseMetadata->llType, llCodeTable, MaxLL, in ZSTD_estimateSubBlockSize_sequences()
384 LL_defaultNorm, LL_defaultNormLog, MaxLL, in ZSTD_estimateSubBlockSize_sequences()
H A Dzstd_opt.c181 for (ll=0; ll<=MaxLL; ll++) { in ZSTD_rescaleFreqs()
223 { unsigned const baseLLfreqs[MaxLL+1] = { in ZSTD_rescaleFreqs()
231 optPtr->litLengthSum = sum_u32(baseLLfreqs, MaxLL+1); in ZSTD_rescaleFreqs()
256 optPtr->litLengthSum = ZSTD_scaleStats(optPtr->litLengthFreq, MaxLL, 11); in ZSTD_rescaleFreqs()
H A Dzstd_compress.c1609 + ZSTD_cwksp_aligned64_alloc_size((MaxLL+1) * sizeof(U32)) in ZSTD_sizeof_matchState()
1983 … ms->opt.litLengthFreq = (unsigned*)ZSTD_cwksp_reserve_aligned64(ws, (MaxLL+1) * sizeof(unsigned)); in ZSTD_reset_matchState()
2629 llCodeTable[seqStorePtr->longLengthPos] = MaxLL; in ZSTD_seqToCodes()
2701 { unsigned max = MaxLL; in ZSTD_buildSequencesStatistics()
2716 LL_defaultNorm, LL_defaultNormLog, MaxLL, in ZSTD_buildSequencesStatistics()
3824 …eqSizeEstimate += ZSTD_estimateBlockSize_symbolType(fseMetadata->llType, llCodeTable, nbSeq, MaxLL, in ZSTD_estimateBlockSize_sequences()
3826 LL_defaultNorm, LL_defaultNormLog, MaxLL, in ZSTD_estimateBlockSize_sequences()
5027 { short litlengthNCount[MaxLL+1]; in ZSTD_loadCEntropy()
5028 unsigned litlengthMaxValue = MaxLL, litlengthLog; in ZSTD_loadCEntropy()
5037 …ntropy.fse.litlength_repeatMode = ZSTD_dictNCountRepeat(litlengthNCount, litlengthMaxValue, MaxLL); in ZSTD_loadCEntropy()
H A Dzstd_compress_internal.h69 FSE_CTable litlengthCTable[FSE_CTABLE_SIZE_U32(LLFSELog, MaxLL)];