Home | History | Annotate | Download | only in src

Lines Matching defs:head

1199         int head = array_[i].next;
1200 if (head == kNil) {
1203 array_[i].value = lists_[head].value;
1204 array_[i].next = lists_[head].next;
1205 lists_[head].next = free_list_head_;
1206 free_list_head_ = head;