Home
last modified time | relevance | path

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

/linux/lib/zstd/compress/
H A Dfse_compress.c385 U32 ToDistribute; in FSE_normalizeM2() local
411 ToDistribute = (1 << tableLog) - distributed; in FSE_normalizeM2()
413 if (ToDistribute == 0) in FSE_normalizeM2()
416 if ((total / ToDistribute) > lowOne) { in FSE_normalizeM2()
418 lowOne = (U32)((total * 3) / (ToDistribute * 2)); in FSE_normalizeM2()
426 ToDistribute = (1 << tableLog) - distributed; in FSE_normalizeM2()
436 norm[maxV] += (short)ToDistribute; in FSE_normalizeM2()
442 for (s=0; ToDistribute > 0; s = (s+1)%(maxSymbolValue+1)) in FSE_normalizeM2()
443 if (norm[s] > 0) { ToDistribute--; norm[s]++; } in FSE_normalizeM2()
449 …U64 const rStep = ZSTD_div64((((U64)1<<vStepLog) * ToDistribute) + mid, (U32)total); /* scale on… in FSE_normalizeM2()