Home
last modified time | relevance | path

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

/linux/lib/zstd/common/
H A Dzstd_internal.h97 #define MaxML 52 macro
101 #define MaxSeq MAX(MaxLL, MaxML) /* Assumption : MaxOff < MaxLL,MaxML */
109 #define ZSTD_MAX_FSE_HEADERS_SIZE (((MaxML + 1) * MLFSELog + (MaxLL + 1) * LLFSELog + (MaxOff + 1) …
128 static UNUSED_ATTR const U8 ML_bits[MaxML+1] = {
137 static UNUSED_ATTR const S16 ML_defaultNorm[MaxML+1] = {
/linux/lib/zstd/decompress/
H A Dzstd_decompress_internal.h49 static UNUSED_ATTR const U32 ML_base[MaxML+1] = {
H A Dzstd_decompress.c1331 { short matchlengthNCount[MaxML+1]; in ZSTD_loadDEntropy()
1332 unsigned matchlengthMaxValue = MaxML, matchlengthLog; in ZSTD_loadDEntropy()
1335 RETURN_ERROR_IF(matchlengthMaxValue > MaxML, dictionary_corrupted, ""); in ZSTD_loadDEntropy()
H A Dzstd_decompress_block.c717 MLtype, MaxML, MLFSELog, in ZSTD_decodeSeqHeaders()
/linux/lib/zstd/compress/
H A Dzstd_compress_superblock.c380 … cSeqSizeEstimate += ZSTD_estimateSubBlockSize_symbolType(fseMetadata->mlType, mlCodeTable, MaxML, in ZSTD_estimateSubBlockSize_sequences()
382 ML_defaultNorm, ML_defaultNormLog, MaxML, in ZSTD_estimateSubBlockSize_sequences()
H A Dzstd_opt.c171 for (ml=0; ml<=MaxML; ml++) { in ZSTD_rescaleFreqs()
212 for (ml=0; ml<=MaxML; ml++) in ZSTD_rescaleFreqs()
215 optPtr->matchLengthSum = MaxML+1; in ZSTD_rescaleFreqs()
235 optPtr->matchLengthSum = ZSTD_scaleStats(optPtr->matchLengthFreq, MaxML, 11); in ZSTD_rescaleFreqs()
H A Dzstd_compress.c1366 ZSTD_cwksp_aligned_alloc_size((MaxML+1) * sizeof(U32)) in ZSTD_sizeof_matchState()
1693 … ms->opt.matchLengthFreq = (unsigned*)ZSTD_cwksp_reserve_aligned(ws, (MaxML+1) * sizeof(unsigned)); in ZSTD_reset_matchState()
2316 mlCodeTable[seqStorePtr->longLengthPos] = MaxML; in ZSTD_seqToCodes()
2444 { unsigned max = MaxML; in ZSTD_buildSequencesStatistics()
2459 ML_defaultNorm, ML_defaultNormLog, MaxML, in ZSTD_buildSequencesStatistics()
3228 …eqSizeEstimate += ZSTD_estimateBlockSize_symbolType(fseMetadata->mlType, mlCodeTable, nbSeq, MaxML, in ZSTD_estimateBlockSize_sequences()
3230 ML_defaultNorm, ML_defaultNormLog, MaxML, in ZSTD_estimateBlockSize_sequences()
4262 { short matchlengthNCount[MaxML+1]; in ZSTD_loadCEntropy()
4263 unsigned matchlengthMaxValue = MaxML, matchlengthLog; in ZSTD_loadCEntropy()
4272 ….fse.matchlength_repeatMode = ZSTD_dictNCountRepeat(matchlengthNCount, matchlengthMaxValue, MaxML); in ZSTD_loadCEntropy()
H A Dzstd_compress_internal.h66 FSE_CTable matchlengthCTable[FSE_CTABLE_SIZE_U32(MLFSELog, MaxML)];