Home | History | Annotate | Download | only in src

Lines Matching full:next

68     int next;  // Index in the array of the next list element.
179 int next;
180 for (int current = array_[i].next; current != kNil; current = next) {
181 next = lists_[current].next;
186 lists_[current].next = free_list_head_;
190 lists_[current].next = kept;
195 array_[i].next = kept;
201 int head = array_[i].next;
206 array_[i].next = lists_[head].next;
207 lists_[head].next = free_list_head_;
223 int next = array_[pos].next;
224 while (next != kNil) {
225 if (lists_[next].value->Equals(value)) return lists_[next].value;
226 next = lists_[next].next;
260 int current = old_array[i].next;
263 int next = lists_[current].next;
264 lists_[current].next = free_list_head_;
266 current = next;
295 lists_[i].next = free_list_head_;
310 array_[pos].next = kNil;
317 free_list_head_ = lists_[free_list_head_].next;
319 lists_[new_element_pos].next = array_[pos].next;
320 ASSERT(array_[pos].next == kNil || lists_[array_[pos].next].value != NULL);
321 array_[pos].next = new_element_pos;
551 HInstruction* next = instr->next();
598 instr = next;
827 GvnBasicBlockState* next =
831 if (next != NULL) {
832 HBasicBlock* dominated = next->block();
833 HValueMap* successor_map = next->map();
834 HSideEffectMap* successor_dominators = next->dominators();
851 current = next;