Home
last modified time | relevance | path

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

/linux/lib/zstd/common/
A Dfse_decompress.c79 U32 const tableSize = 1 << tableLog; in FSE_buildDTable_internal() local
80 U32 highThreshold = tableSize-1; in FSE_buildDTable_internal()
105 if (highThreshold == tableSize - 1) { in FSE_buildDTable_internal()
106 size_t const tableMask = tableSize-1; in FSE_buildDTable_internal()
107 size_t const step = FSE_TABLESTEP(tableSize); in FSE_buildDTable_internal()
140 for (s = 0; s < (size_t)tableSize; s += unroll) { in FSE_buildDTable_internal()
151 U32 const tableMask = tableSize-1; in FSE_buildDTable_internal()
152 U32 const step = FSE_TABLESTEP(tableSize); in FSE_buildDTable_internal()
166 for (u=0; u<tableSize; u++) { in FSE_buildDTable_internal()
211 const unsigned tableSize = 1 << nbBits; in FSE_buildDTable_raw() local
[all …]
A Dfse.h574 { U32 const tableSize = 1 << tableLog; in FSE_bitCost() local
575 U32 const deltaFromThreshold = threshold - (symbolTT[symbolValue].deltaNbBits + tableSize); in FSE_bitCost()
578 assert(symbolTT[symbolValue].deltaNbBits + tableSize <= threshold); in FSE_bitCost()
705 #define FSE_TABLESTEP(tableSize) (((tableSize)>>1) + ((tableSize)>>3) + 3) argument
/linux/lib/zstd/compress/
A Dfse_compress.c71 U32 const tableSize = 1 << tableLog; in FSE_buildCTable_wksp() local
72 U32 const tableMask = tableSize - 1; in FSE_buildCTable_wksp()
77 U32 const step = FSE_TABLESTEP(tableSize); in FSE_buildCTable_wksp()
82 U32 highThreshold = tableSize-1; in FSE_buildCTable_wksp()
108 cumul[maxSymbolValue+1] = tableSize+1; in FSE_buildCTable_wksp()
128 { U32 u; for (u=0; u<tableSize; u++) { in FSE_buildCTable_wksp()
198 const int tableSize = 1 << tableLog; in FSE_writeNCount_generic() local
213 threshold = tableSize; in FSE_writeNCount_generic()
496 const unsigned tableSize = 1 << nbBits; in FSE_buildCTable_raw() local
513 for (s=0; s<tableSize; s++) in FSE_buildCTable_raw()
[all …]
/linux/arch/arc/kernel/
A Dunwind.c286 tableSize > sizeof(*fde) && tableSize - sizeof(*fde) >= *fde; in init_unwind_hdr()
312 if (tableSize || !n) in init_unwind_hdr()
334 tableSize; in init_unwind_hdr()
937 unsigned long tableSize; in arc_unwind() local
946 tableSize = 2; in arc_unwind()
949 tableSize = 4; in arc_unwind()
952 tableSize = 8; in arc_unwind()
955 tableSize = 0; in arc_unwind()
970 cur + tableSize, in arc_unwind()
981 ptr + tableSize, in arc_unwind()
[all …]
/linux/lib/zstd/decompress/
A Dzstd_decompress_block.c375 U32 const tableSize = 1 << tableLog; in ZSTD_buildFSETable_body() local
379 U32 highThreshold = tableSize - 1; in ZSTD_buildFSETable_body()
406 assert(tableSize <= 512); in ZSTD_buildFSETable_body()
412 if (highThreshold == tableSize - 1) { in ZSTD_buildFSETable_body()
413 size_t const tableMask = tableSize-1; in ZSTD_buildFSETable_body()
414 size_t const step = FSE_TABLESTEP(tableSize); in ZSTD_buildFSETable_body()
446 assert(tableSize % unroll == 0); /* FSE_MIN_TABLELOG is 5 */ in ZSTD_buildFSETable_body()
447 for (s = 0; s < (size_t)tableSize; s += unroll) { in ZSTD_buildFSETable_body()
458 U32 const tableMask = tableSize-1; in ZSTD_buildFSETable_body()
459 U32 const step = FSE_TABLESTEP(tableSize); in ZSTD_buildFSETable_body()
[all …]

Completed in 17 milliseconds