Home
last modified time | relevance | path

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

/Zephyr-latest/include/zephyr/sys/
Ddlist.h72 #define SYS_DLIST_FOR_EACH_NODE(__dl, __dn) \ argument
73 for (__dn = sys_dlist_peek_head(__dl); __dn != NULL; \
74 __dn = sys_dlist_peek_next(__dl, __dn))
96 #define SYS_DLIST_ITERATE_FROM_NODE(__dl, __dn) \ argument
97 for (__dn = __dn ? sys_dlist_peek_next_no_check(__dl, __dn) \
98 : sys_dlist_peek_head(__dl); \
100 __dn = sys_dlist_peek_next(__dl, __dn))
118 #define SYS_DLIST_FOR_EACH_NODE_SAFE(__dl, __dn, __dns) \ argument
119 for ((__dn) = sys_dlist_peek_head(__dl), \
120 (__dns) = sys_dlist_peek_next((__dl), (__dn)); \
[all …]