Home
last modified time | relevance | path

Searched refs:prev_page (Results 1 – 3 of 3) sorted by relevance

/external/v8/src/heap/
Dspaces.cc1228 p->InsertAfter(anchor_.prev_page()); in AllocateChunk()
1265 p->InsertAfter(anchor_.prev_page()); in AllocateChunk()
1338 p->InsertAfter(anchor_.prev_page()); in AllocateChunk()
1597 Page* to_remove = current_page->prev_page(); in AllocateChunk()
1614 current_page->SetFlags(anchor()->prev_page()->GetFlags(), in AllocateChunk()
1971 Page* last_page = anchor()->prev_page(); in AllocateChunk()
1997 new_last_page = last_page->prev_page(); in AllocateChunk()
1998 last_page->prev_page()->set_next_page(last_page->next_page()); in AllocateChunk()
1999 last_page->next_page()->set_prev_page(last_page->prev_page()); in AllocateChunk()
2016 last_page = anchor()->prev_page(); in AllocateChunk()
[all …]
Dspaces.h713 Page* prev_page() { return static_cast<Page*>(prev_chunk()); } in prev_page() function
2070 Page* LastPage() { return anchor_.prev_page(); } in LastPage()
2225 Address space_end() { return anchor_.prev_page()->area_end(); } in space_end()
Dspaces-inl.h214 new_page->InsertAfter(old_space->anchor()->prev_page()); in ConvertNewToOld()