Lines Matching defs:new
67 void dlist_add_nomalloc(struct double_list **list, struct double_list *new)
70 new->next = *list;
71 new->prev = (*list)->prev;
72 (*list)->prev->next = new;
73 (*list)->prev = new;
74 } else *list = new->next = new->prev = new;
81 struct double_list *new = xmalloc(sizeof(struct double_list));
83 new->data = data;
84 dlist_add_nomalloc(list, new);
86 return new;