Lines Matching refs:next
63 struct objalloc_chunk *next; member
105 chunk->next = NULL; in objalloc_create()
143 chunk->next = (struct objalloc_chunk *) o->chunks; in _objalloc_alloc()
157 chunk->next = (struct objalloc_chunk *) o->chunks; in _objalloc_alloc()
179 struct objalloc_chunk *next; in objalloc_free() local
181 next = l->next; in objalloc_free()
183 l = next; in objalloc_free()
201 for (p = (struct objalloc_chunk *) o->chunks; p != NULL; p = p->next) in objalloc_free_block()
236 struct objalloc_chunk *next; in objalloc_free_block() local
238 next = q->next; in objalloc_free_block()
250 q = next; in objalloc_free_block()
273 p = p->next; in objalloc_free_block()
278 struct objalloc_chunk *next; in objalloc_free_block() local
280 next = q->next; in objalloc_free_block()
282 q = next; in objalloc_free_block()
288 p = p->next; in objalloc_free_block()