Searched refs:dSize (Results 1 – 7 of 7) sorted by relevance
/freebsd/sys/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()
|
/freebsd/sys/contrib/openzfs/module/zstd/lib/decompress/ |
H A D | zstd_decompress_block.c | 1433 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 D | zstd_zlibwrapper.c | 1150 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 D | zstd_decompress_block.c | 2067 size_t dSize; local 2069 …dSize = 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 D | zstd_v07.c | 3762 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 D | AnalysisBasedWarnings.cpp | 2269 const uint64_t dSize = in handleUnsafeOperation() local 2275 if (sSize >= dSize) in handleUnsafeOperation()
|