Lines Matching refs:buckets_
43 buckets_(allocator->AllocArray<Node*>(num_buckets_, kArenaAllocGvn)), in ValueSet()
47 std::fill_n(buckets_, num_buckets_, nullptr); in ValueSet()
56 buckets_(allocator->AllocArray<Node*>(num_buckets_, kArenaAllocGvn)), in ValueSet()
92 buckets_[index] = new (allocator_) Node(instruction, hash_code, buckets_[index]); in Add()
102 for (Node* node = buckets_[index]; node != nullptr; node = node->GetNext()) { in Lookup()
118 for (Node* node = buckets_[index]; node != nullptr; node = node->GetNext()) { in Contains()
136 buckets_[i] = nullptr; in Clear()
169 memcpy(buckets_, other.buckets_, num_buckets_ * sizeof(Node*)); in PopulateFromInternal()
173 std::fill_n(buckets_, num_buckets_, nullptr); in PopulateFromInternal()
175 for (Node* node = other.buckets_[i]; node != nullptr; node = node->GetNext()) { in PopulateFromInternal()
177 buckets_[new_index] = node->Dup(allocator_, buckets_[new_index]); in PopulateFromInternal()
217 for (Node* node = buckets_[index]; node != nullptr; node = node->GetNext()) { in CloneBucket()
223 buckets_[index] = clone_current; in CloneBucket()
238 Node* node = buckets_[i]; in DeleteAllImpureWhich()
254 node = (previous == nullptr) ? buckets_[i] : previous->GetNext(); in DeleteAllImpureWhich()
272 buckets_[i] = next; in DeleteAllImpureWhich()
321 Node** const buckets_; member in art::ValueSet