Lines Matching refs:ZSTD_seqSymbol

247 static const ZSTD_seqSymbol LL_defaultDTable[(1<<LL_DEFAULTNORMLOG)+1] = {
285 static const ZSTD_seqSymbol OF_defaultDTable[(1<<OF_DEFAULTNORMLOG)+1] = {
308 static const ZSTD_seqSymbol ML_defaultDTable[(1<<ML_DEFAULTNORMLOG)+1] = {
346 static void ZSTD_buildSeqTable_rle(ZSTD_seqSymbol* dt, U32 baseValue, U32 nbAddBits) in ZSTD_buildSeqTable_rle()
350 ZSTD_seqSymbol* const cell = dt + 1; in ZSTD_buildSeqTable_rle()
368 void ZSTD_buildFSETable_body(ZSTD_seqSymbol* dt, in ZSTD_buildFSETable_body()
373 ZSTD_seqSymbol* const tableDecode = dt+1; in ZSTD_buildFSETable_body()
488 static void ZSTD_buildFSETable_body_default(ZSTD_seqSymbol* dt, in ZSTD_buildFSETable_body_default()
498 TARGET_ATTRIBUTE("bmi2") static void ZSTD_buildFSETable_body_bmi2(ZSTD_seqSymbol* dt, in ZSTD_buildFSETable_body_bmi2()
508 void ZSTD_buildFSETable(ZSTD_seqSymbol* dt, in ZSTD_buildFSETable()
529 static size_t ZSTD_buildSeqTable(ZSTD_seqSymbol* DTableSpace, const ZSTD_seqSymbol** DTablePtr, in ZSTD_buildSeqTable()
533 const ZSTD_seqSymbol* defaultTable, U32 flagRepeatTable, in ZSTD_buildSeqTable()
557 size_t const pSize = sizeof(ZSTD_seqSymbol) * (SEQSYMBOL_TABLE_SIZE(maxLog)); in ZSTD_buildSeqTable()
666 const ZSTD_seqSymbol* table;
900 ZSTD_initFseState(ZSTD_fseState* DStatePtr, BIT_DStream_t* bitD, const ZSTD_seqSymbol* dt) in ZSTD_initFseState()
914 ZSTD_seqSymbol const DInfo = DStatePtr->table[DStatePtr->state]; in ZSTD_updateFseState()
921 ZSTD_updateFseStateWithDInfo(ZSTD_fseState* DStatePtr, BIT_DStream_t* bitD, ZSTD_seqSymbol const DI… in ZSTD_updateFseStateWithDInfo()
945 ZSTD_seqSymbol const llDInfo = seqState->stateLL.table[seqState->stateLL.state]; in ZSTD_decodeSequence()
946 ZSTD_seqSymbol const mlDInfo = seqState->stateML.table[seqState->stateML.state]; in ZSTD_decodeSequence()
947 ZSTD_seqSymbol const ofDInfo = seqState->stateOffb.table[seqState->stateOffb.state]; in ZSTD_decodeSequence()
1427 ZSTD_getLongOffsetsShare(const ZSTD_seqSymbol* offTable) in ZSTD_getLongOffsetsShare()
1431 const ZSTD_seqSymbol* table = offTable + 1; in ZSTD_getLongOffsetsShare()