Searched refs:MaxLL (Results 1 – 8 of 8) sorted by relevance
/Linux-v6.6/lib/zstd/common/ |
D | zstd_internal.h | 98 #define MaxLL 35 macro 101 #define MaxSeq MAX(MaxLL, MaxML) /* Assumption : MaxOff < MaxLL,MaxML */ 109 #define ZSTD_MAX_FSE_HEADERS_SIZE (((MaxML + 1) * MLFSELog + (MaxLL + 1) * LLFSELog + (MaxOff + 1) … 111 static UNUSED_ATTR const U8 LL_bits[MaxLL+1] = { 118 static UNUSED_ATTR const S16 LL_defaultNorm[MaxLL+1] = {
|
/Linux-v6.6/lib/zstd/decompress/ |
D | zstd_decompress_internal.h | 30 static UNUSED_ATTR const U32 LL_base[MaxLL+1] = {
|
D | zstd_decompress.c | 1346 { short litlengthNCount[MaxLL+1]; in ZSTD_loadDEntropy() 1347 unsigned litlengthMaxValue = MaxLL, litlengthLog; in ZSTD_loadDEntropy() 1350 RETURN_ERROR_IF(litlengthMaxValue > MaxLL, dictionary_corrupted, ""); in ZSTD_loadDEntropy()
|
D | zstd_decompress_block.c | 693 LLtype, MaxLL, LLFSELog, in ZSTD_decodeSeqHeaders()
|
/Linux-v6.6/lib/zstd/compress/ |
D | zstd_compress_superblock.c | 376 … cSeqSizeEstimate += ZSTD_estimateSubBlockSize_symbolType(fseMetadata->llType, llCodeTable, MaxLL, in ZSTD_estimateSubBlockSize_sequences() 378 LL_defaultNorm, LL_defaultNormLog, MaxLL, in ZSTD_estimateSubBlockSize_sequences()
|
D | zstd_opt.c | 159 for (ll=0; ll<=MaxLL; ll++) { in ZSTD_rescaleFreqs() 200 { unsigned const baseLLfreqs[MaxLL+1] = { in ZSTD_rescaleFreqs() 208 optPtr->litLengthSum = sum_u32(baseLLfreqs, MaxLL+1); in ZSTD_rescaleFreqs() 234 optPtr->litLengthSum = ZSTD_scaleStats(optPtr->litLengthFreq, MaxLL, 11); in ZSTD_rescaleFreqs()
|
D | zstd_compress.c | 1367 + ZSTD_cwksp_aligned_alloc_size((MaxLL+1) * sizeof(U32)) in ZSTD_sizeof_matchState() 1692 … ms->opt.litLengthFreq = (unsigned*)ZSTD_cwksp_reserve_aligned(ws, (MaxLL+1) * sizeof(unsigned)); in ZSTD_reset_matchState() 2314 llCodeTable[seqStorePtr->longLengthPos] = MaxLL; in ZSTD_seqToCodes() 2382 { unsigned max = MaxLL; in ZSTD_buildSequencesStatistics() 2397 LL_defaultNorm, LL_defaultNormLog, MaxLL, in ZSTD_buildSequencesStatistics() 3224 …eqSizeEstimate += ZSTD_estimateBlockSize_symbolType(fseMetadata->llType, llCodeTable, nbSeq, MaxLL, in ZSTD_estimateBlockSize_sequences() 3226 LL_defaultNorm, LL_defaultNormLog, MaxLL, in ZSTD_estimateBlockSize_sequences() 4276 { short litlengthNCount[MaxLL+1]; in ZSTD_loadCEntropy() 4277 unsigned litlengthMaxValue = MaxLL, litlengthLog; in ZSTD_loadCEntropy() 4286 …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)];
|