Searched refs:PANDA_DEFAULT_POOL_SIZE (Results 1 - 7 of 7) sorted by relevance
/arkcompiler/runtime_core/static_core/runtime/include/mem/ |
H A D | allocator-inl.h | 65 size_t poolSize = std::max(PANDA_DEFAULT_POOL_SIZE, ObjectAllocator::GetMinPoolSize()); in AllocateTenuredImpl() 69 size_t poolSize = std::max(PANDA_DEFAULT_POOL_SIZE, LargeObjectAllocator::GetMinPoolSize()); in AllocateTenuredImpl() 73 size_t poolSize = std::max(PANDA_DEFAULT_POOL_SIZE, HumongousObjectAllocator::GetMinPoolSize(size)); in AllocateTenuredImpl()
|
/arkcompiler/runtime_core/static_core/runtime/mem/ |
H A D | allocator.cpp | 58 auto poolSize = std::max(PANDA_DEFAULT_POOL_SIZE, PANDA_DEFAULT_ALLOCATOR_POOL_SIZE); in HaveEnoughPoolsInObjectSpace() 119 size_t poolSize = std::max(PANDA_DEFAULT_POOL_SIZE, ObjectAllocator::GetMinPoolSize()); in Allocate() 122 size_t poolSize = std::max(PANDA_DEFAULT_POOL_SIZE, LargeObjectAllocator::GetMinPoolSize()); in Allocate() 125 size_t poolSize = std::max(PANDA_DEFAULT_POOL_SIZE, HumongousObjectAllocator::GetMinPoolSize(size)); in Allocate() 296 size_t poolSize = std::max(PANDA_DEFAULT_POOL_SIZE, ObjectAllocator::GetMinPoolSize()); in AllocateNonMovable() 300 size_t poolSize = std::max(PANDA_DEFAULT_POOL_SIZE, LargeObjectAllocator::GetMinPoolSize()); in AllocateNonMovable() 306 size_t poolSize = std::max(PANDA_DEFAULT_POOL_SIZE, HumongousObjectAllocator::GetMinPoolSize(size)); in AllocateNonMovable()
|
H A D | heap_space.cpp | 148 AlignUp(memSpace_.GetCurrentSize() + PANDA_DEFAULT_POOL_SIZE, PANDA_POOL_ALIGNMENT_IN_BYTES)); in ClampCurrentMaxHeapSize()
|
/arkcompiler/runtime_core/libpandabase/mem/ |
H A D | mem.h | 194 constexpr size_t PANDA_DEFAULT_POOL_SIZE = 1_MB; member 197 static_assert(PANDA_DEFAULT_POOL_SIZE % PANDA_POOL_ALIGNMENT_IN_BYTES == 0);
|
/arkcompiler/runtime_core/static_core/libpandabase/mem/ |
H A D | mem.h | 220 constexpr size_t PANDA_DEFAULT_POOL_SIZE = 1_MB; member 223 static_assert(PANDA_DEFAULT_POOL_SIZE % PANDA_POOL_ALIGNMENT_IN_BYTES == 0);
|
/arkcompiler/runtime_core/static_core/libpandabase/tests/ |
H A D | mmap_test.cpp | 54 static constexpr size_t DEFAULT_MMAP_TEST_SIZE = PANDA_DEFAULT_POOL_SIZE;
|
/arkcompiler/runtime_core/static_core/runtime/tests/ |
H A D | heap_space_test.cpp | 271 pool3 = heapSpace_->TryAllocPool(PANDA_DEFAULT_POOL_SIZE, SpaceType::SPACE_TYPE_OBJECT, in TEST_F()
|
Completed in 6 milliseconds