Searched refs:free_list_tails_ (Results 1 – 2 of 2) sorted by relevance
58 free_list_tails_(std::move(other.free_list_tails_)), in FreeList()97 free_list_tails_[index] = &entry; in AddReturningUnusedBounds()109 for (size_t index = 0; index < free_list_tails_.size(); ++index) { in Append()110 Entry* other_tail = other.free_list_tails_[index]; in Append()115 this->free_list_tails_[index] = other_tail; in Append()119 other.free_list_tails_[index] = nullptr; in Append()152 DCHECK_EQ(entry, free_list_tails_[index]); in Allocate()153 free_list_tails_[index] = nullptr; in Allocate()166 std::fill(free_list_tails_.begin(), free_list_tails_.end(), nullptr); in Clear()202 return (!free_list_heads_[index] && !free_list_tails_[index]) || in IsConsistent()[all …]
71 std::array<Entry*, kPageSizeLog2> free_list_tails_; variable