Lines Matching refs:lists_
1161 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()
1224 next = lists_[next].next; in Lookup()
1260 Insert(lists_[current].value); in Resize()
1261 int next = lists_[current].next; in Resize()
1262 lists_[current].next = free_list_head_; in Resize()
1283 HValueMapListElement* old_lists = lists_; in ResizeLists()
1287 lists_ = new_lists; in ResizeLists()
1290 memcpy(lists_, old_lists, old_size * sizeof(HValueMapListElement)); in ResizeLists()
1293 lists_[i].next = free_list_head_; in ResizeLists()
1315 free_list_head_ = lists_[free_list_head_].next; in Insert()
1316 lists_[new_element_pos].value = value; in Insert()
1317 lists_[new_element_pos].next = array_[pos].next; in Insert()
1318 ASSERT(array_[pos].next == kNil || lists_[array_[pos].next].value != NULL); in Insert()