Searched refs:MaxML (Results 1 – 8 of 8) sorted by relevance
/Linux-v6.1/lib/zstd/common/ |
D | zstd_internal.h | 171 #define MaxML 52 macro 175 #define MaxSeq MAX(MaxLL, MaxML) /* Assumption : MaxOff < MaxLL,MaxML */ 183 #define ZSTD_MAX_FSE_HEADERS_SIZE (((MaxML + 1) * MLFSELog + (MaxLL + 1) * LLFSELog + (MaxOff + 1) … 202 static UNUSED_ATTR const U32 ML_bits[MaxML+1] = { 211 static UNUSED_ATTR const S16 ML_defaultNorm[MaxML+1] = {
|
/Linux-v6.1/lib/zstd/decompress/ |
D | zstd_decompress_internal.h | 49 static UNUSED_ATTR const U32 ML_base[MaxML+1] = {
|
D | zstd_decompress.c | 1266 { short matchlengthNCount[MaxML+1]; in ZSTD_loadDEntropy() 1267 unsigned matchlengthMaxValue = MaxML, matchlengthLog; in ZSTD_loadDEntropy() 1270 RETURN_ERROR_IF(matchlengthMaxValue > MaxML, dictionary_corrupted, ""); in ZSTD_loadDEntropy()
|
D | zstd_decompress_block.c | 641 MLtype, MaxML, MLFSELog, in ZSTD_decodeSeqHeaders()
|
/Linux-v6.1/lib/zstd/compress/ |
D | zstd_compress_superblock.c | 246 unsigned max = MaxML; in ZSTD_buildSuperBlockEntropy_sequences() 257 … countWksp, max, mlCodeTable, nbSeq, ML_defaultNorm, ML_defaultNormLog, MaxML, in ZSTD_buildSuperBlockEntropy_sequences() 659 … cSeqSizeEstimate += ZSTD_estimateSubBlockSize_symbolType(fseMetadata->mlType, mlCodeTable, MaxML, in ZSTD_estimateSubBlockSize_sequences() 661 ML_defaultNorm, ML_defaultNormLog, MaxML, in ZSTD_estimateSubBlockSize_sequences()
|
D | zstd_opt.c | 163 for (ml=0; ml<=MaxML; ml++) { in ZSTD_rescaleFreqs() 199 for (ml=0; ml<=MaxML; ml++) in ZSTD_rescaleFreqs() 202 optPtr->matchLengthSum = MaxML+1; in ZSTD_rescaleFreqs() 217 optPtr->matchLengthSum = ZSTD_downscaleStat(optPtr->matchLengthFreq, MaxML, 0); in ZSTD_rescaleFreqs() 1255 optPtr->matchLengthSum = ZSTD_upscaleStat(optPtr->matchLengthFreq, MaxML, 0); in ZSTD_upscaleStats()
|
D | zstd_compress.c | 1244 ZSTD_cwksp_alloc_size((MaxML+1) * sizeof(U32)) in ZSTD_sizeof_matchState() 1529 … ms->opt.matchLengthFreq = (unsigned*)ZSTD_cwksp_reserve_aligned(ws, (MaxML+1) * sizeof(unsigned)); in ZSTD_reset_matchState() 2083 mlCodeTable[seqStorePtr->longLengthPos] = MaxML; in ZSTD_seqToCodes() 2230 { unsigned max = MaxML; in ZSTD_entropyCompressSequences_internal() 2245 ML_defaultNorm, ML_defaultNormLog, MaxML, in ZSTD_entropyCompressSequences_internal() 3179 { short matchlengthNCount[MaxML+1]; in ZSTD_loadCEntropy() 3180 unsigned matchlengthMaxValue = MaxML, matchlengthLog; in ZSTD_loadCEntropy() 3189 ….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)];
|