Home
last modified time | relevance | path

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

/linux-6.6.21/lib/zstd/common/
Dfse_decompress.c80 U32 highThreshold = tableSize-1; in FSE_buildDTable_internal() local
95 tableDecode[highThreshold--].symbol = (FSE_FUNCTION_TYPE)s; in FSE_buildDTable_internal()
105 if (highThreshold == tableSize - 1) { in FSE_buildDTable_internal()
159 … while (position > highThreshold) position = (position + step) & tableMask; /* lowprob area */ in FSE_buildDTable_internal()
/linux-6.6.21/lib/zstd/compress/
Dfse_compress.c83 U32 highThreshold = tableSize-1; in FSE_buildCTable_wksp() local
105 tableSymbol[highThreshold--] = (FSE_FUNCTION_TYPE)(u-1); in FSE_buildCTable_wksp()
115 if (highThreshold == tableSize - 1) { in FSE_buildCTable_wksp()
162 while (position > highThreshold) in FSE_buildCTable_wksp()
/linux-6.6.21/lib/zstd/decompress/
Dzstd_decompress_block.c455 U32 highThreshold = tableSize - 1; in ZSTD_buildFSETable_body() local
471 tableDecode[highThreshold--].baseValue = s; in ZSTD_buildFSETable_body()
488 if (highThreshold == tableSize - 1) { in ZSTD_buildFSETable_body()
543 … while (position > highThreshold) position = (position + step) & tableMask; /* lowprob area */ in ZSTD_buildFSETable_body()