Home
last modified time | relevance | path

Searched refs:next_page (Results 1 – 4 of 4) sorted by relevance

/external/v8/src/heap/
Dspaces.h715 Page* next_page() { return static_cast<Page*>(next_chunk()); } in next_page() function
801 inline LargePage* next_page() { in next_page() function
1447 explicit PageRange(Page* page) : PageRange(page, page->next_page()) {} in PageRange()
2082 Page* FirstPage() { return anchor_.next_page(); } in NON_EXPORTED_BASE()
2110 iterator begin() { return iterator(anchor_.next_page()); } in NON_EXPORTED_BASE()
2124 bool HasPages() { return anchor_.next_page() != &anchor_; } in NON_EXPORTED_BASE()
2229 DCHECK_NE(anchor_.next_page(), anchor()); in space_start()
2230 return anchor_.next_page()->area_start(); in space_start()
2233 Page* first_page() { return anchor_.next_page(); } in first_page()
2247 Page* next_page = current_page_->next_page(); in AdvancePage() local
[all …]
Dspaces.cc35 page_range_(space->anchor()->next_page(), space->anchor()), in HeapObjectIterator()
1600 Page* current_page = anchor()->next_page(); in AllocateChunk()
1603 current_page = current_page->next_page(); in AllocateChunk()
1884 Page* page = Page::FromAllocationAreaAddress(current)->next_page(); in AllocateChunk()
2009 last_page->prev_page()->set_next_page(last_page->next_page()); in AllocateChunk()
2010 last_page->next_page()->set_prev_page(last_page->prev_page()); in AllocateChunk()
2045 anchor_.next_page()->set_prev_page(&anchor_); in AllocateChunk()
2066 DCHECK_NE(anchor_.next_page(), &anchor_); in AllocateChunk()
2067 current_page_ = anchor_.next_page(); in AllocateChunk()
2087 DCHECK_NE(from->anchor_.next_page(), &from->anchor_); in AllocateChunk()
[all …]
Dspaces-inl.h20 p_ = p_->next_page();
33 end_(Page::FromAllocationAreaAddress(limit)->next_page()) { in PageRange()
48 page = page->next_page(); in Next()
Dheap.cc1974 ->next_page() in DoScavenge()