Searched refs:__cns (Results 1 – 4 of 4) sorted by relevance
/Zephyr-Core-2.7.6/include/sys/ |
D | dlist.h | 185 #define SYS_DLIST_FOR_EACH_CONTAINER_SAFE(__dl, __cn, __cns, __n) \ argument 187 __cns = SYS_DLIST_PEEK_NEXT_CONTAINER(__dl, __cn, __n); \ 188 __cn != NULL; __cn = __cns, \ 189 __cns = SYS_DLIST_PEEK_NEXT_CONTAINER(__dl, __cn, __n))
|
D | list_gen.h | 51 #define Z_GENLIST_FOR_EACH_CONTAINER_SAFE(__lname, __l, __cn, __cns, __n) \ argument 53 __cns = Z_GENLIST_PEEK_NEXT_CONTAINER(__lname, __cn, __n); \ 54 __cn != NULL; __cn = __cns, \ 55 __cns = Z_GENLIST_PEEK_NEXT_CONTAINER(__lname, __cn, __n))
|
D | slist.h | 180 #define SYS_SLIST_FOR_EACH_CONTAINER_SAFE(__sl, __cn, __cns, __n) \ argument 181 Z_GENLIST_FOR_EACH_CONTAINER_SAFE(slist, __sl, __cn, __cns, __n)
|
D | sflist.h | 186 #define SYS_SFLIST_FOR_EACH_CONTAINER_SAFE(__sl, __cn, __cns, __n) \ argument 187 Z_GENLIST_FOR_EACH_CONTAINER_SAFE(sflist, __sl, __cn, __cns, __n)
|