Home
last modified time | relevance | path

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

/linux-4.19.296/lib/zstd/
Dfse_compress.c103 U32 *cumul; in FSE_buildCTable_wksp() local
107 cumul = (U32 *)workspace + spaceUsed32; in FSE_buildCTable_wksp()
127 cumul[0] = 0; in FSE_buildCTable_wksp()
130 cumul[u] = cumul[u - 1] + 1; in FSE_buildCTable_wksp()
133 cumul[u] = cumul[u - 1] + normalizedCounter[u - 1]; in FSE_buildCTable_wksp()
136 cumul[maxSymbolValue + 1] = tableSize + 1; in FSE_buildCTable_wksp()
162 …tableU16[cumul[s]++] = (U16)(tableSize + u); /* TableU16 : sorted by symbol order; gives next stat… in FSE_buildCTable_wksp()