Lines Matching defs:next
11 * The above copyright notice and this permission notice (including the next
64 struct ralloc_header *next;
90 info->next = parent->child;
93 if (info->next != NULL)
94 info->next->prev = info;
130 info->next = NULL;
174 info->prev->next = info;
176 if (info->next != NULL)
177 info->next->prev = info;
181 for (child = info->child; child != NULL; child = child->next)
268 info->parent->child = info->next;
271 info->prev->next = info->next;
273 if (info->next != NULL)
274 info->next->prev = info->prev;
278 info->next = NULL;
288 info->child = temp->next;
331 for (child = old_info->child; child->next != NULL; child = child->next) {
337 child->next = new_info->child;
338 if (child->next)
339 child->next->prev = child;
566 struct linear_header *next; /* next buffer if we have more */
616 node->next = NULL;
631 assert(!latest->next);
644 latest->next = new_node;
709 node = node->next;
728 node = node->next;