Searched refs:regenSize (Results 1 – 7 of 7) sorted by relevance
| /f-stack/freebsd/contrib/zstd/lib/decompress/ |
| H A D | zstd_decompress.c | 602 size_t regenSize) in ZSTD_setRleBlock() argument 604 RETURN_ERROR_IF(regenSize > dstCapacity, dstSize_tooSmall, ""); in ZSTD_setRleBlock() 606 if (regenSize == 0) return 0; in ZSTD_setRleBlock() 609 ZSTD_memset(dst, b, regenSize); in ZSTD_setRleBlock() 610 return regenSize; in ZSTD_setRleBlock() 831 size_t regenSize; in ZSTD_decompress() local 834 regenSize = ZSTD_decompressDCtx(dctx, dst, dstCapacity, src, srcSize); in ZSTD_decompress() 836 return regenSize; in ZSTD_decompress()
|
| /f-stack/freebsd/contrib/zstd/zlibWrapper/examples/ |
| H A D | zwrapbench.c | 395 size_t const regenSize = ZSTD_decompress_usingDDict(dctx, in BMK_benchMem() local 399 if (ZSTD_isError(regenSize)) { in BMK_benchMem() 401 blockNb, ZSTD_getErrorName(regenSize)); in BMK_benchMem() 405 blockTable[blockNb].resSize = regenSize; in BMK_benchMem()
|
| /f-stack/freebsd/contrib/zstd/lib/legacy/ |
| H A D | zstd_v04.c | 3611 size_t regenSize; in ZSTDv04_decompress() local 3614 regenSize = ZSTDv04_decompressDCtx(dctx, dst, maxDstSize, src, srcSize); in ZSTDv04_decompress() 3616 return regenSize; in ZSTDv04_decompress()
|
| H A D | zstd_v06.c | 3651 size_t regenSize; in ZSTDv06_decompress() local 3654 regenSize = ZSTDv06_decompressDCtx(dctx, dst, dstCapacity, src, srcSize); in ZSTDv06_decompress() 3656 return regenSize; in ZSTDv06_decompress()
|
| H A D | zstd_v05.c | 3514 size_t regenSize; in ZSTDv05_decompress() local 3517 regenSize = ZSTDv05_decompressDCtx(dctx, dst, maxDstSize, src, srcSize); in ZSTDv05_decompress() 3519 return regenSize; in ZSTDv05_decompress()
|
| H A D | zstd_v07.c | 3896 size_t regenSize; in ZSTDv07_decompress() local 3899 regenSize = ZSTDv07_decompressDCtx(dctx, dst, dstCapacity, src, srcSize); in ZSTDv07_decompress() 3901 return regenSize; in ZSTDv07_decompress()
|
| /f-stack/freebsd/contrib/openzfs/module/zstd/lib/ |
| H A D | zstd.c | 25099 size_t regenSize) in ZSTD_setRleBlock() argument 25102 if (regenSize == 0) return 0; in ZSTD_setRleBlock() 25105 RETURN_ERROR_IF(regenSize > dstCapacity, dstSize_tooSmall, ""); in ZSTD_setRleBlock() 25106 memset(dst, b, regenSize); in ZSTD_setRleBlock() 25107 return regenSize; in ZSTD_setRleBlock() 25328 size_t regenSize; in ZSTD_decompress() local 25331 regenSize = ZSTD_decompressDCtx(dctx, dst, dstCapacity, src, srcSize); in ZSTD_decompress() 25333 return regenSize; in ZSTD_decompress()
|