Searched refs:LinkerBlockAllocatorPage (Results 1 – 2 of 2) sorted by relevance
47 struct LinkerBlockAllocatorPage { struct48 LinkerBlockAllocatorPage* next; argument93 LinkerBlockAllocatorPage* page = find_page(block); in free()112 for (LinkerBlockAllocatorPage* page = page_list_; page != nullptr; page = page->next) { in protect_all()120 static_assert(sizeof(LinkerBlockAllocatorPage) == kAllocateSize, in create_new_page()123 LinkerBlockAllocatorPage* page = reinterpret_cast<LinkerBlockAllocatorPage*>( in create_new_page()139 LinkerBlockAllocatorPage* LinkerBlockAllocator::find_page(void* block) { in find_page()142 LinkerBlockAllocatorPage* page = page_list_; in find_page()160 LinkerBlockAllocatorPage* page = page_list_; in purge()162 LinkerBlockAllocatorPage* next = page->next; in purge()
36 struct LinkerBlockAllocatorPage;58 LinkerBlockAllocatorPage* find_page(void* block);61 LinkerBlockAllocatorPage* page_list_;