Home
last modified time | relevance | path

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

/linux-4.19.296/lib/zstd/
Dzstd_internal.h103 #define MaxLL 35 macro
105 #define MaxSeq MAX(MaxLL, MaxML) /* Assumption : MaxOff < MaxLL,MaxML */
110 static const U32 LL_bits[MaxLL + 1] = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, …
111 static const S16 LL_defaultNorm[MaxLL + 1] = {4, 3, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 1, 1, 2, 2,…
Dcompress.c86 FSE_CTable litlengthCTable[FSE_CTABLE_SIZE_U32(LLFSELog, MaxLL)];
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()
309 zc->seqStore.matchLengthFreq = zc->seqStore.litLengthFreq + (MaxLL + 1); in ZSTD_resetCCtx_advanced()
581 llCodeTable[seqStorePtr->longLengthPos] = MaxLL; in ZSTD_seqToCodes()
652 U32 max = MaxLL; in ZSTD_compressSequences_internal()
661 …FSE_buildCTable_wksp(CTable_LitLength, LL_defaultNorm, MaxLL, LL_defaultNormLog, workspace, worksp… in ZSTD_compressSequences_internal()
2674 short litlengthNCount[MaxLL + 1]; in ZSTD_loadZstdDictionary()
2675 unsigned litlengthMaxValue = MaxLL, litlengthLog; in ZSTD_loadZstdDictionary()
2682 CHECK_F(ZSTD_checkDictNCount(litlengthNCount, litlengthMaxValue, MaxLL)); in ZSTD_loadZstdDictionary()
Dzstd_opt.h56 ssPtr->litLengthSum = MaxLL + 1; in ZSTD_rescaleFreqs()
65 for (u = 0; u <= MaxLL; u++) in ZSTD_rescaleFreqs()
82 for (u = 0; u <= MaxLL; u++) { in ZSTD_rescaleFreqs()
Ddecompress.c836 …size_t const llhSize = ZSTD_buildSeqTable(dctx->entropy.LLTable, &dctx->LLTptr, LLtype, MaxLL, LLF… in ZSTD_decodeSeqHeaders()
944 …static const U32 LL_base[MaxLL + 1] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, … in ZSTD_decodeSequence()
1176 …static const U32 LL_base[MaxLL + 1] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, … in ZSTD_decodeSequenceLong_generic()
1914 short litlengthNCount[MaxLL + 1]; in ZSTD_loadEntropy()
1915 unsigned litlengthMaxValue = MaxLL, litlengthLog; in ZSTD_loadEntropy()