Home
last modified time | relevance | path

Searched refs:regenSize (Results 1 – 7 of 7) sorted by relevance

/freebsd/sys/contrib/openzfs/module/zstd/lib/decompress/
H A Dzstd_decompress.c593 size_t regenSize) in ZSTD_setRleBlock() argument
596 if (regenSize == 0) return 0; in ZSTD_setRleBlock()
599 RETURN_ERROR_IF(regenSize > dstCapacity, dstSize_tooSmall, ""); in ZSTD_setRleBlock()
600 memset(dst, b, regenSize); in ZSTD_setRleBlock()
601 return regenSize; in ZSTD_setRleBlock()
822 size_t regenSize; in ZSTD_decompress() local
825 regenSize = ZSTD_decompressDCtx(dctx, dst, dstCapacity, src, srcSize); in ZSTD_decompress()
827 return regenSize; in ZSTD_decompress()
/freebsd/sys/contrib/zstd/lib/decompress/
H A Dzstd_decompress.c834 size_t regenSize) in ZSTD_setRleBlock() argument
836 RETURN_ERROR_IF(regenSize > dstCapacity, dstSize_tooSmall, ""); in ZSTD_setRleBlock()
838 if (regenSize == 0) return 0; in ZSTD_setRleBlock()
841 ZSTD_memset(dst, b, regenSize); in ZSTD_setRleBlock()
842 return regenSize; in ZSTD_setRleBlock()
1090 size_t regenSize; in ZSTD_decompress() local
1093 regenSize = ZSTD_decompressDCtx(dctx, dst, dstCapacity, src, srcSize); in ZSTD_decompress()
1095 return regenSize; in ZSTD_decompress()
/freebsd/sys/contrib/zstd/zlibWrapper/examples/
H A Dzwrapbench.c410 size_t const regenSize = ZSTD_decompress_usingDDict(dctx, in BMK_benchMem() local
414 if (ZSTD_isError(regenSize)) { in BMK_benchMem()
416 blockNb, ZSTD_getErrorName(regenSize)); in BMK_benchMem()
420 blockTable[blockNb].resSize = regenSize; in BMK_benchMem()
/freebsd/sys/contrib/zstd/lib/legacy/
H A Dzstd_v04.c3607 size_t regenSize; in ZSTDv04_decompress() local
3610 regenSize = ZSTDv04_decompressDCtx(dctx, dst, maxDstSize, src, srcSize); in ZSTDv04_decompress()
3612 return regenSize; in ZSTDv04_decompress()
H A Dzstd_v05.c3510 size_t regenSize; in ZSTDv05_decompress() local
3513 regenSize = ZSTDv05_decompressDCtx(dctx, dst, maxDstSize, src, srcSize); in ZSTDv05_decompress()
3515 return regenSize; in ZSTDv05_decompress()
H A Dzstd_v06.c3647 size_t regenSize; in ZSTDv06_decompress() local
3650 regenSize = ZSTDv06_decompressDCtx(dctx, dst, dstCapacity, src, srcSize); in ZSTDv06_decompress()
3652 return regenSize; in ZSTDv06_decompress()
H A Dzstd_v07.c3892 size_t regenSize; in ZSTDv07_decompress() local
3895 regenSize = ZSTDv07_decompressDCtx(dctx, dst, dstCapacity, src, srcSize); in ZSTDv07_decompress()
3897 return regenSize; in ZSTDv07_decompress()