Home
last modified time | relevance | path

Searched refs:SEQSYMBOL_TABLE_SIZE (Results 1 – 2 of 2) sorted by relevance

/linux-5.19.10/lib/zstd/decompress/
Dzstd_decompress_internal.h74 #define SEQSYMBOL_TABLE_SIZE(log) (1 + (1 << (log))) macro
80 …ZSTD_seqSymbol LLTable[SEQSYMBOL_TABLE_SIZE(LLFSELog)]; /* Note : Space reserved for FSE Tables…
81 …ZSTD_seqSymbol OFTable[SEQSYMBOL_TABLE_SIZE(OffFSELog)]; /* is also used as temporary workspace …
82 …ZSTD_seqSymbol MLTable[SEQSYMBOL_TABLE_SIZE(MLFSELog)]; /* and therefore must be at least HUF_D…
Dzstd_decompress_block.c557 size_t const pSize = sizeof(ZSTD_seqSymbol) * (SEQSYMBOL_TABLE_SIZE(maxLog)); in ZSTD_buildSeqTable()