Searched refs:FSE_decompress_usingDTable (Results 1 - 9 of 9) sorted by relevance

/freebsd-current/sys/contrib/openzfs/module/zstd/lib/common/
H A Dfse_decompress.c229 size_t FSE_decompress_usingDTable(void* dst, size_t originalSize, function
261 return FSE_decompress_usingDTable (dst, dstCapacity, ip, cSrcSize, workSpace); /* always return, even if it is an error code */
H A Dfse.h242 /*! FSE_decompress_usingDTable():
247 FSE_PUBLIC_API size_t FSE_decompress_usingDTable(void* dst, size_t dstCapacity, const void* cSrc, size_t cSrcSize, const FSE_DTable* dt);
271 `FSE_DTable` can then be used to decompress `cSrc`, with FSE_decompress_usingDTable().
273 FSE_decompress_usingDTable() result will tell how many bytes were regenerated (<=`dstCapacity`).
424 Let's now decompose FSE_decompress_usingDTable() into its unitary components.
/freebsd-current/sys/contrib/openzfs/module/zstd/include/
H A Dzstd_compat_wrapper.h76 #define FSE_decompress_usingDTable zfs_FSE_decompress_usingDTable macro
/freebsd-current/sys/contrib/zstd/lib/common/
H A Dfse.h255 /*! FSE_decompress_usingDTable():
260 FSE_PUBLIC_API size_t FSE_decompress_usingDTable(void* dst, size_t dstCapacity, const void* cSrc, size_t cSrcSize, const FSE_DTable* dt);
284 `FSE_DTable` can then be used to decompress `cSrc`, with FSE_decompress_usingDTable().
286 FSE_decompress_usingDTable() result will tell how many bytes were regenerated (<=`dstCapacity`).
450 Let's now decompose FSE_decompress_usingDTable() into its unitary components.
H A Dfse_decompress.c294 size_t FSE_decompress_usingDTable(void* dst, size_t originalSize, function
/freebsd-current/sys/contrib/zstd/lib/legacy/
H A Dzstd_v01.c884 static size_t FSE_decompress_usingDTable(void* dst, size_t originalSize, function
920 return FSE_decompress_usingDTable (dst, maxDstSize, ip, cSrcSize, dt);
H A Dzstd_v03.c1408 static size_t FSE_decompress_usingDTable(void* dst, size_t originalSize, function
1444 return FSE_decompress_usingDTable (dst, maxDstSize, ip, cSrcSize, dt);
H A Dzstd_v04.c496 FSE_decompress_usingDTable():
501 static size_t FSE_decompress_usingDTable(void* dst, size_t maxDstSize, const void* cSrc, size_t cSrcSize, const FSE_DTable* dt);
525 'FSE_DTable' can then be used to decompress 'cSrc', with FSE_decompress_usingDTable().
527 FSE_decompress_usingDTable() result will tell how many bytes were regenerated (<=maxDstSize).
1387 static size_t FSE_decompress_usingDTable(void* dst, size_t originalSize, function
1426 return FSE_decompress_usingDTable (dst, maxDstSize, ip, cSrcSize, dt);
H A Dzstd_v02.c1407 static size_t FSE_decompress_usingDTable(void* dst, size_t originalSize, function
1443 return FSE_decompress_usingDTable (dst, maxDstSize, ip, cSrcSize, dt);

Completed in 276 milliseconds