Searched refs:tableMask (Results 1 – 2 of 2) sorted by relevance
102 size_t const tableMask = tableSize-1; in FSE_buildDTable_internal() local139 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() local154 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() local207 const unsigned maxSV1 = tableMask+1; in FSE_buildDTable_raw()
483 size_t const tableMask = tableSize-1; in ZSTD_buildFSETable_body() local520 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() local536 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