Searched refs:cell (Results 1 – 1 of 1) sorted by relevance
174 static Cell *DLAddFront(Cell * list, Cell * cell) in DLAddFront() argument176 cell->next = list; in DLAddFront()177 cell->prev = NULL; in DLAddFront()180 list->prev = cell; in DLAddFront()182 return cell; in DLAddFront()195 static Cell *DLLookup(Cell * list, Cell * cell) in DLLookup() argument199 if (list == cell) in DLLookup()219 static Cell *DLExtract(Cell * list, Cell * cell) in DLExtract() argument221 if (cell->next) in DLExtract()223 cell->next->prev = cell->prev; in DLExtract()[all …]