Home
last modified time | relevance | path

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

/freebsd/sys/contrib/zstd/lib/compress/
H A Dzstdmt_compress.c845 roundBuff_t roundBuff; member
951 mtctx->roundBuff = kNullRoundBuff; in ZSTDMT_createCCtx_advanced_internal()
1024 if (mtctx->roundBuff.buffer) in ZSTDMT_freeCCtx()
1025 ZSTD_customFree(mtctx->roundBuff.buffer, mtctx->cMem); in ZSTDMT_freeCCtx()
1040 + mtctx->roundBuff.capacity; in ZSTDMT_sizeof_CCtx()
1299 if (mtctx->roundBuff.capacity < capacity) { in ZSTDMT_initCStream_internal()
1300 if (mtctx->roundBuff.buffer) in ZSTDMT_initCStream_internal()
1301 ZSTD_customFree(mtctx->roundBuff.buffer, mtctx->cMem); in ZSTDMT_initCStream_internal()
1302 mtctx->roundBuff.buffer = (BYTE*)ZSTD_customMalloc(capacity, mtctx->cMem); in ZSTDMT_initCStream_internal()
1303 if (mtctx->roundBuff.buffer == NULL) { in ZSTDMT_initCStream_internal()
[all …]