Lines Matching refs:prev_free
78 heap->prev_free = block;
84 block->prev_free = heap;
116 newblock->prev_free = p;
117 p->next_free->prev_free = newblock;
141 newblock->prev_free = p;
142 p->next_free->prev_free = newblock;
153 p->next_free->prev_free = p->prev_free;
154 p->prev_free->next_free = p->next_free;
157 p->prev_free = 0;
210 q->next_free->prev_free = q->prev_free;
211 q->prev_free->next_free = q->next_free;
235 b->prev_free = b->heap;
236 b->next_free->prev_free = b;
237 b->prev_free->next_free = b;