Lines Matching refs:last
53 NODE *centry, *last; in spec() local
60 last = root = NULL; in spec()
126 if (last->type != F_DIR || last->flags & F_DONE) { in spec()
127 if (last == root) in spec()
129 last = last->parent; in spec()
131 last->flags |= F_DONE; in spec()
152 last = root = centry; in spec()
154 } else if (last->type == F_DIR && !(last->flags & F_DONE)) { in spec()
155 centry->parent = last; in spec()
156 last = last->child = centry; in spec()
158 centry->parent = last->parent; in spec()
159 centry->prev = last; in spec()
160 last = last->next = centry; in spec()