OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ZBUFF_DCtx
(Results
1 - 3
of
3
) sorted by relevancy
/src/external/bsd/zstd/dist/lib/deprecated/
zbuff_decompress.c
22
ZBUFF_DCtx
* ZBUFF_createDCtx(void)
27
ZBUFF_DCtx
* ZBUFF_createDCtx_advanced(ZSTD_customMem customMem)
32
size_t ZBUFF_freeDCtx(
ZBUFF_DCtx
* zbd)
40
size_t ZBUFF_decompressInitDictionary(
ZBUFF_DCtx
* zbd, const void* dict, size_t dictSize)
45
size_t ZBUFF_decompressInit(
ZBUFF_DCtx
* zbd)
53
size_t ZBUFF_decompressContinue(
ZBUFF_DCtx
* zbd,
zbuff.h
123
typedef ZSTD_DStream
ZBUFF_DCtx
;
124
ZBUFF_DEPRECATED("use ZSTD_createDStream")
ZBUFF_DCtx
* ZBUFF_createDCtx(void);
125
ZBUFF_DEPRECATED("use ZSTD_freeDStream") size_t ZBUFF_freeDCtx(
ZBUFF_DCtx
* dctx);
127
ZBUFF_DEPRECATED("use ZSTD_initDStream") size_t ZBUFF_decompressInit(
ZBUFF_DCtx
* dctx);
128
ZBUFF_DEPRECATED("use ZSTD_initDStream_usingDict") size_t ZBUFF_decompressInitDictionary(
ZBUFF_DCtx
* dctx, const void* dict, size_t dictSize);
130
ZBUFF_DEPRECATED("use ZSTD_decompressStream") size_t ZBUFF_decompressContinue(
ZBUFF_DCtx
* dctx,
137
* A
ZBUFF_DCtx
object is required to track streaming operations.
141
* Note that
ZBUFF_DCtx
objects can be re-init multiple times.
199
ZBUFF_DEPRECATED("use ZSTD_createDStream_advanced")
ZBUFF_DCtx
* ZBUFF_createDCtx_advanced(ZSTD_customMem customMem);
/src/external/bsd/zstd/dist/lib/legacy/
zstd_v04.c
3279
* A
ZBUFF_DCtx
object is required to track streaming operation.
3282
*
ZBUFF_DCtx
objects can be reused multiple times.
3319
}; /* typedef'd to
ZBUFF_DCtx
within "zstd_buffered.h" */
3321
typedef ZBUFFv04_DCtx
ZBUFF_DCtx
;
3324
static
ZBUFF_DCtx
* ZBUFF_createDCtx(void)
3326
ZBUFF_DCtx
* zbc = (
ZBUFF_DCtx
*)malloc(sizeof(
ZBUFF_DCtx
));
3334
static size_t ZBUFF_freeDCtx(
ZBUFF_DCtx
* zbc)
3347
static size_t ZBUFF_decompressInit(
ZBUFF_DCtx
* zbc
[
all
...]
Completed in 17 milliseconds
Indexes created Sat Sep 12 00:25:55 UTC 2026