Home
last modified time | relevance | path

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

/freebsd-12-stable/sys/contrib/zstd/lib/compress/
Dzstdmt_compress.c748 roundBuff_t roundBuff; member
838 mtctx->roundBuff = kNullRoundBuff; in ZSTDMT_createCCtx_advanced()
897 if (mtctx->roundBuff.buffer) in ZSTDMT_freeCCtx()
898 ZSTD_free(mtctx->roundBuff.buffer, mtctx->cMem); in ZSTDMT_freeCCtx()
913 + mtctx->roundBuff.capacity; in ZSTDMT_sizeof_CCtx()
1293 if (mtctx->roundBuff.capacity < capacity) { in ZSTDMT_initCStream_internal()
1294 if (mtctx->roundBuff.buffer) in ZSTDMT_initCStream_internal()
1295 ZSTD_free(mtctx->roundBuff.buffer, mtctx->cMem); in ZSTDMT_initCStream_internal()
1296 mtctx->roundBuff.buffer = (BYTE*)ZSTD_malloc(capacity, mtctx->cMem); in ZSTDMT_initCStream_internal()
1297 if (mtctx->roundBuff.buffer == NULL) { in ZSTDMT_initCStream_internal()
[all …]