Home
last modified time | relevance | path

Searched refs:ddict_ctx (Results 1 – 2 of 2) sorted by relevance

/dports/archivers/zchunk/zchunk-1.1.16/src/lib/comp/zstd/
H A Dzstd.c73 comp->ddict_ctx = ZSTD_createDDict(comp->dict, comp->dict_size); in init()
74 if(comp->ddict_ctx == NULL) { in init()
91 if(comp->ddict_ctx) { in close()
92 ZSTD_freeDDict(comp->ddict_ctx); in close()
93 comp->ddict_ctx = NULL; in close()
209 if(use_dict && comp->ddict_ctx) { in end_dchunk()
212 src_size, comp->ddict_ctx); in end_dchunk()
/dports/archivers/zchunk/zchunk-1.1.16/src/lib/
H A Dzck_private.h201 void *ddict_ctx; member