Home
last modified time | relevance | path

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

/freebsd/sys/contrib/zstd/lib/compress/
H A Dzstdmt_compress.c106 static void ZSTDMT_freeBufferPool(ZSTDMT_bufferPool* bufPool) in ZSTDMT_freeBufferPool() argument
108 DEBUGLOG(3, "ZSTDMT_freeBufferPool (address:%08X)", (U32)(size_t)bufPool); in ZSTDMT_freeBufferPool()
109 if (!bufPool) return; /* compatibility with free on NULL */ in ZSTDMT_freeBufferPool()
110 if (bufPool->buffers) { in ZSTDMT_freeBufferPool()
112 for (u=0; u<bufPool->totalBuffers; u++) { in ZSTDMT_freeBufferPool()
113 … DEBUGLOG(4, "free buffer %2u (address:%08X)", u, (U32)(size_t)bufPool->buffers[u].start); in ZSTDMT_freeBufferPool()
114 ZSTD_customFree(bufPool->buffers[u].start, bufPool->cMem); in ZSTDMT_freeBufferPool()
116 ZSTD_customFree(bufPool->buffers, bufPool->cMem); in ZSTDMT_freeBufferPool()
118 ZSTD_pthread_mutex_destroy(&bufPool->poolMutex); in ZSTDMT_freeBufferPool()
119 ZSTD_customFree(bufPool, bufPool->cMem); in ZSTDMT_freeBufferPool()
[all …]