Lines Matching refs:__l
14 #define Z_GENLIST_FOR_EACH_NODE(__lname, __l, __sn) \ argument
15 for ((__sn) = sys_ ## __lname ## _peek_head(__l); (__sn) != NULL; \
19 #define Z_GENLIST_ITERATE_FROM_NODE(__lname, __l, __sn) \ argument
21 : sys_ ## __lname ## _peek_head(__l); \
25 #define Z_GENLIST_FOR_EACH_NODE_SAFE(__lname, __l, __sn, __sns) \ argument
26 for ((__sn) = sys_ ## __lname ## _peek_head(__l), \
34 #define Z_GENLIST_PEEK_HEAD_CONTAINER(__lname, __l, __cn, __n) \ argument
35 Z_GENLIST_CONTAINER(sys_ ## __lname ## _peek_head(__l), __cn, __n)
37 #define Z_GENLIST_PEEK_TAIL_CONTAINER(__lname, __l, __cn, __n) \ argument
38 Z_GENLIST_CONTAINER(sys_ ## __lname ## _peek_tail(__l), __cn, __n)
45 #define Z_GENLIST_FOR_EACH_CONTAINER(__lname, __l, __cn, __n) \ argument
46 for ((__cn) = Z_GENLIST_PEEK_HEAD_CONTAINER(__lname, __l, __cn, \
51 #define Z_GENLIST_FOR_EACH_CONTAINER_SAFE(__lname, __l, __cn, __cns, __n) \ argument
52 for ((__cn) = Z_GENLIST_PEEK_HEAD_CONTAINER(__lname, __l, __cn, __n), \