Home
last modified time | relevance | path

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

/freebsd-12.1/sys/contrib/zstd/lib/common/
H A Dfse_decompress.c125 { U32 const tableMask = tableSize-1; in FSE_buildDTable() local
132 position = (position + step) & tableMask; in FSE_buildDTable()
133 … while (position > highThreshold) position = (position + step) & tableMask; /* lowprob area */ in FSE_buildDTable()
181 const unsigned tableMask = tableSize - 1; in FSE_buildDTable_raw() local
182 const unsigned maxSV1 = tableMask+1; in FSE_buildDTable_raw()
/freebsd-12.1/sys/contrib/zstd/lib/compress/
H A Dfse_compress.c88 U32 const tableMask = tableSize - 1; in FSE_buildCTable_wksp() local
127 position = (position + step) & tableMask; in FSE_buildCTable_wksp()
128 … while (position > highThreshold) position = (position + step) & tableMask; /* Low proba area */ in FSE_buildCTable_wksp()
649 const unsigned tableMask = tableSize - 1; in FSE_buildCTable_raw() local
650 const unsigned maxSymbolValue = tableMask; in FSE_buildCTable_raw()
/freebsd-12.1/sys/contrib/zstd/lib/legacy/
H A Dzstd_v01.c406 const U32 tableMask = tableSize-1; in FSE_buildDTable() local
442 position = (position + step) & tableMask; in FSE_buildDTable()
443 … while (position > highThreshold) position = (position + step) & tableMask; /* lowprob area */ in FSE_buildDTable()
621 const unsigned tableMask = tableSize - 1; in FSE_buildDTable_raw() local
622 const unsigned maxSymbolValue = tableMask; in FSE_buildDTable_raw()
H A Dzstd_v03.c1092 const U32 tableMask = tableSize-1; in FSE_buildDTable() local
1128 position = (position + step) & tableMask; in FSE_buildDTable()
1129 … while (position > highThreshold) position = (position + step) & tableMask; /* lowprob area */ in FSE_buildDTable()
1307 const unsigned tableMask = tableSize - 1; in FSE_buildDTable_raw() local
1308 const unsigned maxSymbolValue = tableMask; in FSE_buildDTable_raw()
H A Dzstd_v02.c1091 const U32 tableMask = tableSize-1; in FSE_buildDTable() local
1127 position = (position + step) & tableMask; in FSE_buildDTable()
1128 … while (position > highThreshold) position = (position + step) & tableMask; /* lowprob area */ in FSE_buildDTable()
1306 const unsigned tableMask = tableSize - 1; in FSE_buildDTable_raw() local
1307 const unsigned maxSymbolValue = tableMask; in FSE_buildDTable_raw()
H A Dzstd_v04.c1131 const U32 tableMask = tableSize-1; in FSE_buildDTable() local
1167 position = (position + step) & tableMask; in FSE_buildDTable()
1168 … while (position > highThreshold) position = (position + step) & tableMask; /* lowprob area */ in FSE_buildDTable()
1348 const unsigned tableMask = tableSize - 1; in FSE_buildDTable_raw() local
1349 const unsigned maxSymbolValue = tableMask; in FSE_buildDTable_raw()
H A Dzstd_v06.c1490 { U32 const tableMask = tableSize-1; in FSEv06_buildDTable() local
1497 position = (position + step) & tableMask; in FSEv06_buildDTable()
1498 … while (position > highThreshold) position = (position + step) & tableMask; /* lowprob area */ in FSEv06_buildDTable()
1548 const unsigned tableMask = tableSize - 1; in FSEv06_buildDTable_raw() local
1549 const unsigned maxSV1 = tableMask+1; in FSEv06_buildDTable_raw()
H A Dzstd_v05.c1213 const U32 tableMask = tableSize-1; in FSEv05_buildDTable() local
1242 position = (position + step) & tableMask; in FSEv05_buildDTable()
1243 … while (position > highThreshold) position = (position + step) & tableMask; /* lowprob area */ in FSEv05_buildDTable()
1402 const unsigned tableMask = tableSize - 1; in FSEv05_buildDTable_raw() local
1403 const unsigned maxSymbolValue = tableMask; in FSEv05_buildDTable_raw()
H A Dzstd_v07.c1510 { U32 const tableMask = tableSize-1; in FSEv07_buildDTable() local
1517 position = (position + step) & tableMask; in FSEv07_buildDTable()
1518 … while (position > highThreshold) position = (position + step) & tableMask; /* lowprob area */ in FSEv07_buildDTable()
1568 const unsigned tableMask = tableSize - 1; in FSEv07_buildDTable_raw() local
1569 const unsigned maxSV1 = tableMask+1; in FSEv07_buildDTable_raw()
/freebsd-12.1/sys/contrib/zstd/lib/decompress/
H A Dzstd_decompress.c838 { U32 const tableMask = tableSize-1; in ZSTD_buildFSETable() local
845 position = (position + step) & tableMask; in ZSTD_buildFSETable()
846 … while (position > highThreshold) position = (position + step) & tableMask; /* lowprob area */ in ZSTD_buildFSETable()