Searched refs:countSize (Results 1 – 5 of 5) sorted by relevance
/external/zstd/lib/compress/ |
D | zstd_compress_superblock.c | 209 …{ size_t const countSize = ZSTD_buildCTable(op, oend - op, CTable_LitLength, LLFSELog, (symbolEn… in ZSTD_buildSuperBlockEntropy_sequences() local 213 FORWARD_IF_ERROR(countSize, "ZSTD_buildCTable for LitLens failed"); in ZSTD_buildSuperBlockEntropy_sequences() 215 fseMetadata->lastCountSize = countSize; in ZSTD_buildSuperBlockEntropy_sequences() 216 op += countSize; in ZSTD_buildSuperBlockEntropy_sequences() 233 …{ size_t const countSize = ZSTD_buildCTable(op, oend - op, CTable_OffsetBits, OffFSELog, (symbol… in ZSTD_buildSuperBlockEntropy_sequences() local 237 FORWARD_IF_ERROR(countSize, "ZSTD_buildCTable for Offsets failed"); in ZSTD_buildSuperBlockEntropy_sequences() 239 fseMetadata->lastCountSize = countSize; in ZSTD_buildSuperBlockEntropy_sequences() 240 op += countSize; in ZSTD_buildSuperBlockEntropy_sequences() 255 …{ size_t const countSize = ZSTD_buildCTable(op, oend - op, CTable_MatchLength, MLFSELog, (symbol… in ZSTD_buildSuperBlockEntropy_sequences() local 259 FORWARD_IF_ERROR(countSize, "ZSTD_buildCTable for MatchLengths failed"); in ZSTD_buildSuperBlockEntropy_sequences() [all …]
|
D | hist.c | 74 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()
|
D | zstd_compress.c | 2238 { size_t const countSize = ZSTD_buildCTable( in ZSTD_entropyCompressSequences_internal() local 2246 FORWARD_IF_ERROR(countSize, "ZSTD_buildCTable for LitLens failed"); in ZSTD_entropyCompressSequences_internal() 2249 op += countSize; in ZSTD_entropyCompressSequences_internal() 2266 { size_t const countSize = ZSTD_buildCTable( in ZSTD_entropyCompressSequences_internal() local 2274 FORWARD_IF_ERROR(countSize, "ZSTD_buildCTable for Offsets failed"); in ZSTD_entropyCompressSequences_internal() 2277 op += countSize; in ZSTD_entropyCompressSequences_internal() 2292 { size_t const countSize = ZSTD_buildCTable( in ZSTD_entropyCompressSequences_internal() local 2300 FORWARD_IF_ERROR(countSize, "ZSTD_buildCTable for MatchLengths failed"); in ZSTD_entropyCompressSequences_internal() 2303 op += countSize; in ZSTD_entropyCompressSequences_internal()
|
/external/zstd/lib/common/ |
D | entropy_common.c | 83 { size_t const countSize = FSE_readNCount(normalizedCounter, maxSVPtr, tableLogPtr, in FSE_readNCount_body() local 85 if (FSE_isError(countSize)) return countSize; in FSE_readNCount_body() 86 if (countSize > hbSize) return ERROR(corruption_detected); in FSE_readNCount_body() 87 return countSize; in FSE_readNCount_body()
|
/external/fonttools/Lib/fontTools/cffLib/ |
D | __init__.py | 466 countSize = 4 468 countSize = 2 474 countSize + # count 481 dataLength = countSize
|