Home
last modified time | relevance | path

Searched defs:alignedSize (Results 1 – 17 of 17) sorted by relevance

/arkcompiler/runtime_core/static_core/runtime/include/mem/
Dallocator-inl.h63 size_t alignedSize = AlignUp(size, GetAlignmentInBytes(align)); in AllocateTenuredImpl() local
/arkcompiler/runtime_core/static_core/runtime/mem/
Dregion_space-inl.h58 void *Region::Alloc(size_t alignedSize) in Alloc()
Dallocator.cpp117 size_t alignedSize = AlignUp(size, GetAlignmentInBytes(align)); in Allocate() local
272 size_t alignedSize = AlignUp(size, GetAlignmentInBytes(align)); in Allocate() local
294 size_t alignedSize = AlignUp(size, GetAlignmentInBytes(align)); in AllocateNonMovable() local
Dinternal_allocator.cpp245 size_t alignedSize = AlignUp(size, GetAlignmentInBytes(align)); in AllocViaPandaAllocators() local
Dhumongous_obj_allocator-inl.h60 size_t alignedSize = size + sizeof(MemoryPoolHeader) + GetAlignmentInBytes(align); in Alloc() local
Dfreelist_allocator-inl.h563 size_t alignedSize = size; in GetFromSegregatedList() local
Dregion_allocator-inl.h454 size_t alignedSize = AlignUp(objectSize, DEFAULT_ALIGNMENT_IN_BYTES); in CompactSpecificRegion() local
/arkcompiler/runtime_core/static_core/runtime/mem/gc/g1/
Dg1-allocator.cpp197 size_t alignedSize = AlignUp(size, GetAlignmentInBytes(align)); in Allocate() local
221 size_t alignedSize = AlignUp(size, GetAlignmentInBytes(align)); in AllocateNonMovable() local
Dg1-evacuate-regions-worker-state-inl.h44 auto alignedSize = AlignUp(objectSize, DEFAULT_ALIGNMENT_IN_BYTES); in Evacuate() local
/arkcompiler/ets_runtime/ecmascript/mem/
Dspace.cpp213 …size_t alignedSize = AlignUp(objectSize + sizeof(Region) + HUGE_OBJECT_BITSET_SIZE, PANDA_POOL_ALI… in Allocate() local
Dlinear_space.cpp160 void LinearSpace::InvokeAllocationInspector(Address object, size_t size, size_t alignedSize) in InvokeAllocationInspector()
Dsparse_space.cpp348 void SparseSpace::InvokeAllocationInspector(Address object, size_t size, size_t alignedSize) in InvokeAllocationInspector()
/arkcompiler/ets_runtime/ecmascript/mem/shared_heap/
Dshared_space.cpp375 void SharedSparseSpace::InvokeAllocationInspector(Address object, size_t size, size_t alignedSize) in InvokeAllocationInspector()
600 …size_t alignedSize = AlignUp(objectSize + sizeof(Region) + HUGE_OBJECT_BITSET_SIZE, PANDA_POOL_ALI… in Allocate() local
/arkcompiler/runtime_core/static_core/platforms/unix/libpandabase/
Dmem.cpp110 size_t alignedSize = (size + alignmentInBytes - 1) & ~(alignmentInBytes - 1); in AlignedAlloc() local
/arkcompiler/runtime_core/static_core/platforms/windows/libpandabase/
Dmem.cpp327 size_t alignedSize = (size + alignmentInBytes - 1) & ~(alignmentInBytes - 1); in AlignedAlloc() local
/arkcompiler/runtime_core/static_core/runtime/mem/gc/gen-gc/
Dgen-gc.cpp303 size_t alignedSize = GetAlignedObjectSize(size); in CollectYoungAndMove() local
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/llvm/
Dllvm_codegen.cpp137 auto alignedSize = alignSize > 0 ? AlignUp(size, alignSize) : size; in Alloca() local