Searched refs:elm (Results 1 – 1 of 1) sorted by relevance
| /optee_os/lib/libutils/isoc/include/sys/ |
| H A D | queue.h | 107 #define QUEUEDEBUG_LIST_INSERT_HEAD(head, elm, field) \ argument 111 #define QUEUEDEBUG_LIST_OP(elm, field) \ argument 112 if ((elm)->field.le_next && \ 113 (elm)->field.le_next->field.le_prev != \ 114 &(elm)->field.le_next) \ 115 panic("LIST_* forw %p %s:%d", (elm), __FILE__, __LINE__);\ 116 if (*(elm)->field.le_prev != (elm)) \ 117 panic("LIST_* back %p %s:%d", (elm), __FILE__, __LINE__); 118 #define QUEUEDEBUG_LIST_POSTREMOVE(elm, field) \ argument 119 (elm)->field.le_next = (void *)1L; \ [all …]
|