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.c877 RoundBuff_t roundBuff; member
983 mtctx->roundBuff = kNullRoundBuff; in ZSTDMT_createCCtx_advanced_internal()
1056 if (mtctx->roundBuff.buffer) in ZSTDMT_freeCCtx()
1057 ZSTD_customFree(mtctx->roundBuff.buffer, mtctx->cMem); in ZSTDMT_freeCCtx()
1072 + mtctx->roundBuff.capacity; in ZSTDMT_sizeof_CCtx()
1328 if (mtctx->roundBuff.capacity < capacity) { in ZSTDMT_initCStream_internal()
1329 if (mtctx->roundBuff.buffer) in ZSTDMT_initCStream_internal()
1330 ZSTD_customFree(mtctx->roundBuff.buffer, mtctx->cMem); in ZSTDMT_initCStream_internal()
1331 mtctx->roundBuff.buffer = (BYTE*)ZSTD_customMalloc(capacity, mtctx->cMem); in ZSTDMT_initCStream_internal()
1332 if (mtctx->roundBuff.buffer == NULL) { in ZSTDMT_initCStream_internal()
[all …]