Lines Matching refs:prev_free
90 heap->prev_free = block;
96 block->prev_free = heap;
129 newblock->prev_free = p;
130 p->next_free->prev_free = newblock;
153 newblock->prev_free = p;
154 p->next_free->prev_free = newblock;
165 p->next_free->prev_free = p->prev_free;
166 p->prev_free->next_free = p->next_free;
169 p->prev_free = NULL;
246 q->next_free->prev_free = q->prev_free;
247 q->prev_free->next_free = q->next_free;
272 b->prev_free = b->heap;
273 b->next_free->prev_free = b;
274 b->prev_free->next_free = b;