Lines Matching refs:next
54 * -- and sleeps until the next period begins.
221 for (list = listp; list; list = list->next) {
355 * to read the next memlist entry on the next
461 struct memlist *prev, *next;
478 next = memscrub_memlist;
479 while (next) {
480 uint64_t ns = next->ml_address;
481 uint64_t ne = next->ml_address + next->ml_size - 1;
499 next->ml_size += bytes;
507 next->ml_size += bytes;
508 next->ml_address = start;
513 * If the next span has a higher start address than the new
520 prev = next;
521 next = next->ml_next;
535 dst->ml_next = next;
542 if (next)
543 next->ml_prev = dst;