Home
last modified time | relevance | path

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

/openbmc/linux/lib/zstd/compress/
H A Dfse_compress.c392 U32 ToDistribute; in FSE_normalizeM2() local
418 ToDistribute = (1 << tableLog) - distributed; in FSE_normalizeM2()
420 if (ToDistribute == 0) in FSE_normalizeM2()
423 if ((total / ToDistribute) > lowOne) { in FSE_normalizeM2()
425 lowOne = (U32)((total * 3) / (ToDistribute * 2)); in FSE_normalizeM2()
433 ToDistribute = (1 << tableLog) - distributed; in FSE_normalizeM2()
443 norm[maxV] += (short)ToDistribute; in FSE_normalizeM2()
449 for (s=0; ToDistribute > 0; s = (s+1)%(maxSymbolValue+1)) in FSE_normalizeM2()
450 if (norm[s] > 0) { ToDistribute--; norm[s]++; } in FSE_normalizeM2()
456 …U64 const rStep = ZSTD_div64((((U64)1<<vStepLog) * ToDistribute) + mid, (U32)total); /* scale on… in FSE_normalizeM2()