Home
last modified time | relevance | path

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

/oneTBB/test/tbbmalloc/
H A Dtest_malloc_pools.cpp102 REQUIRE(pool_malloc(pool, 8)); in TestPoolReset()
103 REQUIRE(pool_malloc(pool, 50*1024)); in TestPoolReset()
109 REQUIRE(pool_malloc(pool, 8)); in TestPoolReset()
110 REQUIRE(pool_malloc(pool, 50*1024)); in TestPoolReset()
153 local[i] = pool_malloc(pool, 16*1024); in operator ()()
389 if (void *p = pool_malloc(pool, sz)) { in haveEnoughSpace()
451 void *o = pool_malloc(pool, 64); in TestFixedBufferPool()
503 void *p = pool_malloc(pool, sz); in TestPoolGranularity()
545 ptrs[i] = pool_malloc(pool, 7*1024); in TestPoolKeepTillDestroy()
640 void *o = pool_malloc(pool, size); in CreateUsablePool()
[all …]
H A Dtest_malloc_whitebox.cpp428 void *ptr = pool_malloc(my_mallocPool, sz); in operator ()()
470 void *p = pool_malloc(mallocPool, passBackendSz); in TestPools()
477 void *p = pool_malloc(mallocPool, anotherLOCBinSz); in TestPools()
482 void *smallObj = pool_malloc(fixedPool, 10); in TestPools()
485 void *ptr = pool_malloc(fixedPool, 1024); in TestPools()
488 void *largeObj = pool_malloc(fixedPool, minLargeObjectSize); in TestPools()
491 ptr = pool_malloc(fixedPool, minLargeObjectSize); in TestPools()
514 p[3] = pool_malloc(mallocPool, minLargeObjectSize+2*LargeCacheStep); in TestPools()
516 p[0] = pool_malloc(mallocPool, minLargeObjectSize); in TestPools()
530 p[4] = pool_malloc(mallocPool, minLargeObjectSize+3*LargeCacheStep); in TestPools()
[all …]
H A Dtest_scalable_allocator.cpp156 allocated = pool_malloc(pool, 16) || pool_malloc(pool, 9*1024); in TestSmallFixedSizePool()
/oneTBB/src/tbbmalloc/def/
H A Dwin32-tbbmalloc.def39 ?pool_malloc@rml@@YAPAXPAVMemoryPool@1@I@Z
H A Dwin64-tbbmalloc.def39 ?pool_malloc@rml@@YAPEAXPEAVMemoryPool@1@_K@Z
/oneTBB/include/oneapi/tbb/
H A Dscalable_allocator.h186 TBBMALLOC_EXPORT void *pool_malloc(MemoryPool* memPool, std::size_t size);
H A Dmemory_pool.h51 void *malloc(size_t size) { return rml::pool_malloc(my_pool, size); } in malloc()
/oneTBB/src/tbbmalloc/
H A Dfrontend.cpp2753 void *pool_malloc(rml::MemoryPool* mPool, size_t size) in pool_malloc() function