HomeSort by relevance Sort by last modified time
    Searched refs:LinkerBlockAllocatorPage (Results 1 - 2 of 2) sorted by null

  /bionic/linker/
linker_block_allocator.h 35 struct LinkerBlockAllocatorPage;
54 LinkerBlockAllocatorPage* find_page(void* block);
57 LinkerBlockAllocatorPage* page_list_;
linker_block_allocator.cpp 42 struct LinkerBlockAllocatorPage {
43 LinkerBlockAllocatorPage* next;
85 LinkerBlockAllocatorPage* page = find_page(block);
108 for (LinkerBlockAllocatorPage* page = page_list_; page != nullptr; page = page->next) {
116 static_assert(sizeof(LinkerBlockAllocatorPage) == PAGE_SIZE,
117 "Invalid sizeof(LinkerBlockAllocatorPage)");
119 LinkerBlockAllocatorPage* page = reinterpret_cast<LinkerBlockAllocatorPage*>(
130 first_block->num_free_blocks = (PAGE_SIZE - sizeof(LinkerBlockAllocatorPage*))/block_size_;
138 LinkerBlockAllocatorPage* LinkerBlockAllocator::find_page(void* block)
    [all...]

Completed in 473 milliseconds