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

  /src/external/bsd/zstd/dist/lib/decompress/
zstd_decompress_block.h 21 #include "zstd_decompress_internal.h" /* ZSTD_seqSymbol */
61 void ZSTD_buildFSETable(ZSTD_seqSymbol* dt,
zstd_decompress_internal.h 72 } ZSTD_seqSymbol;
81 ZSTD_seqSymbol LLTable[SEQSYMBOL_TABLE_SIZE(LLFSELog)]; /* Note : Space reserved for FSE Tables */
82 ZSTD_seqSymbol OFTable[SEQSYMBOL_TABLE_SIZE(OffFSELog)]; /* is also used as temporary workspace while building hufTable during DDict creation */
83 ZSTD_seqSymbol MLTable[SEQSYMBOL_TABLE_SIZE(MLFSELog)]; /* and therefore must be at least HUF_DECOMPRESS_WORKSPACE_SIZE large */
128 const ZSTD_seqSymbol* LLTptr;
129 const ZSTD_seqSymbol* MLTptr;
130 const ZSTD_seqSymbol* OFTptr;
zstd_decompress_block.c 364 static const ZSTD_seqSymbol LL_defaultDTable[(1<<LL_DEFAULTNORMLOG)+1] = {
402 static const ZSTD_seqSymbol OF_defaultDTable[(1<<OF_DEFAULTNORMLOG)+1] = {
425 static const ZSTD_seqSymbol ML_defaultDTable[(1<<ML_DEFAULTNORMLOG)+1] = {
463 static void ZSTD_buildSeqTable_rle(ZSTD_seqSymbol* dt, U32 baseValue, U8 nbAddBits)
467 ZSTD_seqSymbol* const cell = dt + 1;
485 void ZSTD_buildFSETable_body(ZSTD_seqSymbol* dt,
490 ZSTD_seqSymbol* const tableDecode = dt+1;
606 static void ZSTD_buildFSETable_body_default(ZSTD_seqSymbol* dt,
616 BMI2_TARGET_ATTRIBUTE static void ZSTD_buildFSETable_body_bmi2(ZSTD_seqSymbol* dt,
626 void ZSTD_buildFSETable(ZSTD_seqSymbol* dt
    [all...]

Completed in 30 milliseconds