Home
last modified time | relevance | path

Searched refs:highThreshold (Results 1 - 5 of 5) sorted by relevance

/kernel/linux/linux-5.10/lib/zstd/
H A Dfse_decompress.c96 U32 highThreshold = tableSize - 1; in FSE_buildDTable_wksp() local
116 tableDecode[highThreshold--].symbol = (FSE_FUNCTION_TYPE)s; in FSE_buildDTable_wksp()
138 while (position > highThreshold) in FSE_buildDTable_wksp()
H A Dfse_compress.c101 U32 highThreshold = tableSize - 1; in FSE_buildCTable_wksp() local
131 tableSymbol[highThreshold--] = (FSE_FUNCTION_TYPE)(u - 1); in FSE_buildCTable_wksp()
148 while (position > highThreshold) in FSE_buildCTable_wksp()
/kernel/linux/linux-6.6/lib/zstd/common/
H A 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()
/kernel/linux/linux-6.6/lib/zstd/compress/
H A 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()
/kernel/linux/linux-6.6/lib/zstd/decompress/
H A 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()

Completed in 9 milliseconds