Home
last modified time | relevance | path

Searched refs:biggest_free_list_index_ (Results 1 – 2 of 2) sorted by relevance

/third_party/node/deps/v8/src/heap/cppgc/
Dfree-list.cc59 biggest_free_list_index_(std::move(other.biggest_free_list_index_)) { in FreeList()
95 biggest_free_list_index_ = std::max(biggest_free_list_index_, index); in AddReturningUnusedBounds()
123 biggest_free_list_index_ = in Append()
124 std::max(biggest_free_list_index_, other.biggest_free_list_index_); in Append()
125 other.biggest_free_list_index_ = 0; in Append()
139 size_t bucket_size = static_cast<size_t>(1) << biggest_free_list_index_; in Allocate()
140 size_t index = biggest_free_list_index_; in Allocate()
156 biggest_free_list_index_ = index; in Allocate()
160 biggest_free_list_index_ = index; in Allocate()
167 biggest_free_list_index_ = 0; in Clear()
Dfree-list.h72 size_t biggest_free_list_index_ = 0; variable