Searched refs:srcBufPool (Results 1 – 1 of 1) sorted by relevance
162 static ZSTDMT_bufferPool* ZSTDMT_expandBufferPool(ZSTDMT_bufferPool* srcBufPool, unsigned maxNbBuff… in ZSTDMT_expandBufferPool() argument164 if (srcBufPool==NULL) return NULL; in ZSTDMT_expandBufferPool()165 if (srcBufPool->totalBuffers >= maxNbBuffers) /* good enough */ in ZSTDMT_expandBufferPool()166 return srcBufPool; in ZSTDMT_expandBufferPool()168 { ZSTD_customMem const cMem = srcBufPool->cMem; in ZSTDMT_expandBufferPool()169 size_t const bSize = srcBufPool->bufferSize; /* forward parameters */ in ZSTDMT_expandBufferPool()171 ZSTDMT_freeBufferPool(srcBufPool); in ZSTDMT_expandBufferPool()