Searched refs:free_list_head_ (Results 1 – 4 of 4) sorted by relevance
87 if (!free_list_head_) { in AllocateNode()90 PersistentNode* node = free_list_head_; in AllocateNode()91 free_list_head_ = free_list_head_->FreeListNext(); in AllocateNode()97 node->InitializeAsFreeNode(free_list_head_); in FreeNode()98 free_list_head_ = node; in FreeNode()109 PersistentNode* free_list_head_ = nullptr; variable
39 node.InitializeAsFreeNode(free_list_head_); in EnsureNodeSlots()40 free_list_head_ = &node; in EnsureNodeSlots()45 free_list_head_ = nullptr; in Trace()53 node.InitializeAsFreeNode(free_list_head_); in Trace()54 free_list_head_ = &node; in Trace()63 free_list_head_ = first_next; in Trace()
652 unsigned free_slot = free_list_head_; in Clear()662 free_list_head_ = kNoFreeSlot; in Clear()710 if (free_list_head_ == kNoFreeSlot) { in AddCodeEntry()714 unsigned index = free_list_head_; in AddCodeEntry()715 free_list_head_ = code_entries_[index].next_free_slot; in AddCodeEntry()722 code_entries_[index].next_free_slot = free_list_head_; in DeleteCodeEntry()723 free_list_head_ = index; in DeleteCodeEntry()
439 unsigned free_list_head_ = kNoFreeSlot; variable