Home
last modified time | relevance | path

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

/linux-6.3-rc2/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()
83 U32 highThreshold = tableSize-1; in FSE_buildCTable_wksp()
111 cumul[maxSV1] = (U16)(tableSize+1); in FSE_buildCTable_wksp()
115 if (highThreshold == tableSize - 1) { in FSE_buildCTable_wksp()
169 { U32 u; for (u=0; u<tableSize; u++) { in FSE_buildCTable_wksp()
241 const int tableSize = 1 << tableLog; in FSE_writeNCount_generic() local
256 threshold = tableSize; in FSE_writeNCount_generic()
539 const unsigned tableSize = 1 << nbBits; in FSE_buildCTable_raw() local
[all …]
/linux-6.3-rc2/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.h575 { U32 const tableSize = 1 << tableLog; in FSE_bitCost() local
576 U32 const deltaFromThreshold = threshold - (symbolTT[symbolValue].deltaNbBits + tableSize); in FSE_bitCost()
579 assert(symbolTT[symbolValue].deltaNbBits + tableSize <= threshold); in FSE_bitCost()
706 #define FSE_TABLESTEP(tableSize) (((tableSize)>>1) + ((tableSize)>>3) + 3) argument
/linux-6.3-rc2/arch/arc/kernel/
A Dunwind.c281 tableSize > sizeof(*fde) && tableSize - sizeof(*fde) >= *fde; in init_unwind_hdr()
307 if (tableSize || !n) in init_unwind_hdr()
329 tableSize; in init_unwind_hdr()
932 unsigned long tableSize; in arc_unwind() local
941 tableSize = 2; in arc_unwind()
944 tableSize = 4; in arc_unwind()
947 tableSize = 8; in arc_unwind()
950 tableSize = 0; in arc_unwind()
965 cur + tableSize, in arc_unwind()
976 ptr + tableSize, in arc_unwind()
[all …]
/linux-6.3-rc2/lib/zstd/decompress/
A Dzstd_decompress_block.c451 U32 const tableSize = 1 << tableLog; in ZSTD_buildFSETable_body() local
455 U32 highThreshold = tableSize - 1; in ZSTD_buildFSETable_body()
482 assert(tableSize <= 512); in ZSTD_buildFSETable_body()
488 if (highThreshold == tableSize - 1) { in ZSTD_buildFSETable_body()
489 size_t const tableMask = tableSize-1; in ZSTD_buildFSETable_body()
490 size_t const step = FSE_TABLESTEP(tableSize); in ZSTD_buildFSETable_body()
522 assert(tableSize % unroll == 0); /* FSE_MIN_TABLELOG is 5 */ in ZSTD_buildFSETable_body()
523 for (s = 0; s < (size_t)tableSize; s += unroll) { in ZSTD_buildFSETable_body()
534 U32 const tableMask = tableSize-1; in ZSTD_buildFSETable_body()
535 U32 const step = FSE_TABLESTEP(tableSize); in ZSTD_buildFSETable_body()
[all …]

Completed in 15 milliseconds