Searched refs:fhSize (Results 1 – 1 of 1) sorted by relevance
4712 size_t fhSize = 0; in ZSTD_compressContinue_internal() local4720 fhSize = ZSTD_writeFrameHeader(dst, dstCapacity, &cctx->appliedParams, in ZSTD_compressContinue_internal()4722 FORWARD_IF_ERROR(fhSize, "ZSTD_writeFrameHeader failed"); in ZSTD_compressContinue_internal()4723 assert(fhSize <= dstCapacity); in ZSTD_compressContinue_internal()4724 dstCapacity -= fhSize; in ZSTD_compressContinue_internal()4725 dst = (char*)dst + fhSize; in ZSTD_compressContinue_internal()4729 if (!srcSize) return fhSize; /* do not generate an empty block if no input */ in ZSTD_compressContinue_internal()4752 cctx->producedCSize += (cSize + fhSize); in ZSTD_compressContinue_internal()4763 return cSize + fhSize; in ZSTD_compressContinue_internal()5265 size_t fhSize = ZSTD_writeFrameHeader(dst, dstCapacity, &cctx->appliedParams, 0, 0); in ZSTD_writeEpilogue() local[all …]