Home
last modified time | relevance | path

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

/TwlSDK-5.1.0/build/libraries/os/common/src/
Dos_alloc.c361 Cell *newCell; // ptr to leftover block in OS_AllocFromHeap() local
433 newCell = (Cell *) ((char *)cell + size); in OS_AllocFromHeap()
434 newCell->size = leftoverSize; in OS_AllocFromHeap()
436 newCell->hd = NULL; in OS_AllocFromHeap()
440 newCell->prev = cell->prev; in OS_AllocFromHeap()
441 newCell->next = cell->next; in OS_AllocFromHeap()
443 if (newCell->next != NULL) in OS_AllocFromHeap()
445 newCell->next->prev = newCell; in OS_AllocFromHeap()
448 if (newCell->prev != NULL) in OS_AllocFromHeap()
450 newCell->prev->next = newCell; in OS_AllocFromHeap()
[all …]