Lines Matching refs:allocated
143 Cell* allocated; // pointer to the first used cell member
412 hd->allocated = DLAddFront(hd->allocated, cell); in OSAllocFromHeap()
459 if (DLOverlap(hd->allocated, start, end)) in OSAllocFixed()
599 ASSERTMSG(DLLookup(hd->allocated, cell),OS_ERR_FREETOHEAP_INVPTR); in OSFreeToHeap()
609 hd->allocated = DLExtract(hd->allocated, cell); in OSFreeToHeap()
676 hd->free = hd->allocated = NULL; in OSInitAlloc()
736 ASSERTMSG(!DLOverlap(HeapArray[heap].allocated, start, end), in OSCreateHeap()
758 hd->allocated = 0; in OSCreateHeap()
811 hd->free = hd->allocated = NULL; in OSDestroyHeap()
865 ASSERTMSG(!DLOverlap(HeapArray[i].allocated, start, end), in OSAddToHeap()
916 CHECK(hd->allocated == NULL || hd->allocated->prev == NULL); in OSCheckHeap()
917 for (cell = hd->allocated; cell; cell = cell->next) in OSCheckHeap()
985 ASSERTMSG(DLLookup(cell->hd->allocated, cell), in OSReferentSize()
1029 ASSERTMSG(hd->allocated == NULL || hd->allocated->prev == NULL, in OSDumpHeap()
1031 for (cell = hd->allocated; cell; cell = cell->next) in OSDumpHeap()
1075 for (cell = HeapArray[heap].allocated; cell; cell = cell->next) in OSVisitAllocated()