HomeSort by: relevance | last modified time | path
    Searched defs:tableDecode (Results 1 - 9 of 9) sorted by relevancy

  /src/external/bsd/zstd/dist/lib/common/
fse_decompress.c 61 FSE_DECODE_TYPE* const tableDecode = (FSE_DECODE_TYPE*) (tdPtr);
82 tableDecode[highThreshold--].symbol = (FSE_FUNCTION_TYPE)s;
129 tableDecode[uPosition].symbol = spread[s + u];
142 tableDecode[position].symbol = (FSE_FUNCTION_TYPE)s;
152 FSE_FUNCTION_TYPE const symbol = (FSE_FUNCTION_TYPE)(tableDecode[u].symbol);
154 tableDecode[u].nbBits = (BYTE) (tableLog - ZSTD_highbit32(nextState) );
155 tableDecode[u].newState = (U16) ( (nextState << tableDecode[u].nbBits) - tableSize);
  /src/external/bsd/zstd/dist/lib/decompress/
zstd_decompress_block.c 490 ZSTD_seqSymbol* const tableDecode = dt+1;
512 tableDecode[highThreshold--].baseValue = s;
569 tableDecode[uPosition].baseValue = spread[s + u];
583 tableDecode[position].baseValue = s;
594 U32 const symbol = tableDecode[u].baseValue;
596 tableDecode[u].nbBits = (BYTE) (tableLog - ZSTD_highbit32(nextState) );
597 tableDecode[u].nextState = (U16) ( (nextState << tableDecode[u].nbBits) - tableSize);
599 tableDecode[u].nbAdditionalBits = nbAdditionalBits[symbol];
600 tableDecode[u].baseValue = baseValue[symbol]
    [all...]
  /src/external/bsd/zstd/dist/lib/legacy/
zstd_v01.c 362 FSE_DECODE_TYPE* const tableDecode = (FSE_DECODE_TYPE*)(ptr) + 1; /* because dt is unsigned, 32-bits aligned on 32-bits */
383 tableDecode[highThreshold--].symbol = (FSE_FUNCTION_TYPE)s;
399 tableDecode[position].symbol = (FSE_FUNCTION_TYPE)s;
412 FSE_FUNCTION_TYPE symbol = (FSE_FUNCTION_TYPE)(tableDecode[i].symbol);
414 tableDecode[i].nbBits = (BYTE) (tableLog - FSE_highbit32 ((U32)nextState) );
415 tableDecode[i].newState = (U16) ( (nextState << tableDecode[i].nbBits) - tableSize);
zstd_v03.c 1039 FSE_DECODE_TYPE* const tableDecode = (FSE_DECODE_TYPE*)ptr;
1060 tableDecode[highThreshold--].symbol = (FSE_FUNCTION_TYPE)s;
1076 tableDecode[position].symbol = (FSE_FUNCTION_TYPE)s;
1089 FSE_FUNCTION_TYPE symbol = (FSE_FUNCTION_TYPE)(tableDecode[i].symbol);
1091 tableDecode[i].nbBits = (BYTE) (tableLog - BIT_highbit32 ((U32)nextState) );
1092 tableDecode[i].newState = (U16) ( (nextState << tableDecode[i].nbBits) - tableSize);
zstd_v04.c 1021 FSE_DECODE_TYPE* const tableDecode = (FSE_DECODE_TYPE*) (tdPtr);
1037 memset(tableDecode, 0, sizeof(FSE_DECODE_TYPE) * (maxSymbolValue+1) ); /* useless init, but keep static analyzer happy, and we don't need to performance optimize legacy decoders */
1043 tableDecode[highThreshold--].symbol = (FSE_FUNCTION_TYPE)s;
1059 tableDecode[position].symbol = (FSE_FUNCTION_TYPE)s;
1072 FSE_FUNCTION_TYPE symbol = (FSE_FUNCTION_TYPE)(tableDecode[i].symbol);
1074 tableDecode[i].nbBits = (BYTE) (tableLog - BIT_highbit32 ((U32)nextState) );
1075 tableDecode[i].newState = (U16) ( (nextState << tableDecode[i].nbBits) - tableSize);
zstd_v02.c 1038 FSE_DECODE_TYPE* const tableDecode = (FSE_DECODE_TYPE*)ptr;
1060 tableDecode[highThreshold--].symbol = (FSE_FUNCTION_TYPE)s;
1076 tableDecode[position].symbol = (FSE_FUNCTION_TYPE)s;
1089 FSE_FUNCTION_TYPE symbol = (FSE_FUNCTION_TYPE)(tableDecode[i].symbol);
1091 tableDecode[i].nbBits = (BYTE) (tableLog - BIT_highbit32 ((U32)nextState) );
1092 tableDecode[i].newState = (U16) ( (nextState << tableDecode[i].nbBits) - tableSize);
zstd_v05.c 1161 FSEv05_DECODE_TYPE* const tableDecode = (FSEv05_DECODE_TYPE*) (tdPtr);
1177 memset(tableDecode, 0, sizeof(FSEv05_FUNCTION_TYPE) * (maxSymbolValue+1) ); /* useless init, but keep static analyzer happy, and we don't need to performance optimize legacy decoders */
1181 tableDecode[highThreshold--].symbol = (FSEv05_FUNCTION_TYPE)s;
1192 tableDecode[position].symbol = (FSEv05_FUNCTION_TYPE)s;
1203 FSEv05_FUNCTION_TYPE symbol = (FSEv05_FUNCTION_TYPE)(tableDecode[i].symbol);
1205 tableDecode[i].nbBits = (BYTE) (tableLog - BITv05_highbit32 ((U32)nextState) );
1206 tableDecode[i].newState = (U16) ( (nextState << tableDecode[i].nbBits) - tableSize);
zstd_v06.c 1405 FSEv06_DECODE_TYPE* const tableDecode = (FSEv06_DECODE_TYPE*) (tdPtr);
1424 tableDecode[highThreshold--].symbol = (FSEv06_FUNCTION_TYPE)s;
1440 tableDecode[position].symbol = (FSEv06_FUNCTION_TYPE)s;
1451 FSEv06_FUNCTION_TYPE const symbol = (FSEv06_FUNCTION_TYPE)(tableDecode[u].symbol);
1453 tableDecode[u].nbBits = (BYTE) (tableLog - BITv06_highbit32 ((U32)nextState) );
1454 tableDecode[u].newState = (U16) ( (nextState << tableDecode[u].nbBits) - tableSize);
zstd_v07.c 1426 FSEv07_DECODE_TYPE* const tableDecode = (FSEv07_DECODE_TYPE*) (tdPtr);
1445 tableDecode[highThreshold--].symbol = (FSEv07_FUNCTION_TYPE)s;
1461 tableDecode[position].symbol = (FSEv07_FUNCTION_TYPE)s;
1472 FSEv07_FUNCTION_TYPE const symbol = (FSEv07_FUNCTION_TYPE)(tableDecode[u].symbol);
1474 tableDecode[u].nbBits = (BYTE) (tableLog - BITv07_highbit32 ((U32)nextState) );
1475 tableDecode[u].newState = (U16) ( (nextState << tableDecode[u].nbBits) - tableSize);

Completed in 156 milliseconds