Home
last modified time | relevance | path

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

/linux-6.12.1/lib/zstd/compress/
Dzstd_compress.c5812 size_t compressedSeqsSize; in ZSTD_compressSequences_internal() local
5856 compressedSeqsSize = ZSTD_entropyCompressSeqStore(&cctx->seqStore, in ZSTD_compressSequences_internal()
5863 FORWARD_IF_ERROR(compressedSeqsSize, "Compressing sequences of block failed"); in ZSTD_compressSequences_internal()
5864 DEBUGLOG(4, "Compressed sequences size: %zu", compressedSeqsSize); in ZSTD_compressSequences_internal()
5873 compressedSeqsSize = 1; in ZSTD_compressSequences_internal()
5876 if (compressedSeqsSize == 0) { in ZSTD_compressSequences_internal()
5881 } else if (compressedSeqsSize == 1) { in ZSTD_compressSequences_internal()
5893 cBlockHeader = lastBlock + (((U32)bt_compressed)<<1) + (U32)(compressedSeqsSize << 3); in ZSTD_compressSequences_internal()
5895 cBlockSize = ZSTD_blockHeaderSize + compressedSeqsSize; in ZSTD_compressSequences_internal()