/src/sys/external/bsd/drm/dist/bsd-core/ |
drm_linux_list.h | 35 struct list_head { struct 36 struct list_head *next, *prev; 43 INIT_LIST_HEAD(struct list_head *head) { 49 list_empty(struct list_head *head) { 54 list_add(struct list_head *new, struct list_head *head) { 62 list_add_tail(struct list_head *entry, struct list_head *head) { 70 list_del(struct list_head *entry) { 76 list_del_init(struct list_head *entry) [all...] |
/src/sys/external/bsd/drm2/dist/drm/nouveau/include/nvif/ |
list.h | 48 * data type 'struct list_head'). 52 * struct list_head list_of_foos; 58 * struct list_head entry; 104 * to-be-linked struct. struct list_head is required for both the head of the 107 * Position and name of the struct list_head field is irrelevant. 109 * There are no requirements for a list head, any struct list_head can be a list 112 struct list_head { struct 113 struct list_head *next, *prev; 126 #define LIST_HEAD(name) \ 127 struct list_head name = LIST_HEAD_INIT(name [all...] |
/src/sbin/efi/ |
getvars.c | 57 efi_var_head_t *list_head; member in struct:fn_args 101 efi_var_head_t *head = args->list_head; 138 static efi_var_head_t list_head; local in function:get_variables 145 assert(SLIST_EMPTY(&list_head)); 147 SLIST_INIT(&list_head); 150 args.list_head = &list_head; 160 SLIST_FOREACH(elm, &list_head, entry) { 168 return &list_head; 191 efi_var_head_t *list_head = vp local in function:free_variables [all...] |
/src/sys/external/bsd/common/include/linux/ |
types.h | 100 struct list_head { struct 101 struct list_head *prev; 102 struct list_head *next;
|
/src/sys/external/bsd/drm2/dist/drm/radeon/ |
mkregtable.c | 47 struct list_head { struct 48 struct list_head *next, *prev; 52 static inline void INIT_LIST_HEAD(struct list_head *list) 65 static inline void __list_add(struct list_head *new, 66 struct list_head *prev, struct list_head *next) 74 extern void __list_add(struct list_head *new, 75 struct list_head *prev, struct list_head *next); 86 static inline void list_add_tail(struct list_head *new, struct list_head *head [all...] |