Home
last modified time | relevance | path

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

/linux-4.19.296/lib/zstd/
Dzstd_internal.h102 #define MaxML 52 macro
105 #define MaxSeq MAX(MaxLL, MaxML) /* Assumption : MaxOff < MaxLL,MaxML */
115 static const U32 ML_bits[MaxML + 1] = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, …
117 static const S16 ML_defaultNorm[MaxML + 1] = {1, 4, 3, 2, 2, 2, 2, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1,…
Dcompress.c85 FSE_CTable matchlengthCTable[FSE_CTABLE_SIZE_U32(MLFSELog, MaxML)];
102 …((MaxML + 1) + (MaxLL + 1) + (MaxOff + 1) + (1 << Litbits)) * sizeof(U32) + (ZSTD_OPT_NUM + 1) * (… in ZSTD_CCtxWorkspaceBound()
265 …size_t const optSpace = ((MaxML + 1) + (MaxLL + 1) + (MaxOff + 1) + (1 << Litbits)) * sizeof(U32) + in ZSTD_resetCCtx_advanced()
310 zc->seqStore.offCodeFreq = zc->seqStore.matchLengthFreq + (MaxML + 1); in ZSTD_resetCCtx_advanced()
583 mlCodeTable[seqStorePtr->longLengthPos] = MaxML; in ZSTD_seqToCodes()
716 U32 max = MaxML; in ZSTD_compressSequences_internal()
725 …FSE_buildCTable_wksp(CTable_MatchLength, ML_defaultNorm, MaxML, ML_defaultNormLog, workspace, work… in ZSTD_compressSequences_internal()
2658 short matchlengthNCount[MaxML + 1]; in ZSTD_loadZstdDictionary()
2659 unsigned matchlengthMaxValue = MaxML, matchlengthLog; in ZSTD_loadZstdDictionary()
2666 CHECK_F(ZSTD_checkDictNCount(matchlengthNCount, matchlengthMaxValue, MaxML)); in ZSTD_loadZstdDictionary()
Dzstd_opt.h57 ssPtr->matchLengthSum = MaxML + 1; in ZSTD_rescaleFreqs()
67 for (u = 0; u <= MaxML; u++) in ZSTD_rescaleFreqs()
86 for (u = 0; u <= MaxML; u++) { in ZSTD_rescaleFreqs()
Ddecompress.c850 …size_t const mlhSize = ZSTD_buildSeqTable(dctx->entropy.MLTable, &dctx->MLTptr, MLtype, MaxML, MLF… in ZSTD_decodeSeqHeaders()
947 …static const U32 ML_base[MaxML + 1] = {3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, … in ZSTD_decodeSequence()
1179 …static const U32 ML_base[MaxML + 1] = {3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, … in ZSTD_decodeSequenceLong_generic()
1902 short matchlengthNCount[MaxML + 1]; in ZSTD_loadEntropy()
1903 unsigned matchlengthMaxValue = MaxML, matchlengthLog; in ZSTD_loadEntropy()