Searched refs:newCell (Results 1 – 1 of 1) sorted by relevance
342 Cell* newCell; // ptr to leftover block in OSAllocFromHeap() local391 newCell = (Cell*) ((char*) cell + size); in OSAllocFromHeap()392 newCell->size = leftoverSize; in OSAllocFromHeap()394 newCell->hd = NULL; in OSAllocFromHeap()398 newCell->prev = cell->prev; in OSAllocFromHeap()399 newCell->next = cell->next; in OSAllocFromHeap()400 if (newCell->next != NULL) in OSAllocFromHeap()401 newCell->next->prev = newCell; in OSAllocFromHeap()402 if (newCell->prev != NULL) in OSAllocFromHeap()403 newCell->prev->next = newCell; in OSAllocFromHeap()[all …]