Searched refs:srcBufPool (Results 1 – 1 of 1) sorted by relevance
171 static ZSTDMT_bufferPool* ZSTDMT_expandBufferPool(ZSTDMT_bufferPool* srcBufPool, unsigned maxNbBuff… in ZSTDMT_expandBufferPool() argument173 if (srcBufPool==NULL) return NULL; in ZSTDMT_expandBufferPool()174 if (srcBufPool->totalBuffers >= maxNbBuffers) /* good enough */ in ZSTDMT_expandBufferPool()175 return srcBufPool; in ZSTDMT_expandBufferPool()177 { ZSTD_customMem const cMem = srcBufPool->cMem; in ZSTDMT_expandBufferPool()178 size_t const bSize = srcBufPool->bufferSize; /* forward parameters */ in ZSTDMT_expandBufferPool()180 ZSTDMT_freeBufferPool(srcBufPool); in ZSTDMT_expandBufferPool()