Searched refs:dSize (Results 1 – 6 of 6) sorted by relevance
| /f-stack/freebsd/contrib/zstd/examples/ |
| H A D | simple_decompression.c | 37 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 D | dictionary_decompression.c | 64 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 D | zstd_decompress_block.c | 1535 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 D | zstd_zlibwrapper.c | 1135 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 D | zstd_v07.c | 3766 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 D | zstd.c | 27820 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()
|