Searched refs:MaxML (Results 1 – 8 of 8) sorted by relevance
/linux-6.6.21/lib/zstd/common/ ! |
D | zstd_internal.h | 97 #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-6.6.21/lib/zstd/decompress/ ! |
D | zstd_decompress_internal.h | 49 static UNUSED_ATTR const U32 ML_base[MaxML+1] = {
|
D | zstd_decompress.c | 1331 { 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()
|
D | zstd_decompress_block.c | 717 MLtype, MaxML, MLFSELog, in ZSTD_decodeSeqHeaders()
|
/linux-6.6.21/lib/zstd/compress/ ! |
D | zstd_compress_superblock.c | 380 … cSeqSizeEstimate += ZSTD_estimateSubBlockSize_symbolType(fseMetadata->mlType, mlCodeTable, MaxML, in ZSTD_estimateSubBlockSize_sequences() 382 ML_defaultNorm, ML_defaultNormLog, MaxML, in ZSTD_estimateSubBlockSize_sequences()
|
D | zstd_opt.c | 171 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()
|
D | zstd_compress.c | 1366 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()
|
D | zstd_compress_internal.h | 66 FSE_CTable matchlengthCTable[FSE_CTABLE_SIZE_U32(MLFSELog, MaxML)];
|