Searched refs:tpos (Results 1 – 4 of 4) sorted by relevance
/include/linux/ |
D | list_nulls.h | 94 #define hlist_nulls_for_each_entry(tpos, pos, head, member) \ argument 97 ({ tpos = hlist_nulls_entry(pos, typeof(*tpos), member); 1;}); \ 107 #define hlist_nulls_for_each_entry_from(tpos, pos, member) \ argument 109 ({ tpos = hlist_nulls_entry(pos, typeof(*tpos), member); 1;}); \
|
D | list_bl.h | 141 #define hlist_bl_for_each_entry(tpos, pos, head, member) \ argument 144 ({ tpos = hlist_bl_entry(pos, typeof(*tpos), member); 1;}); \ 155 #define hlist_bl_for_each_entry_safe(tpos, pos, n, head, member) \ argument 158 ({ tpos = hlist_bl_entry(pos, typeof(*tpos), member); 1;}); \
|
D | rculist_nulls.h | 113 #define hlist_nulls_for_each_entry_rcu(tpos, pos, head, member) \ argument 117 ({ tpos = hlist_nulls_entry(pos, typeof(*tpos), member); 1; }); \
|
D | rculist_bl.h | 122 #define hlist_bl_for_each_entry_rcu(tpos, pos, head, member) \ argument 125 ({ tpos = hlist_bl_entry(pos, typeof(*tpos), member); 1; }); \
|