Lines Matching refs:cBlockSize
6013 size_t cBlockSize; in ZSTD_compressSequences_internal() local
6026 cBlockSize = ZSTD_noCompressBlock(op, dstCapacity, ip, blockSize, lastBlock); in ZSTD_compressSequences_internal()
6027 FORWARD_IF_ERROR(cBlockSize, "Nocompress block failed"); in ZSTD_compressSequences_internal()
6028 DEBUGLOG(4, "Block too small, writing out nocompress block: cSize: %zu", cBlockSize); in ZSTD_compressSequences_internal()
6029 cSize += cBlockSize; in ZSTD_compressSequences_internal()
6031 op += cBlockSize; in ZSTD_compressSequences_internal()
6033 dstCapacity -= cBlockSize; in ZSTD_compressSequences_internal()
6059 cBlockSize = ZSTD_noCompressBlock(op, dstCapacity, ip, blockSize, lastBlock); in ZSTD_compressSequences_internal()
6060 FORWARD_IF_ERROR(cBlockSize, "Nocompress block failed"); in ZSTD_compressSequences_internal()
6061 DEBUGLOG(4, "Writing out nocompress block, size: %zu", cBlockSize); in ZSTD_compressSequences_internal()
6063 cBlockSize = ZSTD_rleCompressBlock(op, dstCapacity, *ip, blockSize, lastBlock); in ZSTD_compressSequences_internal()
6064 FORWARD_IF_ERROR(cBlockSize, "RLE compress block failed"); in ZSTD_compressSequences_internal()
6065 DEBUGLOG(4, "Writing out RLE block, size: %zu", cBlockSize); in ZSTD_compressSequences_internal()
6076 cBlockSize = ZSTD_blockHeaderSize + compressedSeqsSize; in ZSTD_compressSequences_internal()
6077 DEBUGLOG(4, "Writing out compressed block, size: %zu", cBlockSize); in ZSTD_compressSequences_internal()
6080 cSize += cBlockSize; in ZSTD_compressSequences_internal()
6087 op += cBlockSize; in ZSTD_compressSequences_internal()
6089 dstCapacity -= cBlockSize; in ZSTD_compressSequences_internal()