Home
last modified time | relevance | path

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

/dragonfly/contrib/zstd/lib/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()
/dragonfly/contrib/zstd/lib/compress/
H A Dfse_compress.c82 U32 highThreshold = tableSize-1; in FSE_buildCTable_wksp() local
104 tableSymbol[highThreshold--] = (FSE_FUNCTION_TYPE)(u-1); in FSE_buildCTable_wksp()
120 while (position > highThreshold) in FSE_buildCTable_wksp()
/dragonfly/contrib/zstd/lib/decompress/
H A Dzstd_decompress_block.c379 U32 highThreshold = tableSize - 1; in ZSTD_buildFSETable_body() local
395 tableDecode[highThreshold--].baseValue = s; in ZSTD_buildFSETable_body()
412 if (highThreshold == tableSize - 1) { in ZSTD_buildFSETable_body()
467 … while (position > highThreshold) position = (position + step) & tableMask; /* lowprob area */ in ZSTD_buildFSETable_body()