Searched refs:MaxML (Results 1 – 8 of 8) sorted by relevance
| /linux/lib/zstd/common/ |
| H A D | zstd_internal.h | 97 #define MaxML 52 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) … 130 static UNUSED_ATTR const U8 ML_bits[MaxML+1] = { 139 static UNUSED_ATTR const S16 ML_defaultNorm[MaxML+1] = {
|
| /linux/lib/zstd/decompress/ |
| H A D | zstd_decompress_internal.h | 50 static UNUSED_ATTR const U32 ML_base[MaxML+1] = {
|
| H A D | zstd_decompress.c | 1422 { short matchlengthNCount[MaxML+1]; in ZSTD_loadDEntropy() 1423 unsigned matchlengthMaxValue = MaxML, matchlengthLog; in ZSTD_loadDEntropy() 1426 RETURN_ERROR_IF(matchlengthMaxValue > MaxML, dictionary_corrupted, ""); in ZSTD_loadDEntropy()
|
| H A D | zstd_decompress_block.c | 763 MLtype, MaxML, MLFSELog, in ZSTD_decodeSeqHeaders()
|
| /linux/lib/zstd/compress/ |
| H A D | zstd_compress_superblock.c | 386 … cSeqSizeEstimate += ZSTD_estimateSubBlockSize_symbolType(fseMetadata->mlType, mlCodeTable, MaxML, in ZSTD_estimateSubBlockSize_sequences() 388 ML_defaultNorm, ML_defaultNormLog, MaxML, in ZSTD_estimateSubBlockSize_sequences()
|
| H A D | zstd_opt.c | 193 for (ml=0; ml<=MaxML; ml++) { in ZSTD_rescaleFreqs() 235 for (ml=0; ml<=MaxML; ml++) in ZSTD_rescaleFreqs() 238 optPtr->matchLengthSum = MaxML+1; in ZSTD_rescaleFreqs() 257 optPtr->matchLengthSum = ZSTD_scaleStats(optPtr->matchLengthFreq, MaxML, 11); in ZSTD_rescaleFreqs()
|
| H A D | zstd_compress.c | 1608 ZSTD_cwksp_aligned64_alloc_size((MaxML+1) * sizeof(U32)) in ZSTD_sizeof_matchState() 1984 …ms->opt.matchLengthFreq = (unsigned*)ZSTD_cwksp_reserve_aligned64(ws, (MaxML+1) * sizeof(unsigned)… in ZSTD_reset_matchState() 2631 mlCodeTable[seqStorePtr->longLengthPos] = MaxML; in ZSTD_seqToCodes() 2763 { unsigned max = MaxML; in ZSTD_buildSequencesStatistics() 2778 ML_defaultNorm, ML_defaultNormLog, MaxML, in ZSTD_buildSequencesStatistics() 3828 …eqSizeEstimate += ZSTD_estimateBlockSize_symbolType(fseMetadata->mlType, mlCodeTable, nbSeq, MaxML, in ZSTD_estimateBlockSize_sequences() 3830 ML_defaultNorm, ML_defaultNormLog, MaxML, in ZSTD_estimateBlockSize_sequences() 5013 { short matchlengthNCount[MaxML+1]; in ZSTD_loadCEntropy() 5014 unsigned matchlengthMaxValue = MaxML, matchlengthLog; in ZSTD_loadCEntropy() 5023 ….fse.matchlength_repeatMode = ZSTD_dictNCountRepeat(matchlengthNCount, matchlengthMaxValue, MaxML); in ZSTD_loadCEntropy()
|
| H A D | zstd_compress_internal.h | 68 FSE_CTable matchlengthCTable[FSE_CTABLE_SIZE_U32(MLFSELog, MaxML)];
|