HomeSort by: relevance | last modified time | path
    Searched refs:ZSTD_DCtx (Results 1 - 25 of 44) sorted by relevancy

1 2

  /src/external/bsd/zstd/dist/lib/decompress/
zstd_ddict.h 40 void ZSTD_copyDDictParameters(ZSTD_DCtx* dctx, const ZSTD_DDict* ddict);
zstd_decompress_block.h 48 size_t ZSTD_decompressBlock_internal(ZSTD_DCtx* dctx,
68 size_t ZSTD_decompressBlock_deprecated(ZSTD_DCtx* dctx,
zstd_decompress.c 68 #include "zstd_decompress_internal.h" /* ZSTD_DCtx */
221 size_t ZSTD_sizeof_DCtx (const ZSTD_DCtx* dctx)
229 size_t ZSTD_estimateDCtxSize(void) { return sizeof(ZSTD_DCtx); }
240 static void ZSTD_DCtx_resetParameters(ZSTD_DCtx* dctx)
252 static void ZSTD_initDCtx_internal(ZSTD_DCtx* dctx)
281 ZSTD_DCtx* ZSTD_initStaticDCtx(void *workspace, size_t workspaceSize)
283 ZSTD_DCtx* const dctx = (ZSTD_DCtx*) workspace;
286 if (workspaceSize < sizeof(ZSTD_DCtx)) return NULL; /* minimum size */
294 static ZSTD_DCtx* ZSTD_createDCtx_internal(ZSTD_customMem customMem)
    [all...]
zstd_decompress_block.c 25 #include "zstd_decompress_internal.h" /* ZSTD_DCtx */
54 static size_t ZSTD_blockSizeMax(ZSTD_DCtx const* dctx)
80 static void ZSTD_allocateLiteralsBuffer(ZSTD_DCtx* dctx, void* const dst, const size_t dstCapacity, const size_t litSize,
134 static size_t ZSTD_decodeLiteralsBlock(ZSTD_DCtx* dctx,
343 size_t ZSTD_decodeLiteralsBlock_wrapper(ZSTD_DCtx* dctx,
346 size_t ZSTD_decodeLiteralsBlock_wrapper(ZSTD_DCtx* dctx,
695 size_t ZSTD_decodeSeqHeaders(ZSTD_DCtx* dctx, int* nbSeqPtr,
1350 static int ZSTD_dictionaryIsActive(ZSTD_DCtx const* dctx, BYTE const* prefixStart, BYTE const* oLitEnd)
1367 ZSTD_DCtx const* dctx,
1403 ZSTD_decompressSequences_bodySplitLitBuffer( ZSTD_DCtx* dctx
    [all...]
  /src/external/bsd/zstd/dist/lib/
zstd.h 303 typedef struct ZSTD_DCtx_s ZSTD_DCtx;
304 ZSTDLIB_API ZSTD_DCtx* ZSTD_createDCtx(void);
305 ZSTDLIB_API size_t ZSTD_freeDCtx(ZSTD_DCtx* dctx); /* accept NULL pointer */
309 * requires an allocated ZSTD_DCtx.
312 ZSTDLIB_API size_t ZSTD_decompressDCtx(ZSTD_DCtx* dctx,
686 ZSTDLIB_API size_t ZSTD_DCtx_setParameter(ZSTD_DCtx* dctx, ZSTD_dParameter param, int value);
694 ZSTDLIB_API size_t ZSTD_DCtx_reset(ZSTD_DCtx* dctx, ZSTD_ResetDirective reset);
908 typedef ZSTD_DCtx ZSTD_DStream; /**< DCtx and DStream are now effectively same object (>= v1.3.0) */
976 ZSTDLIB_API size_t ZSTD_decompress_usingDict(ZSTD_DCtx* dctx,
1033 ZSTDLIB_API size_t ZSTD_decompress_usingDDict(ZSTD_DCtx* dctx
    [all...]
  /src/external/bsd/zstd/dist/contrib/linux-kernel/test/
static_test.c 36 ZSTD_DCtx* dctx = zstd_init_dctx(wksp, wkspSize);
  /src/external/bsd/zstd/dist/tests/fuzz/
block_decompress.c 25 static ZSTD_DCtx *dctx = NULL;
simple_decompress.c 26 static ZSTD_DCtx *dctx = NULL;
decompress_dstSize_tooSmall.c 28 static ZSTD_DCtx *dctx = NULL;
dictionary_decompress.c 25 static ZSTD_DCtx *dctx = NULL;
block_round_trip.c 29 static ZSTD_DCtx *dctx = NULL;
decompress_cross_format.c 22 static ZSTD_DCtx *dctx = NULL;
raw_dictionary_round_trip.c 27 static ZSTD_DCtx *dctx = NULL;
dictionary_loader.c 55 ZSTD_DCtx* dctx = ZSTD_createDCtx();
  /src/external/bsd/zstd/dist/tests/
bigdict.c 22 compress(ZSTD_CCtx* cctx, ZSTD_DCtx* dctx,
66 ZSTD_DCtx* dctx = ZSTD_createDCtx();
largeDictionary.c 22 compress(ZSTD_CCtx* cctx, ZSTD_DCtx* dctx,
66 ZSTD_DCtx* dctx = ZSTD_createDCtx();
  /src/external/bsd/zstd/dist/examples/
dictionary_decompression.c 62 ZSTD_DCtx* const dctx = ZSTD_createDCtx();
streaming_decompression.c 26 ZSTD_DCtx* const dctx = ZSTD_createDCtx();
streaming_memory_usage.c 98 ZSTD_DCtx* const dctx = ZSTD_createDCtx();
  /src/usr.bin/gzip/
unzstd.c 36 ZSTD_DCtx *zds;
  /src/external/bsd/zstd/dist/programs/
zstdcli_trace.c 145 ZSTD_TraceCtx ZSTD_trace_decompress_begin(ZSTD_DCtx const* dctx)
  /src/external/bsd/zstd/dist/contrib/linux-kernel/
linux_zstd.h 210 typedef ZSTD_DCtx zstd_dctx; typedef
213 * zstd_dctx_workspace_bound() - max memory needed to initialize a zstd_dctx
229 zstd_dctx *zstd_init_dctx(void *workspace, size_t workspace_size);
245 size_t zstd_decompress_dctx(zstd_dctx *dctx, void *dst, size_t dst_capacity,
  /src/external/bsd/zstd/dist/lib/legacy/
zstd_v03.c 865 typedef struct ZSTDv03_Dctx_s ZSTD_DCtx;
2393 }; /* typedef'd to ZSTD_Dctx within "zstd_static.h" */
2450 ZSTD_DCtx* dctx = (ZSTD_DCtx*)ctx;
2762 ZSTD_DCtx* dctx = (ZSTD_DCtx*)ctx;
2907 ZSTD_DCtx ctx;
2972 static size_t ZSTD_resetDCtx(ZSTD_DCtx* dctx)
2981 static ZSTD_DCtx* ZSTD_createDCtx(void)
2983 ZSTD_DCtx* dctx = (ZSTD_DCtx*)malloc(sizeof(ZSTD_DCtx))
    [all...]
zstd_v04.c 209 typedef ZSTDv04_Dctx ZSTD_DCtx;
217 static size_t ZSTD_decompress_usingDict(ZSTD_DCtx* ctx,
226 static size_t ZSTD_resetDCtx(ZSTD_DCtx* dctx);
228 static void ZSTD_decompress_insertDictionary(ZSTD_DCtx* ctx, const void* src, size_t srcSize);
230 static size_t ZSTD_nextSrcSizeToDecompress(ZSTD_DCtx* dctx);
231 static size_t ZSTD_decompressContinue(ZSTD_DCtx* dctx, void* dst, size_t maxDstSize, const void* src, size_t srcSize);
236 A ZSTD_DCtx object is required to track streaming operations.
238 A ZSTD_DCtx object can be re-used multiple times. Use ZSTD_resetDCtx() to return to fresh status.
2456 }; /* typedef'd to ZSTD_DCtx within "zstd_static.h" */
2458 static size_t ZSTD_resetDCtx(ZSTD_DCtx* dctx
    [all...]
  /src/external/bsd/zstd/dist/contrib/recovery/
recover_directory.c 116 ZSTD_DCtx* dctx = ZSTD_createDCtx();

Completed in 40 milliseconds

1 2