Home
last modified time | relevance | path

Searched refs:dSize (Results 1 – 6 of 6) sorted by relevance

/f-stack/freebsd/contrib/zstd/examples/
H A Dsimple_decompression.c37 size_t const dSize = ZSTD_decompress(rBuff, rSize, cBuff, cSize); in decompress() local
38 CHECK_ZSTD(dSize); in decompress()
40 CHECK(dSize == rSize, "Impossible because zstd will check this condition!"); in decompress()
H A Ddictionary_decompression.c64 size_t const dSize = ZSTD_decompress_usingDDict(dctx, rBuff, rSize, cBuff, cSize, ddict); in decompress() local
65 CHECK_ZSTD(dSize); in decompress()
67 CHECK(dSize == rSize, "Impossible because zstd will check this condition!"); in decompress()
/f-stack/freebsd/contrib/zstd/lib/decompress/
H A Dzstd_decompress_block.c1535 size_t dSize; in ZSTD_decompressBlock() local
1537 dSize = ZSTD_decompressBlock_internal(dctx, dst, dstCapacity, src, srcSize, /* frame */ 0); in ZSTD_decompressBlock()
1538 dctx->previousDstEnd = (char*)dst + dSize; in ZSTD_decompressBlock()
1539 return dSize; in ZSTD_decompressBlock()
/f-stack/freebsd/contrib/zstd/zlibWrapper/
H A Dzstd_zlibwrapper.c1135 size_t const dSize = ZSTD_decompress(dest, dstCapacity, source, sourceLen); in z_uncompress() local
1136 if (ZSTD_isError(dSize)) return Z_STREAM_ERROR; in z_uncompress()
1137 *destLen = dSize; in z_uncompress()
/f-stack/freebsd/contrib/zstd/lib/legacy/
H A Dzstd_v07.c3766 size_t dSize; in ZSTDv07_decompressBlock() local
3768 dSize = ZSTDv07_decompressBlock_internal(dctx, dst, dstCapacity, src, srcSize); in ZSTDv07_decompressBlock()
3769 dctx->previousDstEnd = (char*)dst + dSize; in ZSTDv07_decompressBlock()
3770 return dSize; in ZSTDv07_decompressBlock()
/f-stack/freebsd/contrib/openzfs/module/zstd/lib/
H A Dzstd.c27820 size_t dSize; in ZSTD_decompressBlock() local
27822 dSize = ZSTD_decompressBlock_internal(dctx, dst, dstCapacity, src, srcSize, /* frame */ 0); in ZSTD_decompressBlock()
27823 dctx->previousDstEnd = (char*)dst + dSize; in ZSTD_decompressBlock()
27824 return dSize; in ZSTD_decompressBlock()