Home | History | Annotate | Download | only in src

Lines Matching refs:cur_node

1941     FreeListNode* cur_node = *cur;
1942 while (cur_node != NULL &&
1943 Page::FromAddress(cur_node->address())->IsEvacuationCandidate()) {
1944 available_ -= reinterpret_cast<FreeSpace*>(cur_node)->Size();
1945 cur_node = cur_node->next();
1948 *cur = cur_node;
1949 if (cur_node == NULL) break;