Home
last modified time | relevance | path

Searched refs:lists_ (Results 1 – 4 of 4) sorted by relevance

/external/chromium_org/net/base/
Dpriority_queue.h132 : lists_(num_priorities), size_(0) { in PriorityQueue()
142 DCHECK_LT(priority, lists_.size()); in Insert()
144 List& list = lists_[priority]; in Insert()
160 DCHECK_LT(priority, lists_.size()); in InsertAtFront()
162 List& list = lists_[priority]; in InsertAtFront()
178 DCHECK_LT(pointer.priority_, lists_.size()); in Erase()
187 lists_[pointer.priority_].erase(pointer.iterator_); in Erase()
194 for (size_t i = 0; i < lists_.size(); ++i) { in FirstMin()
195 List* list = const_cast<List*>(&lists_[i]); in FirstMin()
206 for (size_t i = 0; i < lists_.size(); ++i) { in LastMin()
[all …]
/external/chromium_org/v8/src/
Dhydrogen-gvn.cc43 lists_(NULL), in HValueMap()
89 HValueMapListElement* lists_; // The linked lists containing hash collisions. member in v8::internal::HValueMap
161 lists_(zone->NewArray<HValueMapListElement>(other->lists_size_)), in HValueMap()
166 lists_, other->lists_, lists_size_ * sizeof(HValueMapListElement)); in HValueMap()
181 next = lists_[current].next; in Kill()
182 HValue* value = lists_[current].value; in Kill()
186 lists_[current].next = free_list_head_; in Kill()
190 lists_[current].next = kept; in Kill()
205 array_[i].value = lists_[head].value; in Kill()
206 array_[i].next = lists_[head].next; in Kill()
[all …]
/external/v8/src/
Dhydrogen.cc1161 lists_(zone->NewArray<HValueMapListElement>(other->lists_size_)), in HValueMap()
1164 memcpy(lists_, other->lists_, lists_size_ * sizeof(HValueMapListElement)); in HValueMap()
1179 next = lists_[current].next; in Kill()
1180 HValue* value = lists_[current].value; in Kill()
1184 lists_[current].next = free_list_head_; in Kill()
1188 lists_[current].next = kept; in Kill()
1203 array_[i].value = lists_[head].value; in Kill()
1204 array_[i].next = lists_[head].next; in Kill()
1205 lists_[head].next = free_list_head_; in Kill()
1223 if (lists_[next].value->Equals(value)) return lists_[next].value; in Lookup()
[all …]
Dhydrogen.h1171 lists_(NULL), in HValueMap()
1217 HValueMapListElement* lists_; // The linked lists containing hash collisions. variable