Home
last modified time | relevance | path

Searched refs:countSize (Results 1 – 4 of 4) sorted by relevance

/linux-6.1.9/lib/zstd/compress/
Dzstd_compress_superblock.c210 …{ size_t const countSize = ZSTD_buildCTable(op, oend - op, CTable_LitLength, LLFSELog, (symbolEn… in ZSTD_buildSuperBlockEntropy_sequences() local
214 FORWARD_IF_ERROR(countSize, "ZSTD_buildCTable for LitLens failed"); in ZSTD_buildSuperBlockEntropy_sequences()
216 fseMetadata->lastCountSize = countSize; in ZSTD_buildSuperBlockEntropy_sequences()
217 op += countSize; in ZSTD_buildSuperBlockEntropy_sequences()
234 …{ size_t const countSize = ZSTD_buildCTable(op, oend - op, CTable_OffsetBits, OffFSELog, (symbol… in ZSTD_buildSuperBlockEntropy_sequences() local
238 FORWARD_IF_ERROR(countSize, "ZSTD_buildCTable for Offsets failed"); in ZSTD_buildSuperBlockEntropy_sequences()
240 fseMetadata->lastCountSize = countSize; in ZSTD_buildSuperBlockEntropy_sequences()
241 op += countSize; in ZSTD_buildSuperBlockEntropy_sequences()
256 …{ size_t const countSize = ZSTD_buildCTable(op, oend - op, CTable_MatchLength, MLFSELog, (symbol… in ZSTD_buildSuperBlockEntropy_sequences() local
260 FORWARD_IF_ERROR(countSize, "ZSTD_buildCTable for MatchLengths failed"); in ZSTD_buildSuperBlockEntropy_sequences()
[all …]
Dhist.c74 size_t const countSize = (*maxSymbolValuePtr + 1) * sizeof(*count); in HIST_count_parallel_wksp() local
84 ZSTD_memset(count, 0, countSize); in HIST_count_parallel_wksp()
130 ZSTD_memmove(count, Counting1, countSize); /* in case count & Counting1 are overlapping */ in HIST_count_parallel_wksp()
Dzstd_compress.c2187 { size_t const countSize = ZSTD_buildCTable( in ZSTD_entropyCompressSequences_internal() local
2195 FORWARD_IF_ERROR(countSize, "ZSTD_buildCTable for LitLens failed"); in ZSTD_entropyCompressSequences_internal()
2198 op += countSize; in ZSTD_entropyCompressSequences_internal()
2215 { size_t const countSize = ZSTD_buildCTable( in ZSTD_entropyCompressSequences_internal() local
2223 FORWARD_IF_ERROR(countSize, "ZSTD_buildCTable for Offsets failed"); in ZSTD_entropyCompressSequences_internal()
2226 op += countSize; in ZSTD_entropyCompressSequences_internal()
2241 { size_t const countSize = ZSTD_buildCTable( in ZSTD_entropyCompressSequences_internal() local
2249 FORWARD_IF_ERROR(countSize, "ZSTD_buildCTable for MatchLengths failed"); in ZSTD_entropyCompressSequences_internal()
2252 op += countSize; in ZSTD_entropyCompressSequences_internal()
/linux-6.1.9/lib/zstd/common/
Dentropy_common.c79 { size_t const countSize = FSE_readNCount(normalizedCounter, maxSVPtr, tableLogPtr, in FSE_readNCount_body() local
81 if (FSE_isError(countSize)) return countSize; in FSE_readNCount_body()
82 if (countSize > hbSize) return ERROR(corruption_detected); in FSE_readNCount_body()
83 return countSize; in FSE_readNCount_body()