Home
last modified time | relevance | path

Searched refs:__list (Results 1 – 1 of 1) sorted by relevance

/hardware/intel/common/libwsbm/src/
Dwsbm_util.h27 #define WSBMLISTADD(__item, __list) \ argument
29 (__item)->prev = (__list); \
30 (__item)->next = (__list)->next; \
31 (__list)->next->prev = (__item); \
32 (__list)->next = (__item); \
35 #define WSBMLISTADDTAIL(__item, __list) \ argument
37 (__item)->next = (__list); \
38 (__item)->prev = (__list)->prev; \
39 (__list)->prev->next = (__item); \
40 (__list)->prev = (__item); \
[all …]