Home
last modified time | relevance | path

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

/TwlSDK-5.1.0/build/libraries/os/common/src/
Dos_alloc.c170 static Cell *DLAddFront(Cell * list, Cell * cell) in DLAddFront() argument
172 cell->next = list; in DLAddFront()
173 cell->prev = NULL; in DLAddFront()
176 list->prev = cell; in DLAddFront()
178 return cell; in DLAddFront()
191 static Cell *DLLookup(Cell * list, Cell * cell) in DLLookup() argument
195 if (list == cell) in DLLookup()
215 static Cell *DLExtract(Cell * list, Cell * cell) in DLExtract() argument
217 if (cell->next) in DLExtract()
219 cell->next->prev = cell->prev; in DLExtract()
[all …]