Home
last modified time | relevance | path

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

/freebsd/sys/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()
/freebsd/sys/contrib/openzfs/module/zstd/lib/decompress/
H A Dzstd_decompress_block.c1433 size_t dSize; in ZSTD_decompressBlock() local
1435 dSize = ZSTD_decompressBlock_internal(dctx, dst, dstCapacity, src, srcSize, /* frame */ 0); in ZSTD_decompressBlock()
1436 dctx->previousDstEnd = (char*)dst + dSize; in ZSTD_decompressBlock()
1437 return dSize; in ZSTD_decompressBlock()
/freebsd/sys/contrib/zstd/zlibWrapper/
H A Dzstd_zlibwrapper.c1150 size_t const dSize = ZSTD_decompress(dest, dstCapacity, source, sourceLen); in z_uncompress() local
1151 if (ZSTD_isError(dSize)) return Z_STREAM_ERROR; in z_uncompress()
1152 *destLen = dSize; in z_uncompress()
/freebsd/sys/contrib/zstd/lib/decompress/
H A Dzstd_decompress_block.c2067 size_t dSize; local
2069dSize = ZSTD_decompressBlock_internal(dctx, dst, dstCapacity, src, srcSize, /* frame */ 0, not_str…
2070 dctx->previousDstEnd = (char*)dst + dSize;
2071 return dSize;
/freebsd/sys/contrib/zstd/lib/legacy/
H A Dzstd_v07.c3762 size_t dSize; in ZSTDv07_decompressBlock() local
3764 dSize = ZSTDv07_decompressBlock_internal(dctx, dst, dstCapacity, src, srcSize); in ZSTDv07_decompressBlock()
3765 dctx->previousDstEnd = (char*)dst + dSize; in ZSTDv07_decompressBlock()
3766 return dSize; in ZSTDv07_decompressBlock()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DAnalysisBasedWarnings.cpp2269 const uint64_t dSize = in handleUnsafeOperation() local
2275 if (sSize >= dSize) in handleUnsafeOperation()