Searched refs:MaxLL (Results 1 – 8 of 8) sorted by relevance
/linux-6.1.9/lib/zstd/common/ |
D | zstd_internal.h | 172 #define MaxLL 35 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) … 185 static UNUSED_ATTR const U32 LL_bits[MaxLL+1] = { 192 static UNUSED_ATTR const S16 LL_defaultNorm[MaxLL+1] = {
|
/linux-6.1.9/lib/zstd/decompress/ |
D | zstd_decompress_internal.h | 30 static UNUSED_ATTR const U32 LL_base[MaxLL+1] = {
|
D | zstd_decompress.c | 1281 { short litlengthNCount[MaxLL+1]; in ZSTD_loadDEntropy() 1282 unsigned litlengthMaxValue = MaxLL, litlengthLog; in ZSTD_loadDEntropy() 1285 RETURN_ERROR_IF(litlengthMaxValue > MaxLL, dictionary_corrupted, ""); in ZSTD_loadDEntropy()
|
D | zstd_decompress_block.c | 617 LLtype, MaxLL, LLFSELog, in ZSTD_decodeSeqHeaders()
|
/linux-6.1.9/lib/zstd/compress/ |
D | zstd_compress_superblock.c | 199 unsigned max = MaxLL; in ZSTD_buildSuperBlockEntropy_sequences() 211 … countWksp, max, llCodeTable, nbSeq, LL_defaultNorm, LL_defaultNormLog, MaxLL, in ZSTD_buildSuperBlockEntropy_sequences() 655 … cSeqSizeEstimate += ZSTD_estimateSubBlockSize_symbolType(fseMetadata->llType, llCodeTable, MaxLL, in ZSTD_estimateSubBlockSize_sequences() 657 LL_defaultNorm, LL_defaultNormLog, MaxLL, in ZSTD_estimateSubBlockSize_sequences()
|
D | zstd_opt.c | 151 for (ll=0; ll<=MaxLL; ll++) { in ZSTD_rescaleFreqs() 193 for (ll=0; ll<=MaxLL; ll++) in ZSTD_rescaleFreqs() 196 optPtr->litLengthSum = MaxLL+1; in ZSTD_rescaleFreqs() 216 optPtr->litLengthSum = ZSTD_downscaleStat(optPtr->litLengthFreq, MaxLL, 0); in ZSTD_rescaleFreqs() 1254 optPtr->litLengthSum = ZSTD_upscaleStat(optPtr->litLengthFreq, MaxLL, 0); in ZSTD_upscaleStats()
|
D | zstd_compress.c | 1245 + ZSTD_cwksp_alloc_size((MaxLL+1) * sizeof(U32)) in ZSTD_sizeof_matchState() 1528 … ms->opt.litLengthFreq = (unsigned*)ZSTD_cwksp_reserve_aligned(ws, (MaxLL+1) * sizeof(unsigned)); in ZSTD_reset_matchState() 2081 llCodeTable[seqStorePtr->longLengthPos] = MaxLL; in ZSTD_seqToCodes() 2176 { unsigned max = MaxLL; in ZSTD_entropyCompressSequences_internal() 2191 LL_defaultNorm, LL_defaultNormLog, MaxLL, in ZSTD_entropyCompressSequences_internal() 3193 { short litlengthNCount[MaxLL+1]; in ZSTD_loadCEntropy() 3194 unsigned litlengthMaxValue = MaxLL, litlengthLog; in ZSTD_loadCEntropy() 3203 …ntropy.fse.litlength_repeatMode = ZSTD_dictNCountRepeat(litlengthNCount, litlengthMaxValue, MaxLL); in ZSTD_loadCEntropy()
|
D | zstd_compress_internal.h | 67 FSE_CTable litlengthCTable[FSE_CTABLE_SIZE_U32(LLFSELog, MaxLL)];
|