Home
last modified time | relevance | path

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

/linux-4.19.296/lib/zstd/
Dfse_decompress.c137 U32 const tableMask = tableSize - 1; in FSE_buildDTable_wksp() local
144 position = (position + step) & tableMask; in FSE_buildDTable_wksp()
146 position = (position + step) & tableMask; /* lowprob area */ in FSE_buildDTable_wksp()
194 const unsigned tableMask = tableSize - 1; in FSE_buildDTable_raw() local
195 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()