HomeSort by: relevance | last modified time | path
    Searched refs:highThreshold (Results 1 - 10 of 10) sorted by relevancy

  /src/external/bsd/zstd/dist/lib/common/
fse_decompress.c 67 U32 highThreshold = tableSize-1;
82 tableDecode[highThreshold--].symbol = (FSE_FUNCTION_TYPE)s;
92 if (highThreshold == tableSize - 1) {
144 while (position > highThreshold) position = (position + step) & tableMask; /* lowprob area */
  /src/external/bsd/zstd/dist/lib/compress/
fse_compress.c 84 U32 highThreshold = tableSize-1;
106 tableSymbol[highThreshold--] = (FSE_FUNCTION_TYPE)(u-1);
116 if (highThreshold == tableSize - 1) {
163 while (position > highThreshold)
  /src/external/bsd/zstd/dist/lib/legacy/
zstd_v01.c 368 U32 highThreshold = tableSize-1;
383 tableDecode[highThreshold--].symbol = (FSE_FUNCTION_TYPE)s;
401 while (position > highThreshold) position = (position + step) & tableMask; /* lowprob area */
zstd_v03.c 1045 U32 highThreshold = tableSize-1;
1060 tableDecode[highThreshold--].symbol = (FSE_FUNCTION_TYPE)s;
1078 while (position > highThreshold) position = (position + step) & tableMask; /* lowprob area */
zstd_v02.c 1045 U32 highThreshold = tableSize-1;
1060 tableDecode[highThreshold--].symbol = (FSE_FUNCTION_TYPE)s;
1078 while (position > highThreshold) position = (position + step) & tableMask; /* lowprob area */
zstd_v04.c 1027 U32 highThreshold = tableSize-1;
1043 tableDecode[highThreshold--].symbol = (FSE_FUNCTION_TYPE)s;
1061 while (position > highThreshold) position = (position + step) & tableMask; /* lowprob area */
zstd_v05.c 1167 U32 highThreshold = tableSize-1;
1181 tableDecode[highThreshold--].symbol = (FSEv05_FUNCTION_TYPE)s;
1194 while (position > highThreshold) position = (position + step) & tableMask; /* lowprob area */
zstd_v06.c 1410 U32 highThreshold = tableSize-1;
1424 tableDecode[highThreshold--].symbol = (FSEv06_FUNCTION_TYPE)s;
1442 while (position > highThreshold) position = (position + step) & tableMask; /* lowprob area */
zstd_v07.c 1431 U32 highThreshold = tableSize-1;
1445 tableDecode[highThreshold--].symbol = (FSEv07_FUNCTION_TYPE)s;
1463 while (position > highThreshold) position = (position + step) & tableMask; /* lowprob area */
  /src/external/bsd/zstd/dist/lib/decompress/
zstd_decompress_block.c 496 U32 highThreshold = tableSize - 1;
512 tableDecode[highThreshold--].baseValue = s;
529 if (highThreshold == tableSize - 1) {
585 while (UNLIKELY(position > highThreshold)) position = (position + step) & tableMask; /* lowprob area */

Completed in 62 milliseconds