Searched refs:__head (Results 1 – 1 of 1) sorted by relevance
/external/libdrm/ |
D | libdrm_lists.h | 98 #define DRMLISTFOREACHENTRY(__item, __list, __head) \ argument 99 for ((__item) = DRMLISTENTRY(typeof(*__item), (__list)->next, __head); \ 100 &(__item)->__head != (__list); \ 102 (__item)->__head.next, __head)) 104 #define DRMLISTFOREACHENTRYSAFE(__item, __temp, __list, __head) \ argument 105 for ((__item) = DRMLISTENTRY(typeof(*__item), (__list)->next, __head), \ 107 (__item)->__head.next, __head); \ 108 &(__item)->__head != (__list); \ 111 (__temp)->__head.next, __head))
|