Home
last modified time | relevance | path

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

/lib/zstd/common/
A Dfse_decompress.c102 size_t const tableMask = tableSize-1; in FSE_buildDTable_internal() local
139 size_t const uPosition = (position + (u * step)) & tableMask; in FSE_buildDTable_internal()
142 position = (position + (unroll * step)) & tableMask; in FSE_buildDTable_internal()
147 U32 const tableMask = tableSize-1; in FSE_buildDTable_internal() local
154 position = (position + step) & tableMask; in FSE_buildDTable_internal()
155 … while (position > highThreshold) position = (position + step) & tableMask; /* lowprob area */ in FSE_buildDTable_internal()
206 const unsigned tableMask = tableSize - 1; in FSE_buildDTable_raw() local
207 const unsigned maxSV1 = tableMask+1; in FSE_buildDTable_raw()
/lib/zstd/decompress/
A Dzstd_decompress_block.c483 size_t const tableMask = tableSize-1; in ZSTD_buildFSETable_body() local
520 size_t const uPosition = (position + (u * step)) & tableMask; in ZSTD_buildFSETable_body()
523 position = (position + (unroll * step)) & tableMask; in ZSTD_buildFSETable_body()
528 U32 const tableMask = tableSize-1; in ZSTD_buildFSETable_body() local
536 position = (position + step) & tableMask; in ZSTD_buildFSETable_body()
537 … while (position > highThreshold) position = (position + step) & tableMask; /* lowprob area */ in ZSTD_buildFSETable_body()

Completed in 11 milliseconds