Home
last modified time | relevance | path

Searched refs:tableSize (Results 1 – 3 of 3) sorted by relevance

/lib/zstd/common/
A Dfse_decompress.c75 U32 const tableSize = 1 << tableLog; in FSE_buildDTable_internal() local
76 U32 highThreshold = tableSize-1; in FSE_buildDTable_internal()
101 if (highThreshold == tableSize - 1) { in FSE_buildDTable_internal()
102 size_t const tableMask = tableSize-1; in FSE_buildDTable_internal()
103 size_t const step = FSE_TABLESTEP(tableSize); in FSE_buildDTable_internal()
136 for (s = 0; s < (size_t)tableSize; s += unroll) { in FSE_buildDTable_internal()
147 U32 const tableMask = tableSize-1; in FSE_buildDTable_internal()
148 U32 const step = FSE_TABLESTEP(tableSize); in FSE_buildDTable_internal()
162 for (u=0; u<tableSize; u++) { in FSE_buildDTable_internal()
205 const unsigned tableSize = 1 << nbBits; in FSE_buildDTable_raw() local
[all …]
A Dfse.h558 { U32 const tableSize = 1 << tableLog; in FSE_bitCost() local
559 U32 const deltaFromThreshold = threshold - (symbolTT[symbolValue].deltaNbBits + tableSize); in FSE_bitCost()
562 assert(symbolTT[symbolValue].deltaNbBits + tableSize <= threshold); in FSE_bitCost()
684 #define FSE_TABLESTEP(tableSize) (((tableSize)>>1) + ((tableSize)>>3) + 3) argument
/lib/zstd/decompress/
A Dzstd_decompress_block.c446 U32 const tableSize = 1 << tableLog; in ZSTD_buildFSETable_body() local
450 U32 highThreshold = tableSize - 1; in ZSTD_buildFSETable_body()
476 assert(tableSize <= 512); in ZSTD_buildFSETable_body()
482 if (highThreshold == tableSize - 1) { in ZSTD_buildFSETable_body()
483 size_t const tableMask = tableSize-1; in ZSTD_buildFSETable_body()
484 size_t const step = FSE_TABLESTEP(tableSize); in ZSTD_buildFSETable_body()
516 assert(tableSize % unroll == 0); /* FSE_MIN_TABLELOG is 5 */ in ZSTD_buildFSETable_body()
517 for (s = 0; s < (size_t)tableSize; s += unroll) { in ZSTD_buildFSETable_body()
528 U32 const tableMask = tableSize-1; in ZSTD_buildFSETable_body()
529 U32 const step = FSE_TABLESTEP(tableSize); in ZSTD_buildFSETable_body()
[all …]

Completed in 17 milliseconds