Lines Matching refs:other
78 other, // current pointer of updated list2
93 /* find 'current' in 'other' list */
95 for (other = otherstart;
96 other != NULL;
97 other = other->next_result) {
98 if (current->location == other->location)
101 otherprev = other;
103 if (other != NULL) { /* found */
104 /* delete 'other' from future consideration */
109 /* bypass 'other' */
110 otherprev->next_result = other->next_result;