Lines Matching defs:current
77 current, // current pointer of this list
78 other, // current pointer of updated list2
91 for (current = this; (current != NULL) && (otherstart != NULL);
92 current = current->next_result) {
93 /* find 'current' in 'other' list */
98 if (current->location == other->location)
112 /* add 'current' to list of items found so far */
114 mergedlist = current; /* first one found */
116 mergedtail->next_result = current; /* append */
117 mergedtail = current; /* point to last entry found */