Lines Matching refs:last
104 list->last = ln;
119 ln = LstNodeNew(list->last, NULL, datum);
121 if (list->last == NULL) {
123 list->last = ln;
125 list->last->next = ln;
126 list->last = ln;
146 if (list->last == ln)
147 list->last = ln->prev;
198 src->first->prev = dst->last;
199 if (dst->last != NULL)
200 dst->last->next = src->first;
204 dst->last = src->last;
208 src->last = NULL;
218 for (ln = src->last; ln != NULL; ln = ln->prev)
267 * Remove the last item from the vector, return the pointer to it.