Home | History | Annotate | Download | only in heap

Lines Matching refs:cur_node

2252     FreeListNode* cur_node = *cur;
2253 while (cur_node != NULL &&
2254 Page::FromAddress(cur_node->address())->IsEvacuationCandidate()) {
2255 int size = reinterpret_cast<FreeSpace*>(cur_node)->Size();
2257 page = Page::FromAddress(cur_node->address());
2259 cur_node = cur_node->next();
2262 *cur = cur_node;
2263 if (cur_node == NULL) {