Lines Matching refs:cBlockSize
5830 size_t cBlockSize; in ZSTD_compressSequences_internal() local
5843 cBlockSize = ZSTD_noCompressBlock(op, dstCapacity, ip, blockSize, lastBlock); in ZSTD_compressSequences_internal()
5844 FORWARD_IF_ERROR(cBlockSize, "Nocompress block failed"); in ZSTD_compressSequences_internal()
5845 DEBUGLOG(4, "Block too small, writing out nocompress block: cSize: %zu", cBlockSize); in ZSTD_compressSequences_internal()
5846 cSize += cBlockSize; in ZSTD_compressSequences_internal()
5848 op += cBlockSize; in ZSTD_compressSequences_internal()
5850 dstCapacity -= cBlockSize; in ZSTD_compressSequences_internal()
5876 cBlockSize = ZSTD_noCompressBlock(op, dstCapacity, ip, blockSize, lastBlock); in ZSTD_compressSequences_internal()
5877 FORWARD_IF_ERROR(cBlockSize, "Nocompress block failed"); in ZSTD_compressSequences_internal()
5878 DEBUGLOG(4, "Writing out nocompress block, size: %zu", cBlockSize); in ZSTD_compressSequences_internal()
5880 cBlockSize = ZSTD_rleCompressBlock(op, dstCapacity, *ip, blockSize, lastBlock); in ZSTD_compressSequences_internal()
5881 FORWARD_IF_ERROR(cBlockSize, "RLE compress block failed"); in ZSTD_compressSequences_internal()
5882 DEBUGLOG(4, "Writing out RLE block, size: %zu", cBlockSize); in ZSTD_compressSequences_internal()
5893 cBlockSize = ZSTD_blockHeaderSize + compressedSeqsSize; in ZSTD_compressSequences_internal()
5894 DEBUGLOG(4, "Writing out compressed block, size: %zu", cBlockSize); in ZSTD_compressSequences_internal()
5897 cSize += cBlockSize; in ZSTD_compressSequences_internal()
5904 op += cBlockSize; in ZSTD_compressSequences_internal()
5906 dstCapacity -= cBlockSize; in ZSTD_compressSequences_internal()