Lines Matching refs:mtctx
170 ZSTDMT_freeCCtx(cctx->mtctx); cctx->mtctx = NULL; in ZSTD_freeCCtxContent()
194 return ZSTDMT_sizeof_CCtx(cctx->mtctx); in ZSTD_sizeof_mtctx()
1622 return ZSTDMT_getFrameProgression(cctx->mtctx); in ZSTD_getFrameProgression()
1646 return ZSTDMT_toFlushNow(cctx->mtctx); in ZSTD_toFlushNow()
5499 assert(cctx->mtctx != NULL); in ZSTD_nextInputSizeHint_MTorST()
5500 return ZSTDMT_nextInputSizeHint(cctx->mtctx); in ZSTD_nextInputSizeHint_MTorST()
5589 if (cctx->mtctx == NULL) { in ZSTD_CCtx_init_compressStream2()
5592 … cctx->mtctx = ZSTDMT_createCCtx_advanced((U32)params.nbWorkers, cctx->customMem, cctx->pool); in ZSTD_CCtx_init_compressStream2()
5593 RETURN_ERROR_IF(cctx->mtctx == NULL, memory_allocation, "NULL pointer!"); in ZSTD_CCtx_init_compressStream2()
5598 cctx->mtctx, in ZSTD_CCtx_init_compressStream2()
5659 ZSTDMT_updateCParams_whileCompressing(cctx->mtctx, &cctx->requestedParams); in ZSTD_compressStream2()
5665 flushMin = ZSTDMT_compressStream_generic(cctx->mtctx, output, input, endOp); in ZSTD_compressStream2()