Home | History | Annotate | Download | only in showslab

Lines Matching refs:next

21 	struct slab_info *next;
141 prev->next = p;
149 p->next = NULL;
163 struct slab_info *temp = list->next;
176 p->next = a;
178 a = a->next;
180 p->next = b;
182 b = b->next;
186 p->next = (a == NULL) ? b : a;
187 return list.next;
197 if (!list || !list->next)
201 b = list->next;
203 while (b && b->next) {
204 list = list->next;
205 b = b->next->next;
208 b = list->next;
209 list->next = NULL;
345 p = p->next;