• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /freebsd-13-stable/sys/contrib/zstd/lib/legacy/

Lines Matching defs:ZSTD_DCtx

268 typedef ZSTDv04_Dctx ZSTD_DCtx;
276 static size_t ZSTD_decompress_usingDict(ZSTD_DCtx* ctx,
285 static size_t ZSTD_resetDCtx(ZSTD_DCtx* dctx);
287 static void ZSTD_decompress_insertDictionary(ZSTD_DCtx* ctx, const void* src, size_t srcSize);
289 static size_t ZSTD_nextSrcSizeToDecompress(ZSTD_DCtx* dctx);
290 static size_t ZSTD_decompressContinue(ZSTD_DCtx* dctx, void* dst, size_t maxDstSize, const void* src, size_t srcSize);
295 A ZSTD_DCtx object is required to track streaming operations.
297 A ZSTD_DCtx object can be re-used multiple times. Use ZSTD_resetDCtx() to return to fresh status.
2516 }; /* typedef'd to ZSTD_DCtx within "zstd_static.h" */
2518 static size_t ZSTD_resetDCtx(ZSTD_DCtx* dctx)
2529 static ZSTD_DCtx* ZSTD_createDCtx(void)
2531 ZSTD_DCtx* dctx = (ZSTD_DCtx*)malloc(sizeof(ZSTD_DCtx));
2537 static size_t ZSTD_freeDCtx(ZSTD_DCtx* dctx)
2551 static size_t ZSTD_decodeFrameHeader_Part1(ZSTD_DCtx* zc, const void* src, size_t srcSize)
2578 static size_t ZSTD_decodeFrameHeader_Part2(ZSTD_DCtx* zc, const void* src, size_t srcSize)
2639 static size_t ZSTD_decodeLiteralsBlock(ZSTD_DCtx* dctx,
2955 ZSTD_DCtx* dctx,
3028 static void ZSTD_checkContinuity(ZSTD_DCtx* dctx, const void* dst)
3040 static size_t ZSTD_decompressBlock_internal(ZSTD_DCtx* dctx,
3060 static size_t ZSTD_decompress_usingDict(ZSTD_DCtx* ctx,
3195 static size_t ZSTD_nextSrcSizeToDecompress(ZSTD_DCtx* dctx)
3200 static size_t ZSTD_decompressContinue(ZSTD_DCtx* ctx, void* dst, size_t maxDstSize, const void* src, size_t srcSize)
3276 static void ZSTD_decompress_insertDictionary(ZSTD_DCtx* ctx, const void* dict, size_t dictSize)
3358 ZSTD_DCtx* zc;
3603 size_t ZSTDv04_decompressDCtx(ZSTD_DCtx* dctx, void* dst, size_t maxDstSize, const void* src, size_t srcSize)
3612 ZSTD_DCtx* dctx = ZSTD_createDCtx();
3618 ZSTD_DCtx dctx;
3650 ZSTD_DCtx* ZSTDv04_createDCtx(void) { return ZSTD_createDCtx(); }
3651 size_t ZSTDv04_freeDCtx(ZSTD_DCtx* dctx) { return ZSTD_freeDCtx(dctx); }