Lines Matching refs:cBlockSize
5832 size_t cBlockSize; in ZSTD_compressSequences_internal() local
5845 cBlockSize = ZSTD_noCompressBlock(op, dstCapacity, ip, blockSize, lastBlock); in ZSTD_compressSequences_internal()
5846 FORWARD_IF_ERROR(cBlockSize, "Nocompress block failed"); in ZSTD_compressSequences_internal()
5847 DEBUGLOG(4, "Block too small, writing out nocompress block: cSize: %zu", cBlockSize); in ZSTD_compressSequences_internal()
5848 cSize += cBlockSize; in ZSTD_compressSequences_internal()
5850 op += cBlockSize; in ZSTD_compressSequences_internal()
5852 dstCapacity -= cBlockSize; in ZSTD_compressSequences_internal()
5878 cBlockSize = ZSTD_noCompressBlock(op, dstCapacity, ip, blockSize, lastBlock); in ZSTD_compressSequences_internal()
5879 FORWARD_IF_ERROR(cBlockSize, "Nocompress block failed"); in ZSTD_compressSequences_internal()
5880 DEBUGLOG(4, "Writing out nocompress block, size: %zu", cBlockSize); in ZSTD_compressSequences_internal()
5882 cBlockSize = ZSTD_rleCompressBlock(op, dstCapacity, *ip, blockSize, lastBlock); in ZSTD_compressSequences_internal()
5883 FORWARD_IF_ERROR(cBlockSize, "RLE compress block failed"); in ZSTD_compressSequences_internal()
5884 DEBUGLOG(4, "Writing out RLE block, size: %zu", cBlockSize); in ZSTD_compressSequences_internal()
5895 cBlockSize = ZSTD_blockHeaderSize + compressedSeqsSize; in ZSTD_compressSequences_internal()
5896 DEBUGLOG(4, "Writing out compressed block, size: %zu", cBlockSize); in ZSTD_compressSequences_internal()
5899 cSize += cBlockSize; in ZSTD_compressSequences_internal()
5906 op += cBlockSize; in ZSTD_compressSequences_internal()
5908 dstCapacity -= cBlockSize; in ZSTD_compressSequences_internal()