Home | History | Annotate | Download | only in ports

Lines Matching full:curr

104     FamilyRec* curr = gFamilyHead;
105 while (curr != NULL) {
107 if (curr->fFaces[i] == member) {
108 return curr;
111 curr = curr->fNext;
134 FamilyRec* curr = gFamilyHead;
137 while (curr != NULL) {
138 FamilyRec* next = curr->fNext;
139 if (curr == family) {
148 prev = curr;
149 curr = next;