Home
last modified time | relevance | path

Searched refs:matchLengthSum (Results 1 – 3 of 3) sorted by relevance

/linux-6.1.9/lib/zstd/compress/
Dzstd_opt.c89 optPtr->matchLengthSumBasePrice = WEIGHT(optPtr->matchLengthSum, optLevel); in ZSTD_setBasePrices()
162 optPtr->matchLengthSum = 0; in ZSTD_rescaleFreqs()
168 optPtr->matchLengthSum += optPtr->matchLengthFreq[ml]; in ZSTD_rescaleFreqs()
202 optPtr->matchLengthSum = MaxML+1; in ZSTD_rescaleFreqs()
217 optPtr->matchLengthSum = ZSTD_downscaleStat(optPtr->matchLengthFreq, MaxML, 0); in ZSTD_rescaleFreqs()
329 optPtr->matchLengthSum++; in ZSTD_updateStats()
1255 optPtr->matchLengthSum = ZSTD_upscaleStat(optPtr->matchLengthFreq, MaxML, 0); in ZSTD_upscaleStats()
Dzstd_compress_superblock.c412 size_t matchLengthSum = 0; in ZSTD_seqDecompressedSize() local
419 matchLengthSum += seqLen.matchLength; in ZSTD_seqDecompressedSize()
426 return matchLengthSum + litSize; in ZSTD_seqDecompressedSize()
Dzstd_compress_internal.h121 U32 matchLengthSum; /* nb of matchLength codes */ member