Lines Matching refs:next
100 MapAllocation* next; member
337 for (LinkedList<Chunk*> *it = free_chunks_[i].next(); it->data() != NULL; it = it->next()) { in Empty()
342 for (LinkedList<Chunk*> *it = full_chunks_[i].next(); it->data() != NULL; it = it->next()) { in Empty()
355 Chunk *chunk = free_chunks_[i].next()->data(); in ~HeapImpl()
360 Chunk *chunk = full_chunks_[i].next()->data(); in ~HeapImpl()
381 return free_chunks_[bucket].next()->data()->Alloc(); in AllocLocked()
411 allocation->next = map_allocation_list_; in MapAlloc()
420 allocation = &(*allocation)->next; in MapFree()
427 *allocation = (*allocation)->next; in MapFree()
444 while (node->next() != head && node->data() != nullptr in MoveToList()
446 node = node->next(); in MoveToList()