Home | History | Annotate | Download | only in qtools

Lines Matching defs:next

16         entry    *next;
67 entry_type *ptr, *next;
70 // Save the next pointer before deleting each entry so that we
72 for (ptr = table_[ii]; ptr; ptr = next) {
73 next = ptr->next;
103 for (entry_type *ptr = table_[pos]; ptr; ptr = ptr->next) {
119 ptr->next = table_[pos];
134 for (entry_type *ptr = table_[pos]; ptr; prev = ptr, ptr = ptr->next) {
137 table_[pos] = ptr->next;
139 prev->next = ptr->next;
156 for (entry_type *ptr = table_[pos]; ptr; ptr = ptr->next) {
187 // to the next element.
189 current_ptr_ = current_ptr_->next;
195 // Otherwise, start searching at the next table index.
199 // Find the next non-NULL table entry.
208 // beginning on the next call to GetNext().