Searched refs:ZSTD_DCtx (Results 1 – 5 of 5) sorted by relevance
/kernel/linux/linux-5.10/include/linux/ |
D | zstd.h | 273 typedef struct ZSTD_DCtx_s ZSTD_DCtx; typedef 283 ZSTD_DCtx *ZSTD_initDCtx(void *workspace, size_t workspaceSize); 299 size_t ZSTD_decompressDCtx(ZSTD_DCtx *ctx, void *dst, size_t dstCapacity, 346 size_t ZSTD_decompress_usingDict(ZSTD_DCtx *ctx, void *dst, size_t dstCapacity, 457 size_t ZSTD_decompress_usingDDict(ZSTD_DCtx *dctx, void *dst, 1100 size_t ZSTD_decompressBegin(ZSTD_DCtx *dctx); 1101 size_t ZSTD_decompressBegin_usingDict(ZSTD_DCtx *dctx, const void *dict, 1103 void ZSTD_copyDCtx(ZSTD_DCtx *dctx, const ZSTD_DCtx *preparedDCtx); 1104 size_t ZSTD_nextSrcSizeToDecompress(ZSTD_DCtx *dctx); 1105 size_t ZSTD_decompressContinue(ZSTD_DCtx *dctx, void *dst, size_t dstCapacity, [all …]
|
/kernel/linux/linux-5.10/lib/zstd/ |
D | decompress.c | 104 …DCtxWorkspaceBound(void) { return ZSTD_ALIGN(sizeof(ZSTD_stack)) + ZSTD_ALIGN(sizeof(ZSTD_DCtx)); } in ZSTD_DCtxWorkspaceBound() 106 size_t ZSTD_decompressBegin(ZSTD_DCtx *dctx) in ZSTD_decompressBegin() 126 ZSTD_DCtx *ZSTD_createDCtx_advanced(ZSTD_customMem customMem) in ZSTD_createDCtx_advanced() 128 ZSTD_DCtx *dctx; in ZSTD_createDCtx_advanced() 133 dctx = (ZSTD_DCtx *)ZSTD_malloc(sizeof(ZSTD_DCtx), customMem); in ZSTD_createDCtx_advanced() 141 ZSTD_DCtx *ZSTD_initDCtx(void *workspace, size_t workspaceSize) in ZSTD_initDCtx() 147 size_t ZSTD_freeDCtx(ZSTD_DCtx *dctx) in ZSTD_freeDCtx() 155 void ZSTD_copyDCtx(ZSTD_DCtx *dstDCtx, const ZSTD_DCtx *srcDCtx) in ZSTD_copyDCtx() 158 memcpy(dstDCtx, srcDCtx, sizeof(ZSTD_DCtx) - workSpaceSize); /* no need to copy workspace */ in ZSTD_copyDCtx() 161 static void ZSTD_refDDict(ZSTD_DCtx *dstDCtx, const ZSTD_DDict *ddict); [all …]
|
D | zstd_internal.h | 224 int ZSTD_isSkipFrame(ZSTD_DCtx *dctx); 267 size_t ZSTD_freeDCtx(ZSTD_DCtx *dctx);
|
/kernel/linux/linux-5.10/lib/ |
D | decompress_unzstd.c | 129 ZSTD_DCtx *dctx = ZSTD_initDCtx(wksp, wksp_size); in decompress_single()
|
/kernel/linux/linux-5.10/crypto/ |
D | zstd.c | 22 ZSTD_DCtx *dctx;
|