Home
last modified time | relevance | path

Searched refs:kBlockSizeAlign (Results 1 – 3 of 3) sorted by relevance

/bionic/linker/
Dlinker_block_allocator_test.cpp73 ASSERT_EQ(0U, reinterpret_cast<uintptr_t>(ptr1) % kBlockSizeAlign); in linker_allocator_test_helper()
76 ASSERT_EQ(0U, reinterpret_cast<uintptr_t>(ptr2) % kBlockSizeAlign); in linker_allocator_test_helper()
81 size_t dist = __BIONIC_ALIGN(MAX(sizeof(Element), kBlockSizeMin), kBlockSizeAlign); in linker_allocator_test_helper()
Dlinker_block_allocator.cpp54 static_assert(kBlockSizeAlign >= alignof(FreeBlockInfo));
58 : block_size_(__BIONIC_ALIGN(MAX(block_size, kBlockSizeMin), kBlockSizeAlign)), in LinkerBlockAllocator()
Dlinker_block_allocator.h36 static constexpr size_t kBlockSizeAlign = sizeof(void*); variable