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

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

Completed in 206 milliseconds