Home
last modified time | relevance | path

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

/external/zstd/lib/compress/
Dzstdmt_compress.c163 static ZSTDMT_bufferPool* ZSTDMT_expandBufferPool(ZSTDMT_bufferPool* srcBufPool, U32 nbWorkers) in ZSTDMT_expandBufferPool() argument
166 if (srcBufPool==NULL) return NULL; in ZSTDMT_expandBufferPool()
167 if (srcBufPool->totalBuffers >= maxNbBuffers) /* good enough */ in ZSTDMT_expandBufferPool()
168 return srcBufPool; in ZSTDMT_expandBufferPool()
170 { ZSTD_customMem const cMem = srcBufPool->cMem; in ZSTDMT_expandBufferPool()
171 size_t const bSize = srcBufPool->bufferSize; /* forward parameters */ in ZSTDMT_expandBufferPool()
173 ZSTDMT_freeBufferPool(srcBufPool); in ZSTDMT_expandBufferPool()