Home | History | Annotate | Download | only in src

Lines Matching refs:kNil

20         free_list_head_(kNil),
47 static const int kNil = -1; // The end of a linked list
157 int kept = kNil; // List of kept elements.
159 for (int current = array_[i].next; current != kNil; current = next) {
183 if (head == kNil) {
205 while (next != kNil) {
220 if (free_list_head_ == kNil) {
242 while (current != kNil) {
291 array_[pos].next = kNil;
293 if (free_list_head_ == kNil) {
297 ASSERT(new_element_pos != kNil);
301 ASSERT(array_[pos].next == kNil || lists_[array_[pos].next].instr != NULL);