Lines Matching defs:next
52 struct block_list *next, *prev;
73 struct slice_list *next, *prev;
151 new->next = (*list)->next;
152 (*list)->next->prev = new;
153 (*list)->next = new;
154 } else *head = *list = new->next = new->prev = new;
169 struct slice *next = xmalloc(sizeof(struct slice));
175 next->len = len;
176 next->data = data;
185 (char *)next);
192 s = s->next;
210 (char *)next);
216 (char *)next);
221 (char *)next);
240 s = s->next;
248 e = e->next;
259 if (s == TT.slices) TT.slices = s->next;
288 s = s->next;
305 s = s->next;
327 s = s->next;
362 s = s->next;
382 s = s->next;
469 s = s->next;
552 s = s->next;
678 //pre adjust cursor move one right until at next valid rune
1058 size_t next = 0;
1059 for ( ;count && (next = text_strchr(next+1, '\n')) != SIZE_MAX; count--)
1060 TT.cursor = next;
1106 size_t next;
1109 if ((next = text_strchr(TT.cursor, '\n')) == SIZE_MAX) break;
1110 TT.cursor = next+1;