Home
last modified time | relevance | path

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

/freebsd/sys/contrib/zstd/lib/compress/
H A Dzstdmt_compress.c350 int availCCtx; member
380 cctxPool->availCCtx = 1; /* at least one cctx for single-thread mode */ in ZSTDMT_createCCtxPool()
421 if (cctxPool->availCCtx) { in ZSTDMT_getCCtx()
422 cctxPool->availCCtx--; in ZSTDMT_getCCtx()
423 { ZSTD_CCtx* const cctx = cctxPool->cctx[cctxPool->availCCtx]; in ZSTDMT_getCCtx()
436 if (pool->availCCtx < pool->totalCCtx) in ZSTDMT_releaseCCtx()
437 pool->cctx[pool->availCCtx++] = cctx; in ZSTDMT_releaseCCtx()