Home
last modified time | relevance | path

Searched refs:ZSTD_decompressDCtx (Results 1 – 10 of 10) sorted by relevance

/freebsd/sys/geom/uzip/
H A Dg_uzip_zstd.c71 rc = ZSTD_decompressDCtx(sc->guz_dctx, outputbuf, sc->guz_blksz, input, in guz_zstd_decompress()
/freebsd/sys/contrib/openzfs/module/zstd/include/
H A Dzstd_compat_wrapper.h378 #define ZSTD_decompressDCtx zfs_ZSTD_decompressDCtx macro
/freebsd/sys/contrib/openzfs/module/zstd/lib/decompress/
H A Dzstd_decompress.c813 size_t ZSTD_decompressDCtx(ZSTD_DCtx* dctx, void* dst, size_t dstCapacity, const void* src, size_t … in ZSTD_decompressDCtx() function
825 regenSize = ZSTD_decompressDCtx(dctx, dst, dstCapacity, src, srcSize); in ZSTD_decompress()
831 return ZSTD_decompressDCtx(&dctx, dst, dstCapacity, src, srcSize); in ZSTD_decompress()
/freebsd/sys/contrib/openzfs/module/zstd/
H A Dzfs_zstd.c728 result = ZSTD_decompressDCtx(dctx, d_start, d_len, hdr->data, c_len); in zfs_zstd_decompress_level_buf()
/freebsd/sys/contrib/zstd/lib/decompress/
H A Dzstd_decompress.c1081 size_t ZSTD_decompressDCtx(ZSTD_DCtx* dctx, void* dst, size_t dstCapacity, const void* src, size_t … in ZSTD_decompressDCtx() function
1093 regenSize = ZSTD_decompressDCtx(dctx, dst, dstCapacity, src, srcSize); in ZSTD_decompress()
1099 return ZSTD_decompressDCtx(&dctx, dst, dstCapacity, src, srcSize); in ZSTD_decompress()
/freebsd/sys/contrib/openzfs/module/zstd/lib/
H A Dzstd.h227 ZSTDLIB_API size_t ZSTD_decompressDCtx(ZSTD_DCtx* dctx,
/freebsd/sys/contrib/zstd/lib/
H A Dzstd.h234 ZSTDLIB_API size_t ZSTD_decompressDCtx(ZSTD_DCtx* dctx,
/freebsd/sys/contrib/zstd/lib/legacy/
H A Dzstd_v03.c2904 static size_t ZSTD_decompressDCtx(void* ctx, void* dst, size_t maxDstSize, const void* src, size_t … in ZSTD_decompressDCtx() function
2965 return ZSTD_decompressDCtx(&ctx, dst, maxDstSize, src, srcSize); in ZSTD_decompress()
H A Dzstd_v02.c3263 static size_t ZSTD_decompressDCtx(void* ctx, void* dst, size_t maxDstSize, const void* src, size_t … in ZSTD_decompressDCtx() function
3324 return ZSTD_decompressDCtx(&ctx, dst, maxDstSize, src, srcSize); in ZSTD_decompress()
/freebsd/sys/contrib/zstd/
H A DCHANGELOG270 api: Fix ZSTD_decompressDCtx() corner cases with a dictionary