Home
last modified time | relevance | path

Searched refs:fhSize (Results 1 - 2 of 2) sorted by relevance

/kernel/linux/linux-5.10/lib/zstd/
H A Dcompress.c2493 size_t fhSize = 0; in ZSTD_compressContinue_internal() local
2499 fhSize = ZSTD_writeFrameHeader(dst, dstCapacity, cctx->params, cctx->frameContentSize, cctx->dictID); in ZSTD_compressContinue_internal()
2500 if (ZSTD_isError(fhSize)) in ZSTD_compressContinue_internal()
2501 return fhSize; in ZSTD_compressContinue_internal()
2502 dstCapacity -= fhSize; in ZSTD_compressContinue_internal()
2503 dst = (char *)dst + fhSize; in ZSTD_compressContinue_internal()
2534 return cSize + fhSize; in ZSTD_compressContinue_internal()
2536 return fhSize; in ZSTD_compressContinue_internal()
2769 size_t fhSize = 0; in ZSTD_writeEpilogue() local
2776 fhSize in ZSTD_writeEpilogue()
[all...]
/kernel/linux/linux-6.6/lib/zstd/compress/
H A Dzstd_compress.c4026 size_t fhSize = 0; in ZSTD_compressContinue_internal() local
4034 fhSize = ZSTD_writeFrameHeader(dst, dstCapacity, &cctx->appliedParams, in ZSTD_compressContinue_internal()
4036 FORWARD_IF_ERROR(fhSize, "ZSTD_writeFrameHeader failed"); in ZSTD_compressContinue_internal()
4037 assert(fhSize <= dstCapacity); in ZSTD_compressContinue_internal()
4038 dstCapacity -= fhSize; in ZSTD_compressContinue_internal()
4039 dst = (char*)dst + fhSize; in ZSTD_compressContinue_internal()
4043 if (!srcSize) return fhSize; /* do not generate an empty block if no input */ in ZSTD_compressContinue_internal()
4066 cctx->producedCSize += (cSize + fhSize); in ZSTD_compressContinue_internal()
4077 return cSize + fhSize; in ZSTD_compressContinue_internal()
4499 size_t fhSize in ZSTD_writeEpilogue() local
[all...]

Completed in 18 milliseconds