Lines Matching defs:first
155 dnode_t *first, *next;157 first = dict_first(dict);160 while (first && (next = dict_next(dict, first))) {161 if (dict->compare(first->key, next->key) > 0)163 first = next;166 while (first && (next = dict_next(dict, first))) {167 if (dict->compare(first->key, next->key) >= 0)169 first = next;