Home
last modified time | relevance | path

Searched refs:allocated_mem (Results 1 – 2 of 2) sorted by relevance

/arkcompiler/runtime_core/platforms/unix/libpandabase/
Dmem.cpp175 auto allocated_mem = reinterpret_cast<uintptr_t>(result); in MapRWAnonymousWithAlignmentRaw() local
176 uintptr_t aligned_mem = (allocated_mem & ~(aligment_in_bytes - 1U)) + in MapRWAnonymousWithAlignmentRaw()
177 ((allocated_mem % aligment_in_bytes) != 0U ? aligment_in_bytes : 0U); in MapRWAnonymousWithAlignmentRaw()
178 ASSERT(aligned_mem >= allocated_mem); in MapRWAnonymousWithAlignmentRaw()
179 size_t unused_in_start = aligned_mem - allocated_mem; in MapRWAnonymousWithAlignmentRaw()
/arkcompiler/runtime_core/platforms/windows/libpandabase/
Dmem.cpp257 auto allocated_mem = reinterpret_cast<uintptr_t>(result); in MapRWAnonymousWithAlignmentRaw() local
258 uintptr_t aligned_mem = (allocated_mem & ~(aligment_in_bytes - 1U)) + in MapRWAnonymousWithAlignmentRaw()
259 ((allocated_mem % aligment_in_bytes) != 0U ? aligment_in_bytes : 0U); in MapRWAnonymousWithAlignmentRaw()
260 ASSERT(aligned_mem >= allocated_mem); in MapRWAnonymousWithAlignmentRaw()
261 size_t unused_in_start = aligned_mem - allocated_mem; in MapRWAnonymousWithAlignmentRaw()