Lines Matching refs:Page
41 Page* PageIterator::next() { in next()
119 void MemoryAllocator::ProtectChunkFromPage(Page* page) { in ProtectChunkFromPage()
125 void MemoryAllocator::UnprotectChunkFromPage(Page* page) { in UnprotectChunkFromPage()
136 Page* Page::Initialize(Heap* heap, MemoryChunk* chunk, Executability executable, in Initialize()
138 Page* page = reinterpret_cast<Page*>(chunk); in Initialize()
151 Page* p = Page::FromAddress(addr); in Contains()
171 OffsetFrom(addr) & ~Page::kPageAlignmentMask); in FromAnyPointerAddress()
209 Page* Page::next_page() { in next_page()
211 return static_cast<Page*>(next_chunk()); in next_page()
215 Page* Page::prev_page() { in prev_page()
217 return static_cast<Page*>(prev_chunk()); in prev_page()
221 void Page::set_next_page(Page* page) { in set_next_page()
227 void Page::set_prev_page(Page* page) { in set_prev_page()