Home
last modified time | relevance | path

Searched refs:FreePool (Results 1 - 18 of 18) sorted by relevance

/arkcompiler/runtime_core/static_core/libpandabase/tests/
H A Dmmap_mem_pool_test.cpp52 memPool->template FreePool<OSPagesPolicy::NO_RETURN>(pool.GetMem(), pool.GetSize()); in FreePoolWithPolicy()
54 memPool->template FreePool<OSPagesPolicy::IMMEDIATE_RETURN>(pool.GetMem(), pool.GetSize()); in FreePoolWithPolicy()
88 memPool->FreePool(finalPool.GetMem(), finalPool.GetSize()); in ReturnedToOsTest()
98 memPool->FreePool(pools[i].GetMem(), pools[i].GetSize()); in ReturnedToOsTest()
102 memPool->FreePool(fourthPool.GetMem(), fourthPool.GetSize()); in ReturnedToOsTest()
168 memPool->FreePool(pool1.GetMem(), pool1.GetSize()); in TEST_F()
191 memPool->FreePool(pool1.GetMem(), pool1.GetSize()); in TEST_F()
192 memPool->FreePool(pool3.GetMem(), pool3.GetSize()); in TEST_F()
193 memPool->FreePool(pool4.GetMem(), pool4.GetSize()); in TEST_F()
194 memPool->FreePool(pool in TEST_F()
[all...]
/arkcompiler/runtime_core/libpandabase/tests/
H A Dmmap_mem_pool_test.cpp74 memPool->FreePool(pool1.GetMem(), pool1.GetSize()); in HWTEST_F()
93 memPool->FreePool(pool1.GetMem(), pool1.GetSize()); in HWTEST_F()
94 memPool->FreePool(pool3.GetMem(), pool3.GetSize()); in HWTEST_F()
95 memPool->FreePool(pool4.GetMem(), pool4.GetSize()); in HWTEST_F()
96 memPool->FreePool(pool5.GetMem(), pool5.GetSize()); in HWTEST_F()
127 memPool->FreePool(pool_with_alloc_addr.GetMem(), pool_with_alloc_addr.GetSize()); in HWTEST_F()
128 memPool->FreePool(pool_without_alloc_addr.GetMem(), pool_without_alloc_addr.GetSize()); in HWTEST_F()
148 mem_pool->FreePool(object_pool.GetMem(), object_pool.GetSize()); in HWTEST_F()
149 mem_pool->FreePool(internal_pool.GetMem(), internal_pool.GetSize()); in HWTEST_F()
150 mem_pool->FreePool(code_poo in HWTEST_F()
[all...]
/arkcompiler/runtime_core/static_core/runtime/tests/
H A Dheap_space_test.cpp127 heapSpace_->FreePool(pool1.GetMem(), pool1.GetSize()); in TEST_F()
133 heapSpace_->FreePool(pool2.GetMem(), pool2.GetSize()); in TEST_F()
164 heapSpace_->FreePool(pool1.GetMem(), pool1.GetSize()); in TEST_F()
169 heapSpace_->FreePool(pool2.GetMem(), pool2.GetSize()); in TEST_F()
213 genSpaces_->FreePool(pool2.GetMem(), pool2.GetSize()); in TEST_F()
214 genSpaces_->FreePool(pool1.GetMem(), pool1.GetSize()); in TEST_F()
275 heapSpace_->FreePool(pool1.GetMem(), pool1.GetSize()); in TEST_F()
276 heapSpace_->FreePool(pool2.GetMem(), pool2.GetSize()); in TEST_F()
277 heapSpace_->FreePool(pool3.GetMem(), pool3.GetSize()); in TEST_F()
H A Dhumongous_obj_allocator_test.cpp96 PoolManager::GetMmapMemPool()->FreePool(i.GetMem(), i.GetSize()); in ClearPoolManager()
H A Dfreelist_allocator_test.cpp98 PoolManager::GetMmapMemPool()->FreePool(i.GetMem(), i.GetSize()); in ClearPoolManager()
/arkcompiler/runtime_core/static_core/runtime/mem/
H A Dheap_space.cpp199 void HeapSpace::FreePool(void *poolMem, size_t poolSize, bool releasePages) in FreePool() function in ark::mem::HeapSpace
205 PoolManager::GetMmapMemPool()->FreePool<OSPagesPolicy::IMMEDIATE_RETURN>(poolMem, poolSize); in FreePool()
207 PoolManager::GetMmapMemPool()->FreePool<OSPagesPolicy::NO_RETURN>(poolMem, poolSize); in FreePool()
430 PoolManager::GetMmapMemPool()->FreePool(poolMem, poolSize); in FreeSharedPool()
439 PoolManager::GetMmapMemPool()->FreePool<OSPagesPolicy::IMMEDIATE_RETURN>(poolMem, poolSize); in FreeYoungPool()
441 PoolManager::GetMmapMemPool()->FreePool<OSPagesPolicy::NO_RETURN>(poolMem, poolSize); in FreeYoungPool()
458 HeapSpace::FreePool(poolMem, poolSize, releasePages); in FreeTenuredPool()
H A Dinternal_allocator.cpp322 [](void *mem, [[maybe_unused]] size_t size) { PoolManager::GetMmapMemPool()->FreePool(mem, size); }); in FinalizeLocalInternalAllocator()
335 [](void *mem, [[maybe_unused]] size_t size) { PoolManager::GetMmapMemPool()->FreePool(mem, size); }); in RemoveFreePoolsForLocalInternalAllocator()
H A Dallocator.cpp214 [](void *mem, size_t size) { PoolManager::GetMmapMemPool()->FreePool(mem, size); }); in FreeObjectsMovedToPygoteSpace()
406 [](void *mem, size_t size) { PoolManager::GetMmapMemPool()->FreePool(mem, size); }); in FreeObjectsMovedToPygoteSpace()
522 [](void *mem, [[maybe_unused]] size_t size) { PoolManager::GetMmapMemPool()->FreePool(mem, size); }); in ~ObjectAllocatorGen()
H A Dheap_space.h102 void FreePool(void *poolMem, size_t poolSize, bool releasePages = true);
H A Dheap_manager.cpp96 [](void *mem, [[maybe_unused]] size_t size) { PoolManager::GetMmapMemPool()->FreePool(mem, size); }); in Finalize()
/arkcompiler/runtime_core/libpandabase/mem/
H A Dmem_pool.h122 void FreePool(void *mem, size_t size) in FreePool() function in panda::MemPool
/arkcompiler/runtime_core/static_core/libpandabase/mem/
H A Dmem_pool.h150 void FreePool(void *mem, size_t size) in FreePool() function in ark::MemPool
H A Dstack_like_allocator-inl.h58 PoolManager::GetMmapMemPool()->FreePool(startAddr_, MAX_SIZE); in ~StackLikeAllocator()
/arkcompiler/runtime_core/static_core/runtime/mem/gc/stw-gc/
H A Dstw-gc.cpp167 [](void *mem, [[maybe_unused]] size_t size) { PoolManager::GetMmapMemPool()->FreePool(mem, size); }); in SweepImpl()
/arkcompiler/runtime_core/static_core/runtime/coroutines/
H A Dstackful_coroutine_manager.cpp38 PoolManager::GetMmapMemPool()->FreePool(stack, coroStackSizeBytes_); in FreeCoroutineStack()
/arkcompiler/runtime_core/static_core/runtime/mem/gc/
H A Dgc.cpp377 [](void *mem, [[maybe_unused]] size_t size) { PoolManager::GetMmapMemPool()->FreePool(mem, size); }); in RunPhases()
/arkcompiler/runtime_core/static_core/runtime/mem/gc/gen-gc/
H A Dgen-gc.cpp635 PoolManager::GetMmapMemPool()->FreePool(mem, size); in Sweep()
/arkcompiler/runtime_core/static_core/runtime/
H A Druntime.cpp114 [](void *mem, size_t size) { PoolManager::GetMmapMemPool()->FreePool(mem, size); }); in Finalize()

Completed in 17 milliseconds