Lines Matching defs:hMemPool
157 RTDECL(int) RTMemPoolDestroy(RTMEMPOOL hMemPool)
159 if (hMemPool == NIL_RTMEMPOOL)
161 PRTMEMPOOLINT pMemPool = hMemPool;
246 RTDECL(void *) RTMemPoolAlloc(RTMEMPOOL hMemPool, size_t cb) RT_NO_THROW
248 PRTMEMPOOLINT pMemPool = hMemPool;
261 RTDECL(void *) RTMemPoolAllocZ(RTMEMPOOL hMemPool, size_t cb) RT_NO_THROW
263 PRTMEMPOOLINT pMemPool = hMemPool;
276 RTDECL(void *) RTMemPoolDup(RTMEMPOOL hMemPool, const void *pvSrc, size_t cb) RT_NO_THROW
278 PRTMEMPOOLINT pMemPool = hMemPool;
292 RTDECL(void *) RTMemPoolDupEx(RTMEMPOOL hMemPool, const void *pvSrc, size_t cbSrc, size_t cbExtra) RT_NO_THROW
294 PRTMEMPOOLINT pMemPool = hMemPool;
310 RTDECL(void *) RTMemPoolRealloc(RTMEMPOOL hMemPool, void *pvOld, size_t cbNew) RT_NO_THROW
317 RTMemPoolRelease(hMemPool, pvOld);
322 return RTMemPoolAlloc(hMemPool, cbNew);
327 PRTMEMPOOLINT pNewMemPool = hMemPool;
353 RTDECL(void) RTMemPoolFree(RTMEMPOOL hMemPool, void *pv) RT_NO_THROW
355 RTMemPoolRelease(hMemPool, pv);
373 RTDECL(uint32_t) RTMemPoolRelease(RTMEMPOOL hMemPool, void *pv) RT_NO_THROW
380 Assert( hMemPool == NIL_RTMEMPOOL
381 || hMemPool == pEntry->pMemPool
382 || (hMemPool == RTMEMPOOL_DEFAULT && pEntry->pMemPool == &g_rtMemPoolDefault));