Lines Matching refs:ZSTD_seqSymbol
365 static const ZSTD_seqSymbol LL_defaultDTable[(1<<LL_DEFAULTNORMLOG)+1] = {
403 static const ZSTD_seqSymbol OF_defaultDTable[(1<<OF_DEFAULTNORMLOG)+1] = {
426 static const ZSTD_seqSymbol ML_defaultDTable[(1<<ML_DEFAULTNORMLOG)+1] = {
464 static void ZSTD_buildSeqTable_rle(ZSTD_seqSymbol* dt, U32 baseValue, U8 nbAddBits) in ZSTD_buildSeqTable_rle()
468 ZSTD_seqSymbol* const cell = dt + 1; in ZSTD_buildSeqTable_rle()
486 void ZSTD_buildFSETable_body(ZSTD_seqSymbol* dt, in ZSTD_buildFSETable_body()
491 ZSTD_seqSymbol* const tableDecode = dt+1; in ZSTD_buildFSETable_body()
607 static void ZSTD_buildFSETable_body_default(ZSTD_seqSymbol* dt, in ZSTD_buildFSETable_body_default()
617 BMI2_TARGET_ATTRIBUTE static void ZSTD_buildFSETable_body_bmi2(ZSTD_seqSymbol* dt, in ZSTD_buildFSETable_body_bmi2()
627 void ZSTD_buildFSETable(ZSTD_seqSymbol* dt, in ZSTD_buildFSETable()
648 static size_t ZSTD_buildSeqTable(ZSTD_seqSymbol* DTableSpace, const ZSTD_seqSymbol** DTablePtr, in ZSTD_buildSeqTable()
652 const ZSTD_seqSymbol* defaultTable, U32 flagRepeatTable, in ZSTD_buildSeqTable()
676 size_t const pSize = sizeof(ZSTD_seqSymbol) * (SEQSYMBOL_TABLE_SIZE(maxLog)); in ZSTD_buildSeqTable()
787 const ZSTD_seqSymbol* table;
1193 ZSTD_initFseState(ZSTD_fseState* DStatePtr, BIT_DStream_t* bitD, const ZSTD_seqSymbol* dt) in ZSTD_initFseState()
1242 ZSTD_seqSymbol llDInfoS, mlDInfoS, ofDInfoS; in ZSTD_decodeSequence()
1243 ZSTD_seqSymbol* const llDInfo = &llDInfoS; in ZSTD_decodeSequence()
1244 ZSTD_seqSymbol* const mlDInfo = &mlDInfoS; in ZSTD_decodeSequence()
1245 ZSTD_seqSymbol* const ofDInfo = &ofDInfoS; in ZSTD_decodeSequence()
1246 ZSTD_memcpy(llDInfo, seqState->stateLL.table + seqState->stateLL.state, sizeof(ZSTD_seqSymbol)); in ZSTD_decodeSequence()
1247 ZSTD_memcpy(mlDInfo, seqState->stateML.table + seqState->stateML.state, sizeof(ZSTD_seqSymbol)); in ZSTD_decodeSequence()
1248 …STD_memcpy(ofDInfo, seqState->stateOffb.table + seqState->stateOffb.state, sizeof(ZSTD_seqSymbol)); in ZSTD_decodeSequence()
1250 const ZSTD_seqSymbol* const llDInfo = seqState->stateLL.table + seqState->stateLL.state; in ZSTD_decodeSequence()
1251 const ZSTD_seqSymbol* const mlDInfo = seqState->stateML.table + seqState->stateML.state; in ZSTD_decodeSequence()
1252 const ZSTD_seqSymbol* const ofDInfo = seqState->stateOffb.table + seqState->stateOffb.state; in ZSTD_decodeSequence()
2014 ZSTD_getOffsetInfo(const ZSTD_seqSymbol* offTable, int nbSeq) in ZSTD_getOffsetInfo()
2023 const ZSTD_seqSymbol* table = offTable + 1; in ZSTD_getOffsetInfo()