Home
last modified time | relevance | path

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

/Linux-v5.10/lib/zstd/
Dfse_decompress.c130 U32 const tableMask = tableSize - 1; in FSE_buildDTable_wksp() local
137 position = (position + step) & tableMask; in FSE_buildDTable_wksp()
139 position = (position + step) & tableMask; /* lowprob area */ in FSE_buildDTable_wksp()
187 const unsigned tableMask = tableSize - 1; in FSE_buildDTable_raw() local
188 const unsigned maxSV1 = tableMask + 1; in FSE_buildDTable_raw()
Dfse_compress.c95 U32 const tableMask = tableSize - 1; in FSE_buildCTable_wksp() local
147 position = (position + step) & tableMask; in FSE_buildCTable_wksp()
149 position = (position + step) & tableMask; /* Low proba area */ in FSE_buildCTable_wksp()
669 const unsigned tableMask = tableSize - 1; in FSE_buildCTable_raw() local
670 const unsigned maxSymbolValue = tableMask; in FSE_buildCTable_raw()