Searched refs:AlignedAlloc (Results 1 - 16 of 16) sorted by relevance
/arkcompiler/runtime_core/libpandabase/mem/ |
H A D | arena.h | 139 void *AlignedAlloc(size_t size, Alignment alignment); 163 return Arena::AlignedAlloc(size, AlignmentT); in Alloc()
|
H A D | malloc_mem_pool-inl.h | 48 auto ret = panda::os::mem::AlignedAlloc(std::max(DEFAULT_ALIGNMENT_IN_BYTES, alignof(ArenaT)), max_size); in AllocArenaImpl()
|
H A D | arena-inl.h | 59 inline void *Arena::AlignedAlloc(size_t size, [[maybe_unused]] Alignment alignment) in AlignedAlloc() function in panda::Arena
|
/arkcompiler/runtime_core/static_core/libpandabase/mem/ |
H A D | arena.h | 119 void *AlignedAlloc(size_t size, Alignment alignment); 143 return Arena::AlignedAlloc(size, ALIGNMENT_T); in Alloc()
|
H A D | malloc_mem_pool-inl.h | 49 auto ret = ark::os::mem::AlignedAlloc(std::max(DEFAULT_ALIGNMENT_IN_BYTES, alignof(ArenaT)), maxSize); in AllocArenaImpl()
|
H A D | arena-inl.h | 59 inline void *Arena::AlignedAlloc(size_t size, [[maybe_unused]] Alignment alignment) in AlignedAlloc() function in ark::Arena
|
/arkcompiler/runtime_core/static_core/runtime/mem/ |
H A D | malloc-proxy-allocator-inl.h | 49 void *ret = os::mem::AlignedAlloc(alignmentInBytes, size); in Alloc()
|
H A D | frame_allocator-inl.h | 211 auto mem = ark::os::mem::AlignedAlloc(GetAlignmentInBytes(ARENA_DEFAULT_ALIGNMENT), size); in AllocateArenaImpl()
|
/arkcompiler/runtime_core/static_core/runtime/tests/ |
H A D | tlab_test.cpp | 93 TEST_F(TLABTest, AlignedAlloc)
|
H A D | bump_allocator_test.cpp | 112 DEATH_TEST_F(BumpAllocatorTest, AlignedAlloc) in DEATH_TEST_F()
|
/arkcompiler/runtime_core/libpandabase/os/ |
H A D | mem.h | 98 void *AlignedAlloc(size_t alignment_in_bytes, size_t size); 101 * \brief Free memory, allocated by AlignedAlloc. 102 * @param mem - Pointer to memory, allocated by AlignedAlloc
|
/arkcompiler/runtime_core/platforms/unix/libpandabase/ |
H A D | mem.cpp | 106 void *AlignedAlloc(size_t alignment_in_bytes, size_t size) in AlignedAlloc() function
|
/arkcompiler/runtime_core/platforms/windows/libpandabase/ |
H A D | mem.cpp | 283 void *AlignedAlloc(size_t alignment_in_bytes, size_t size) in AlignedAlloc() function
|
/arkcompiler/runtime_core/static_core/platforms/unix/libpandabase/ |
H A D | mem.cpp | 109 void *AlignedAlloc(size_t alignmentInBytes, size_t size) in AlignedAlloc() function
|
/arkcompiler/runtime_core/static_core/platforms/windows/libpandabase/ |
H A D | mem.cpp | 327 void *AlignedAlloc(size_t alignmentInBytes, size_t size) in AlignedAlloc() function
|
/arkcompiler/runtime_core/static_core/libpandabase/os/ |
H A D | mem.h | 100 PANDA_PUBLIC_API void *AlignedAlloc(size_t alignmentInBytes, size_t size); 103 * @brief Free memory, allocated by AlignedAlloc. 104 * @param mem - Pointer to memory, allocated by AlignedAlloc
|
Completed in 8 milliseconds