Home | History | Annotate | Download | only in dist

Lines Matching defs:new_heap

273 	  heap_ptr new_heap = (heap_ptr) MEM_ROUNDUP (new);
274 POINTER bloc_start = (POINTER) MEM_ROUNDUP ((POINTER)(new_heap + 1));
279 new_heap->start = new;
280 new_heap->end = bloc_start;
281 new_heap->bloc_start = bloc_start;
282 new_heap->free = bloc_start;
283 new_heap->next = NIL_HEAP;
284 new_heap->prev = last_heap;
285 new_heap->first_bloc = NIL_BLOC;
286 new_heap->last_bloc = NIL_BLOC;
287 last_heap->next = new_heap;
288 last_heap = new_heap;