Searched refs:free_list_heads_ (Results 1 – 2 of 2) sorted by relevance
57 : free_list_heads_(std::move(other.free_list_heads_)), in FreeList()94 entry.Link(&free_list_heads_[index]); in AddReturningUnusedBounds()111 Entry*& this_head = this->free_list_heads_[index]; in Append()117 this_head = other.free_list_heads_[index]; in Append()118 other.free_list_heads_[index] = nullptr; in Append()143 Entry* entry = free_list_heads_[index]; in Allocate()155 entry->Unlink(&free_list_heads_[index]); in Allocate()165 std::fill(free_list_heads_.begin(), free_list_heads_.end(), nullptr); in Clear()172 for (auto* entry : free_list_heads_) { in Size()182 return std::all_of(free_list_heads_.cbegin(), free_list_heads_.cend(), in IsEmpty()[all …]
70 std::array<Entry*, kPageSizeLog2> free_list_heads_; variable