Searched refs:kBlockSizeAlign (Results 1 – 3 of 3) sorted by relevance
73 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()
54 static_assert(kBlockSizeAlign >= alignof(FreeBlockInfo));58 : block_size_(__BIONIC_ALIGN(MAX(block_size, kBlockSizeMin), kBlockSizeAlign)), in LinkerBlockAllocator()
36 static constexpr size_t kBlockSizeAlign = sizeof(void*); variable