Lines Matching refs:tableMask
2854 { U32 const tableMask = tableSize-1; in FSE_buildDTable() local
2861 position = (position + step) & tableMask; in FSE_buildDTable()
2862 … while (position > highThreshold) position = (position + step) & tableMask; /* lowprob area */ in FSE_buildDTable()
2910 const unsigned tableMask = tableSize - 1; in FSE_buildDTable_raw() local
2911 const unsigned maxSV1 = tableMask+1; in FSE_buildDTable_raw()
7550 U32 const tableMask = tableSize - 1; in FSE_buildCTable_wksp() local
7595 position = (position + step) & tableMask; in FSE_buildCTable_wksp()
7597 position = (position + step) & tableMask; /* Low proba area */ in FSE_buildCTable_wksp()
7980 const unsigned tableMask = tableSize - 1; in FSE_buildCTable_raw() local
7981 const unsigned maxSymbolValue = tableMask; in FSE_buildCTable_raw()
26796 { U32 const tableMask = tableSize-1; in ZSTD_buildFSETable() local
26803 position = (position + step) & tableMask; in ZSTD_buildFSETable()
26804 … while (position > highThreshold) position = (position + step) & tableMask; /* lowprob area */ in ZSTD_buildFSETable()