Home
last modified time | relevance | path

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

/RvlSDK-3.3/build/libraries/os/src/
DOSAlloc.c171 static Cell* DLAddFront(Cell* list, Cell* cell) in DLAddFront() argument
173 cell->next = list; in DLAddFront()
174 cell->prev = NULL; in DLAddFront()
176 list->prev = cell; in DLAddFront()
177 return cell; in DLAddFront()
190 static Cell* DLLookup(Cell* list, Cell* cell) in DLLookup() argument
194 if (list == cell) in DLLookup()
212 static Cell* DLExtract(Cell* list, Cell* cell) in DLExtract() argument
214 if (cell->next) in DLExtract()
215 cell->next->prev = cell->prev; in DLExtract()
[all …]