Searched refs:LinkerBlockAllocatorPage (Results 1 – 2 of 2) sorted by relevance
44 struct LinkerBlockAllocatorPage { struct45 LinkerBlockAllocatorPage* next; argument90 LinkerBlockAllocatorPage* page = find_page(block); in free()115 for (LinkerBlockAllocatorPage* page = page_list_; page != nullptr; page = page->next) { in protect_all()123 static_assert(sizeof(LinkerBlockAllocatorPage) == kAllocateSize, in create_new_page()126 LinkerBlockAllocatorPage* page = reinterpret_cast<LinkerBlockAllocatorPage*>( in create_new_page()145 LinkerBlockAllocatorPage* LinkerBlockAllocator::find_page(void* block) { in find_page()150 LinkerBlockAllocatorPage* page = page_list_; in find_page()168 LinkerBlockAllocatorPage* page = page_list_; in purge()170 LinkerBlockAllocatorPage* next = page->next; in purge()
36 struct LinkerBlockAllocatorPage;58 LinkerBlockAllocatorPage* find_page(void* block);61 LinkerBlockAllocatorPage* page_list_;