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