Home
last modified time | relevance | path

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

/freebsd/sys/contrib/openzfs/module/zstd/include/
H A Dzstd_compat_wrapper.h367 #define ZSTD_DCtx_loadDictionary zfs_ZSTD_DCtx_loadDictionary macro
/freebsd/sys/contrib/openzfs/module/zstd/lib/
H A Dzstd.h1162 ZSTDLIB_API size_t ZSTD_DCtx_loadDictionary(ZSTD_DCtx* dctx, const void* dict, size_t dictSize);
/freebsd/sys/contrib/zstd/lib/
H A Dzstd.h1161 ZSTDLIB_API size_t ZSTD_DCtx_loadDictionary(ZSTD_DCtx* dctx, const void* dict, size_t dictSize);
/freebsd/sys/contrib/zstd/programs/
H A Dbenchzstd.c297 CHECK_Z(ZSTD_DCtx_loadDictionary(dctx, dictBuffer, dictBufferSize)); in BMK_initDCtx()
/freebsd/sys/contrib/openzfs/module/zstd/lib/decompress/
H A Dzstd_decompress.c1721 size_t ZSTD_DCtx_loadDictionary(ZSTD_DCtx* dctx, const void* dict, size_t dictSize) in ZSTD_DCtx_loadDictionary() function
1746 FORWARD_IF_ERROR( ZSTD_DCtx_loadDictionary(zds, dict, dictSize) , ""); in ZSTD_initDStream_usingDict()
/freebsd/sys/contrib/zstd/lib/decompress/
H A Dzstd_decompress.c1720 size_t ZSTD_DCtx_loadDictionary(ZSTD_DCtx* dctx, const void* dict, size_t dictSize) in ZSTD_DCtx_loadDictionary() function
1745 FORWARD_IF_ERROR( ZSTD_DCtx_loadDictionary(zds, dict, dictSize) , ""); in ZSTD_initDStream_usingDict()
/freebsd/sys/contrib/zstd/zlibWrapper/
H A Dzstd_zlibwrapper.c711 { size_t const loadErr = ZSTD_DCtx_loadDictionary(zwd->zbd, dictionary, dictLength); in z_inflateSetDictionary()