Searched defs:SLIST_FIRST (Results 1 - 2 of 2) sorted by relevance

/vbox/src/VBox/Additions/solaris/DRM/include/
H A Dqueue.h158 #define SLIST_FIRST(head) ((head)->slh_first) macro
161 for ((var) = SLIST_FIRST((head)); \
166 for ((var) = SLIST_FIRST((head)); \
171 for ((varp) = &SLIST_FIRST((head)); \
176 SLIST_FIRST((head)) = NULL; \
185 SLIST_NEXT((elm), field) = SLIST_FIRST((head)); \
186 SLIST_FIRST((head)) = (elm); \
192 if (SLIST_FIRST((head)) == (elm)) { \
196 struct type *curelm = SLIST_FIRST((head)); \
206 SLIST_FIRST((hea
[all...]
/vbox/src/VBox/Devices/Network/slirp/
H A Dqueue.h182 #define SLIST_FIRST(head) ((head)->slh_first) macro
185 for ((var) = SLIST_FIRST((head)); \
190 for ((var) = SLIST_FIRST((head)); \
195 for ((varp) = &SLIST_FIRST((head)); \
200 SLIST_FIRST((head)) = NULL; \
209 SLIST_NEXT((elm), field) = SLIST_FIRST((head)); \
210 SLIST_FIRST((head)) = (elm); \
216 if (SLIST_FIRST((head)) == (elm)) { \
220 struct type *curelm = SLIST_FIRST((head)); \
230 SLIST_FIRST((hea
[all...]

Completed in 642 milliseconds