Searched refs:FSE_decompress_usingDTable (Results 1 - 4 of 4) sorted by relevance
/kernel/linux/linux-5.10/lib/zstd/ |
H A D | fse_decompress.c | 275 size_t FSE_decompress_usingDTable(void *dst, size_t originalSize, const void *cSrc, size_t cSrcSize, const FSE_DTable *dt) in FSE_decompress_usingDTable() function 324 return FSE_decompress_usingDTable(dst, dstCapacity, ip, cSrcSize, dt); /* always return, even if it is an error code */ in FSE_decompress_wksp()
|
H A D | fse.h | 192 /*! FSE_decompress_usingDTable(): 197 FSE_PUBLIC_API size_t FSE_decompress_usingDTable(void *dst, size_t dstCapacity, const void *cSrc, size_t cSrcSize, const FSE_DTable *dt); 221 `FSE_DTable` can then be used to decompress `cSrc`, with FSE_decompress_usingDTable(). 223 FSE_decompress_usingDTable() result will tell how many bytes were regenerated (<=`dstCapacity`). 365 Let's now decompose FSE_decompress_usingDTable() into its unitary components.
|
/kernel/linux/linux-6.6/lib/zstd/common/ |
H A D | fse.h | 252 /*! FSE_decompress_usingDTable(): 257 FSE_PUBLIC_API size_t FSE_decompress_usingDTable(void* dst, size_t dstCapacity, const void* cSrc, size_t cSrcSize, const FSE_DTable* dt); 281 `FSE_DTable` can then be used to decompress `cSrc`, with FSE_decompress_usingDTable(). 283 FSE_decompress_usingDTable() result will tell how many bytes were regenerated (<=`dstCapacity`). 447 Let's now decompose FSE_decompress_usingDTable() into its unitary components.
|
H A D | fse_decompress.c | 294 size_t FSE_decompress_usingDTable(void* dst, size_t originalSize, in FSE_decompress_usingDTable() function
|
Completed in 5 milliseconds