Home
last modified time | relevance | path

Searched refs:newCell (Results 1 – 1 of 1) sorted by relevance

/RvlSDK-3.1.4/build/libraries/os/src/
DOSAlloc.c342 Cell* newCell; // ptr to leftover block in OSAllocFromHeap() local
391 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 …]