Lines Matching defs:new
85 void dlist_add_nomalloc(struct double_list **list, struct double_list *new)
88 new->next = *list;
89 new->prev = (*list)->prev;
90 (*list)->prev->next = new;
91 (*list)->prev = new;
92 } else *list = new->next = new->prev = new;
99 struct double_list *new = xmalloc(sizeof(struct double_list));
101 new->data = data;
102 dlist_add_nomalloc(list, new);
104 return new;