Searched refs:_list (Results 1 – 1 of 1) sorted by relevance
236 #define ECORE_LIST_INIT(_list) \ argument238 (_list)->head = NULL; \239 (_list)->tail = NULL; \240 (_list)->cnt = 0; \244 #define ECORE_LIST_IS_LAST(_elem, _list) \ argument245 (_elem == (_list)->tail)248 #define ECORE_LIST_IS_EMPTY(_list) \ argument249 ((_list)->cnt == 0)253 (cast *)((_list)->head)308 (_list)->head = (_list)->head->next; \[all …]