Searched refs:_pos (Results 1 – 2 of 2) sorted by relevance
272 #define alist_for_each(_pos, _lst) \ argument273 for (_pos = alist_start(_lst, typeof(*(_pos))); \274 _pos < alist_end(_lst, typeof(*(_pos))); \275 _pos++)295 #define alist_for_each_filter(_pos, _from, _lst) \ argument296 for (_pos = _from = alist_start(_lst, typeof(*(_pos))); \297 _pos < alist_end(_lst, typeof(*(_pos))); \298 _pos++)
24 #define GET_BIT(_x, _pos) \ argument25 (((_x) >> (_pos)) & 1)
Completed in 10 milliseconds