Lines Matching defs:first
158 dnode_t *first, *next;
160 first = dict_first(dict);
163 while (first && (next = dict_next(dict, first))) {
164 if (dict->compare(first->key, next->key) > 0)
166 first = next;
169 while (first && (next = dict_next(dict, first))) {
170 if (dict->compare(first->key, next->key) >= 0)
172 first = next;
690 * First, splice out the successor from the tree completely, by