Home
last modified time | relevance | path

Searched refs:MaxSeq (Results 1 – 7 of 7) sorted by relevance

/linux-6.1.9/lib/zstd/compress/
Dzstd_compress_sequences.c74 S16 norm[MaxSeq + 1]; in ZSTD_NCountCost()
236 S16 norm[MaxSeq + 1];
237 U32 wksp[FSE_BUILD_CTABLE_WORKSPACE_SIZE_U32(MaxSeq, MaxFSELog)];
Dzstd_compress_superblock.c175 const size_t countWkspSize = (MaxSeq + 1) * sizeof(unsigned); in ZSTD_buildSuperBlockEntropy_sequences()
Dzstd_compress_internal.h256 #define COMPRESS_SEQUENCES_WORKSPACE_SIZE (sizeof(unsigned) * (MaxSeq + 2))
Dzstd_compress.c2125 entropyWorkspace = count + (MaxSeq + 1); in ZSTD_entropyCompressSequences_internal()
2126 entropyWkspSize -= (MaxSeq + 1) * sizeof(*count); in ZSTD_entropyCompressSequences_internal()
/linux-6.1.9/lib/zstd/decompress/
Dzstd_decompress_internal.h76 #define ZSTD_BUILD_FSE_TABLE_WKSP_SIZE (sizeof(S16) * (MaxSeq + 1) + (1u << MaxFSELog) + sizeof(U64…
Dzstd_decompress_block.c378 BYTE* spread = (BYTE*)(symbolNext + MaxSeq + 1); in ZSTD_buildFSETable_body()
383 assert(maxSymbolValue <= MaxSeq); in ZSTD_buildFSETable_body()
563 S16 norm[MaxSeq+1]; in ZSTD_buildSeqTable()
/linux-6.1.9/lib/zstd/common/
Dzstd_internal.h175 #define MaxSeq MAX(MaxLL, MaxML) /* Assumption : MaxOff < MaxLL,MaxML */ macro