/freebsd/sys/contrib/zstd/lib/common/ |
H A D | fse_decompress.c | 106 size_t const tableMask = tableSize-1; in FSE_buildDTable_internal() local 143 size_t const uPosition = (position + (u * step)) & tableMask; in FSE_buildDTable_internal() 146 position = (position + (unroll * step)) & tableMask; in FSE_buildDTable_internal() 151 U32 const tableMask = tableSize-1; in FSE_buildDTable_internal() local 158 position = (position + step) & tableMask; in FSE_buildDTable_internal() 159 … while (position > highThreshold) position = (position + step) & tableMask; /* lowprob area */ in FSE_buildDTable_internal() 212 const unsigned tableMask = tableSize - 1; in FSE_buildDTable_raw() local 213 const unsigned maxSV1 = tableMask+1; in FSE_buildDTable_raw()
|
/freebsd/sys/contrib/openzfs/module/zstd/lib/common/ |
H A D | fse_decompress.c | 91 { U32 const tableMask = tableSize-1; in FSE_buildDTable() local 98 position = (position + step) & tableMask; in FSE_buildDTable() 99 … while (position > highThreshold) position = (position + step) & tableMask; /* lowprob area */ in FSE_buildDTable() 147 const unsigned tableMask = tableSize - 1; in FSE_buildDTable_raw() local 148 const unsigned maxSV1 = tableMask+1; in FSE_buildDTable_raw()
|
/freebsd/sys/contrib/zstd/lib/compress/ |
H A D | fse_compress.c | 72 U32 const tableMask = tableSize - 1; in FSE_buildCTable_wksp() local 146 size_t const uPosition = (position + (u * step)) & tableMask; in FSE_buildCTable_wksp() 149 position = (position + (unroll * step)) & tableMask; in FSE_buildCTable_wksp() 161 position = (position + step) & tableMask; in FSE_buildCTable_wksp() 163 position = (position + step) & tableMask; /* Low proba area */ in FSE_buildCTable_wksp() 540 const unsigned tableMask = tableSize - 1; in FSE_buildCTable_raw() local 541 const unsigned maxSymbolValue = tableMask; in FSE_buildCTable_raw()
|
/freebsd/sys/contrib/openzfs/module/zstd/lib/compress/ |
H A D | fse_compress.c | 71 U32 const tableMask = tableSize - 1; in FSE_buildCTable_wksp() local 116 position = (position + step) & tableMask; in FSE_buildCTable_wksp() 118 position = (position + step) & tableMask; /* Low proba area */ in FSE_buildCTable_wksp() 501 const unsigned tableMask = tableSize - 1; in FSE_buildCTable_raw() local 502 const unsigned maxSymbolValue = tableMask; in FSE_buildCTable_raw()
|
/freebsd/sys/contrib/zstd/lib/legacy/ |
H A D | zstd_v01.c | 402 const U32 tableMask = tableSize-1; in FSE_buildDTable() local 438 position = (position + step) & tableMask; in FSE_buildDTable() 439 … while (position > highThreshold) position = (position + step) & tableMask; /* lowprob area */ in FSE_buildDTable() 617 const unsigned tableMask = tableSize - 1; in FSE_buildDTable_raw() local 618 const unsigned maxSymbolValue = tableMask; in FSE_buildDTable_raw()
|
H A D | zstd_v03.c | 1103 const U32 tableMask = tableSize-1; in FSE_buildDTable() local 1139 position = (position + step) & tableMask; in FSE_buildDTable() 1140 … while (position > highThreshold) position = (position + step) & tableMask; /* lowprob area */ in FSE_buildDTable() 1318 const unsigned tableMask = tableSize - 1; in FSE_buildDTable_raw() local 1319 const unsigned maxSymbolValue = tableMask; in FSE_buildDTable_raw()
|
H A D | zstd_v02.c | 1102 const U32 tableMask = tableSize-1; in FSE_buildDTable() local 1138 position = (position + step) & tableMask; in FSE_buildDTable() 1139 … while (position > highThreshold) position = (position + step) & tableMask; /* lowprob area */ in FSE_buildDTable() 1317 const unsigned tableMask = tableSize - 1; in FSE_buildDTable_raw() local 1318 const unsigned maxSymbolValue = tableMask; in FSE_buildDTable_raw()
|
H A D | zstd_v04.c | 1079 const U32 tableMask = tableSize-1; in FSE_buildDTable() local 1116 position = (position + step) & tableMask; in FSE_buildDTable() 1117 … while (position > highThreshold) position = (position + step) & tableMask; /* lowprob area */ in FSE_buildDTable() 1297 const unsigned tableMask = tableSize - 1; in FSE_buildDTable_raw() local 1298 const unsigned maxSymbolValue = tableMask; in FSE_buildDTable_raw()
|
H A D | zstd_v05.c | 1215 const U32 tableMask = tableSize-1; in FSEv05_buildDTable() local 1245 position = (position + step) & tableMask; in FSEv05_buildDTable() 1246 … while (position > highThreshold) position = (position + step) & tableMask; /* lowprob area */ in FSEv05_buildDTable() 1405 const unsigned tableMask = tableSize - 1; in FSEv05_buildDTable_raw() local 1406 const unsigned maxSymbolValue = tableMask; in FSEv05_buildDTable_raw()
|
H A D | zstd_v06.c | 1490 { 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 D | zstd_v07.c | 1510 { 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/sys/contrib/zstd/lib/decompress/ |
H A D | zstd_decompress_block.c | 489 size_t const tableMask = tableSize-1; in ZSTD_buildFSETable_body() local 526 size_t const uPosition = (position + (u * step)) & tableMask; in ZSTD_buildFSETable_body() 529 position = (position + (unroll * step)) & tableMask; in ZSTD_buildFSETable_body() 534 U32 const tableMask = tableSize-1; in ZSTD_buildFSETable_body() local 542 position = (position + step) & tableMask; in ZSTD_buildFSETable_body() 543 … while (position > highThreshold) position = (position + step) & tableMask; /* lowprob area */ in ZSTD_buildFSETable_body()
|
/freebsd/sys/contrib/openzfs/module/zstd/lib/decompress/ |
H A D | zstd_decompress_block.c | 403 { U32 const tableMask = tableSize-1; in ZSTD_buildFSETable() local 410 position = (position + step) & tableMask; in ZSTD_buildFSETable() 411 … while (position > highThreshold) position = (position + step) & tableMask; /* lowprob area */ in ZSTD_buildFSETable()
|