Home
last modified time | relevance | path

Searched defs:alignedSize (Results 1 - 15 of 15) sorted by relevance

/arkcompiler/runtime_core/static_core/runtime/include/mem/
H A Dallocator-inl.h63 size_t alignedSize = AlignUp(size, GetAlignmentInBytes(align)); in AllocateTenuredImpl() local
/arkcompiler/runtime_core/static_core/runtime/mem/
H A Dregion_space-inl.h58 void *Region::Alloc(size_t alignedSize) in Alloc() argument
76 ASAN_UNPOISON_MEMORY_REGION(ToVoidPtr(oldTop), alignedSize); in Alloc() local
86 ASAN_UNPOISON_MEMORY_REGION(ToVoidPtr(oldTop), alignedSize); in Alloc() local
H A Dinternal_allocator.cpp245 size_t alignedSize = AlignUp(size, GetAlignmentInBytes(align)); in AllocViaPandaAllocators() local
H A Dhumongous_obj_allocator-inl.h60 size_t alignedSize = size + sizeof(MemoryPoolHeader) + GetAlignmentInBytes(align); in Alloc() local
H A 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
H A Dfreelist_allocator-inl.h563 size_t alignedSize = size; in GetFromSegregatedList() local
/arkcompiler/runtime_core/static_core/runtime/mem/gc/g1/
H A Dg1-evacuate-regions-worker-state-inl.h65 auto alignedSize = AlignUp(objectSize, DEFAULT_ALIGNMENT_IN_BYTES); in Evacuate() local
H A Dg1-allocator.cpp197 size_t alignedSize = AlignUp(size, GetAlignmentInBytes(align)); in Allocate() local
221 size_t alignedSize = AlignUp(size, GetAlignmentInBytes(align)); in AllocateNonMovable() local
/arkcompiler/ets_runtime/ecmascript/mem/
H A Dspace.cpp223 size_t alignedSize = AlignUp(objectSize + sizeof(Region) + HUGE_OBJECT_BITSET_SIZE, PANDA_POOL_ALIGNMENT_IN_BYTES); in Allocate() local
H A Dlinear_space.cpp161 void LinearSpace::InvokeAllocationInspector(Address object, size_t size, size_t alignedSize) in InvokeAllocationInspector() argument
H A Dsparse_space.cpp350 void SparseSpace::InvokeAllocationInspector(Address object, size_t size, size_t alignedSize) in InvokeAllocationInspector() argument
/arkcompiler/runtime_core/static_core/platforms/unix/libpandabase/
H A Dmem.cpp111 size_t alignedSize = (size + alignmentInBytes - 1) & ~(alignmentInBytes - 1); in AlignedAlloc() local
/arkcompiler/ets_runtime/ecmascript/mem/shared_heap/
H A Dshared_space.cpp374 void SharedSparseSpace::InvokeAllocationInspector(Address object, size_t size, size_t alignedSize) in InvokeAllocationInspector() argument
599 size_t alignedSize = AlignUp(objectSize + sizeof(Region) + HUGE_OBJECT_BITSET_SIZE, PANDA_POOL_ALIGNMENT_IN_BYTES); in Allocate() local
/arkcompiler/runtime_core/static_core/platforms/windows/libpandabase/
H A Dmem.cpp329 size_t alignedSize = (size + alignmentInBytes - 1) & ~(alignmentInBytes - 1); in AlignedAlloc() local
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/llvm/
H A Dllvm_codegen.cpp137 auto alignedSize = alignSize > 0 ? AlignUp(size, alignSize) : size; in Alloca() local
140 LOG_COMPILER(FATAL) << std::hex << "invalid memory size: " << alignedSize; in Alloca() local

Completed in 14 milliseconds