Home | History | Annotate | Download | only in util

Lines Matching refs:free

5  * Permission is hereby granted, free of charge, to any person obtaining a
46 p->free ? 'F':'.',
48 if (p->free)
54 debug_printf("'\nMemory stats: total = %d, used = %d, free = %d\n",
59 debug_printf(" FREE Offset:%08x, Size:%08x, %c%c\n", p->ofs, p->size,
60 p->free ? 'F':'.',
83 FREE(heap);
100 block->free = 1;
120 newblock->free = 1;
144 newblock->free = 1;
161 p->free = 0;
163 /* Remove p from the free list:
195 assert(p->free);
209 assert(p->free);
235 /* NOTE: heap->free == 0 */
237 if (p->free && p->next->free) {
249 FREE(q);
261 if (b->free) {
262 debug_printf("block already free\n");
270 b->free = 1;
294 FREE(p);
298 FREE(heap);