Lines Matching refs:chunks
95 ret->chunks = (PTR) malloc (CHUNK_SIZE); in objalloc_create()
96 if (ret->chunks == NULL) in objalloc_create()
102 chunk = (struct objalloc_chunk *) ret->chunks; in objalloc_create()
141 chunk->next = (struct objalloc_chunk *) o->chunks; in _objalloc_alloc()
144 o->chunks = (PTR) chunk; in _objalloc_alloc()
155 chunk->next = (struct objalloc_chunk *) o->chunks; in _objalloc_alloc()
161 o->chunks = (PTR) chunk; in _objalloc_alloc()
174 l = (struct objalloc_chunk *) o->chunks; in objalloc_free()
199 for (p = (struct objalloc_chunk *) o->chunks; p != NULL; p = p->next) in objalloc_free_block()
231 q = (struct objalloc_chunk *) o->chunks; in objalloc_free_block()
253 o->chunks = (PTR) first; in objalloc_free_block()
273 q = (struct objalloc_chunk *) o->chunks; in objalloc_free_block()
283 o->chunks = (PTR) p; in objalloc_free_block()