Searched refs:ZSTD_upscaleStat (Results 1 – 1 of 1) sorted by relevance
/linux-5.19.10/lib/zstd/compress/ |
D | zstd_opt.c | 1237 static U32 ZSTD_upscaleStat(unsigned* table, U32 lastEltIndex, int bonus) in ZSTD_upscaleStat() function 1253 optPtr->litSum = ZSTD_upscaleStat(optPtr->litFreq, MaxLit, 0); in ZSTD_upscaleStats() 1254 optPtr->litLengthSum = ZSTD_upscaleStat(optPtr->litLengthFreq, MaxLL, 0); in ZSTD_upscaleStats() 1255 optPtr->matchLengthSum = ZSTD_upscaleStat(optPtr->matchLengthFreq, MaxML, 0); in ZSTD_upscaleStats() 1256 optPtr->offCodeSum = ZSTD_upscaleStat(optPtr->offCodeFreq, MaxOff, 0); in ZSTD_upscaleStats()
|