Lines Matching defs:new
67 // after inserting data into middle new mem_block is allocated for insert data
135 struct double_list *new = xmalloc(sizeof(struct double_list));
136 new->data = data;
137 if (*list == *head) *head = new;
139 dlist_add_nomalloc(list, new);
140 return new;
146 struct double_list *new = xmalloc(sizeof(struct double_list));
147 new->data = data;
150 new->prev = *list;
151 new->next = (*list)->next;
152 (*list)->next->prev = new;
153 (*list)->next = new;
154 } else *head = *list = new->next = new->prev = new;
155 return new;
956 size_t new = text_strchr(TT.cursor, '\n');
958 if (new != TT.cursor) {
959 TT.cursor = new - 1;