Home
last modified time | relevance | path

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

/wlan-driver/qca-wifi-host-cmn/utils/sys/
Dqueue.h185 #define SLIST_INSERT_AFTER(slistelm, elm, field) do { \ argument
186 SLIST_NEXT((elm), field) = SLIST_NEXT((slistelm), field); \
187 SLIST_NEXT((slistelm), field) = (elm); \
190 #define SLIST_INSERT_HEAD(head, elm, field) do { \ argument
191 SLIST_NEXT((elm), field) = SLIST_FIRST((head)); \
192 SLIST_FIRST((head)) = (elm); \
195 #define SLIST_NEXT(elm, field) ((elm)->field.sle_next) argument
197 #define SLIST_REMOVE(head, elm, type, field) do { \ argument
198 if (SLIST_FIRST((head)) == (elm)) { \
203 while (SLIST_NEXT(curelm, field) != (elm)) \
[all …]