Lines Matching defs:next
102 p->next = NULL;
119 struct tty_buffer *p, *next;
125 buf->head = p->next;
131 llist_for_each_entry_safe(p, next, llist, free)
224 struct tty_buffer *next;
232 while ((next = smp_load_acquire(&buf->head->next)) != NULL) {
234 buf->head = next;
284 * advanced to the next buffer
286 smp_store_release(&b->next, n);
489 struct tty_buffer *next;
498 * is advancing to the next buffer
500 next = smp_load_acquire(&head->next);
506 if (next == NULL)
508 buf->head = next;