Home | History | Annotate | Download | only in cache

Lines Matching defs:first

32     FTC_MruNode  first = *plist;
35 if ( first )
37 FTC_MruNode last = first->prev;
42 FTC_MruNode cnode = first;
54 } while ( cnode != first );
58 first->prev = node;
60 node->next = first;
76 FTC_MruNode first = *plist;
79 FT_ASSERT( first );
81 if ( first != node )
88 FTC_MruNode cnode = first;
95 } while ( cnode != first );
108 last = first->prev;
111 first->prev = node;
113 node->next = first;
125 FTC_MruNode first = *plist;
129 FT_ASSERT( first );
133 FTC_MruNode cnode = first;
142 } while ( cnode != first );
158 FT_ASSERT( first == node );
163 else if ( node == first )
207 FTC_MruNode first, node;
210 first = list->nodes;
213 if ( first )
215 node = first;
220 if ( node != first )
228 } while ( node != first);
331 FTC_MruNode first, node, next;
334 first = list->nodes;
335 while ( first && ( !selection || selection( first, key ) ) )
337 FTC_MruList_Remove( list, first );
338 first = list->nodes;
341 if ( first )
343 node = first->next;
344 while ( node != first )