Lines Matching refs:cBlockSize
4711 size_t cBlockSize; in ZSTD_compressSequences_internal() local
4724 cBlockSize = ZSTD_noCompressBlock(op, dstCapacity, ip, blockSize, lastBlock); in ZSTD_compressSequences_internal()
4725 FORWARD_IF_ERROR(cBlockSize, "Nocompress block failed"); in ZSTD_compressSequences_internal()
4726 DEBUGLOG(4, "Block too small, writing out nocompress block: cSize: %zu", cBlockSize); in ZSTD_compressSequences_internal()
4727 cSize += cBlockSize; in ZSTD_compressSequences_internal()
4729 op += cBlockSize; in ZSTD_compressSequences_internal()
4731 dstCapacity -= cBlockSize; in ZSTD_compressSequences_internal()
4757 cBlockSize = ZSTD_noCompressBlock(op, dstCapacity, ip, blockSize, lastBlock); in ZSTD_compressSequences_internal()
4758 FORWARD_IF_ERROR(cBlockSize, "Nocompress block failed"); in ZSTD_compressSequences_internal()
4759 DEBUGLOG(4, "Writing out nocompress block, size: %zu", cBlockSize); in ZSTD_compressSequences_internal()
4761 cBlockSize = ZSTD_rleCompressBlock(op, dstCapacity, *ip, blockSize, lastBlock); in ZSTD_compressSequences_internal()
4762 FORWARD_IF_ERROR(cBlockSize, "RLE compress block failed"); in ZSTD_compressSequences_internal()
4763 DEBUGLOG(4, "Writing out RLE block, size: %zu", cBlockSize); in ZSTD_compressSequences_internal()
4774 cBlockSize = ZSTD_blockHeaderSize + compressedSeqsSize; in ZSTD_compressSequences_internal()
4775 DEBUGLOG(4, "Writing out compressed block, size: %zu", cBlockSize); in ZSTD_compressSequences_internal()
4778 cSize += cBlockSize; in ZSTD_compressSequences_internal()
4785 op += cBlockSize; in ZSTD_compressSequences_internal()
4787 dstCapacity -= cBlockSize; in ZSTD_compressSequences_internal()