Home
last modified time | relevance | path

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

/linux/lib/zstd/common/
H A Dfse_decompress.c68 U32 highThreshold = tableSize-1; in FSE_buildDTable_internal() local
83 tableDecode[highThreshold--].symbol = (FSE_FUNCTION_TYPE)s; in FSE_buildDTable_internal()
93 if (highThreshold == tableSize - 1) { in FSE_buildDTable_internal()
145 … while (position > highThreshold) position = (position + step) & tableMask; /* lowprob area */ in FSE_buildDTable_internal()
/linux/lib/zstd/compress/
H A Dfse_compress.c85 U32 highThreshold = tableSize-1; in FSE_buildCTable_wksp() local
107 tableSymbol[highThreshold--] = (FSE_FUNCTION_TYPE)(u-1); in FSE_buildCTable_wksp()
117 if (highThreshold == tableSize - 1) { in FSE_buildCTable_wksp()
164 while (position > highThreshold) in FSE_buildCTable_wksp()
/linux/lib/zstd/decompress/
H A Dzstd_decompress_block.c497 U32 highThreshold = tableSize - 1; in ZSTD_buildFSETable_body() local
513 tableDecode[highThreshold--].baseValue = s; in ZSTD_buildFSETable_body()
530 if (highThreshold == tableSize - 1) { in ZSTD_buildFSETable_body()
586 …while (UNLIKELY(position > highThreshold)) position = (position + step) & tableMask; /* lowprob … in ZSTD_buildFSETable_body()