Home
last modified time | relevance | path

Searched refs:cdictLocal (Results 1 – 3 of 3) sorted by relevance

/freebsd-12.1/sys/contrib/zstd/lib/compress/
H A Dzstdmt_compress.c762 ZSTD_CDict* cdictLocal; member
896 ZSTD_freeCDict(mtctx->cdictLocal); in ZSTDMT_freeCCtx()
912 + ZSTD_sizeof_CDict(mtctx->cdictLocal) in ZSTDMT_sizeof_CCtx()
1258 ZSTD_freeCDict(mtctx->cdictLocal); in ZSTDMT_initCStream_internal()
1259 mtctx->cdictLocal = ZSTD_createCDict_advanced(dict, dictSize, in ZSTDMT_initCStream_internal()
1262 mtctx->cdict = mtctx->cdictLocal; in ZSTDMT_initCStream_internal()
1263 if (mtctx->cdictLocal == NULL) return ERROR(memory_allocation); in ZSTDMT_initCStream_internal()
1265 ZSTD_freeCDict(mtctx->cdictLocal); in ZSTDMT_initCStream_internal()
1266 mtctx->cdictLocal = NULL; in ZSTDMT_initCStream_internal()
H A Dzstd_compress.c110 ZSTD_freeCDict(cctx->cdictLocal); cctx->cdictLocal = NULL; in ZSTD_freeCCtx()
134 + ZSTD_sizeof_CDict(cctx->cdictLocal) in ZSTD_sizeof_CCtx()
514 cctx->cdictLocal = NULL; in ZSTD_CCtx_loadDictionary_advanced()
519 cctx->cdictLocal = ZSTD_createCDict_advanced( in ZSTD_CCtx_loadDictionary_advanced()
523 cctx->cdict = cctx->cdictLocal; in ZSTD_CCtx_loadDictionary_advanced()
524 if (cctx->cdictLocal == NULL) in ZSTD_CCtx_loadDictionary_advanced()
2937 ZSTD_freeCDict(zcs->cdictLocal); in ZSTD_initCStream_internal()
2938 zcs->cdictLocal = ZSTD_createCDict_advanced(dict, dictSize, in ZSTD_initCStream_internal()
2941 zcs->cdict = zcs->cdictLocal; in ZSTD_initCStream_internal()
2947 ZSTD_freeCDict(zcs->cdictLocal); in ZSTD_initCStream_internal()
[all …]
H A Dzstd_compress_internal.h228 ZSTD_CDict* cdictLocal; member