/src/tests/usr.bin/xlint/lint1/ |
d_cast_typeof.c | 7 char list; member in struct:foo 15 ((char *)&((typeof(hole))0)->list) : 16 ((char *)&((typeof(*hole) *)0)->list);
|
/src/sys/external/bsd/drm2/dist/include/drm/ttm/ |
ttm_execbuf_util.h | 36 #include <linux/list.h> 43 * @head: list head for thread-private list. 58 * @list: thread private list of ttm_validate_buffer structs. 61 * the list entries. 65 struct list_head *list); 72 * @list: thread private list of ttm_validate_buffer structs. 74 * @dups: [out] optional list of duplicates [all...] |
/src/sys/external/bsd/drm2/include/linux/ |
rculist.h | 11 * notice, this list of conditions and the following disclaimer. 13 * notice, this list of conditions and the following disclaimer in the 32 #include <linux/list.h>
|
/src/lib/libc/include/isc/ |
list.h | 1 /* $NetBSD: list.h,v 1.6 2022/04/19 20:32:15 rillig Exp $ */ 24 #define LIST(type) struct { type *head, *tail; } 25 #define INIT_LIST(list) \ 26 do { (list).head = NULL; (list).tail = NULL; } while (0) 39 #define HEAD(list) ((list).head) 40 #define TAIL(list) ((list).tail) 41 #define EMPTY(list) ((list).head == NULL [all...] |
/src/sys/external/bsd/drm2/dist/drm/amd/amdgpu/ |
amdgpu_bo_list.h | 56 void amdgpu_bo_list_get_list(struct amdgpu_bo_list *list, 58 void amdgpu_bo_list_put(struct amdgpu_bo_list *list); 66 struct amdgpu_bo_list **list); 69 amdgpu_bo_list_array_entry(struct amdgpu_bo_list *list, unsigned index) 71 struct amdgpu_bo_list_entry *array = (void *)&list[1]; 76 #define amdgpu_bo_list_for_each_entry(e, list) \ 77 for (e = amdgpu_bo_list_array_entry(list, 0); \ 78 e != amdgpu_bo_list_array_entry(list, (list)->num_entries); \ 81 #define amdgpu_bo_list_for_each_userptr_entry(e, list) \ [all...] |
amdgpu_bo_list.c | 48 struct amdgpu_bo_list *list = container_of(rcu, struct amdgpu_bo_list, local in function:amdgpu_bo_list_free_rcu 51 kvfree(list); 56 struct amdgpu_bo_list *list = container_of(ref, struct amdgpu_bo_list, local in function:amdgpu_bo_list_free 60 amdgpu_bo_list_for_each_entry(e, list) { 66 call_rcu(&list->rhead, amdgpu_bo_list_free_rcu); 75 struct amdgpu_bo_list *list; local in function:amdgpu_bo_list_create 87 list = kvmalloc(size, GFP_KERNEL); 88 if (!list) 91 kref_init(&list->refcount); 92 list->gds_obj = NULL 177 struct amdgpu_bo_list *list; local in function:amdgpu_bo_list_destroy 290 struct amdgpu_bo_list *list, *old; local in function:amdgpu_bo_list_ioctl [all...] |
/src/usr.bin/msgc/ |
msgparse.y | 13 * notice, this list of conditions and the following disclaimer. 15 * notice, this list of conditions and the following disclaimer in the 56 %start list 60 list : /* empty */ label 61 | list msg
|
/src/usr.bin/mklocale/ |
yacc.y | 15 * notice, this list of conditions and the following disclaimer. 17 * notice, this list of conditions and the following disclaimer in the 107 rune_list *list; 117 %token <i> LIST 124 %type <list> list 125 %type <list> map 184 | LIST list 194 list : RUN label [all...] |
/src/usr.sbin/intrctl/ |
intrctl_io.c | 11 * notice, this list of conditions and the following disclaimer. 13 * notice, this list of conditions and the following disclaimer in the 52 error = sysctlbyname("kern.intr.list", NULL, &buf_size, NULL, 0); 63 error = sysctlbyname("kern.intr.list", buf, &buf_size, NULL, 0); 93 struct intrio_list *list = handle; local in function:intrctl_io_ncpus 95 return list->il_ncpus; 101 struct intrio_list *list = handle; local in function:intrctl_io_nintrs 103 return list->il_nintrs; 109 struct intrio_list *list = handle; local in function:intrctl_io_firstline 113 buf_end = (char *)list + list->il_bufsize 124 struct intrio_list *list; local in function:intrctl_io_nextline [all...] |
/src/lib/libpam/modules/pam_guest/ |
pam_guest.c | 16 * notice, this list of conditions and the following disclaimer. 18 * notice, this list of conditions and the following disclaimer in the 55 lookup(const char *str, const char *list) 61 while (*list != '\0') { 62 while (*list == ',') 63 ++list; 64 if ((next = strchr(list, ',')) == NULL) 65 next = strchr(list, '\0'); 66 if (next - list == (ptrdiff_t)len && 67 strncmp(list, str, len) == 0 [all...] |
/src/sys/external/bsd/drm2/dist/drm/i915/selftests/ |
mock_request.h | 30 #include <linux/list.h>
|
/src/usr.bin/rpcgen/ |
rpc_util.h | 44 struct list { struct 46 struct list *next; 48 typedef struct list list; typedef in typeref:struct:list 66 extern list *defined; 99 #define STOREVAL(list,item) \ 100 storeval(list,item) 102 #define FINDVAL(list,item,finder) \ 103 findval(list, item, finder) 107 definition *findval(list *, const char * [all...] |
/src/distrib/amd64/ramdisks/ramdisk-cgdroot/ |
Makefile | 11 LISTS+= ${DISTRIBDIR}/common/list.cgdroot 15 LISTS+= ${DISTRIBDIR}/common/list.inet6
|
/src/distrib/amd64/ramdisks/ramdisk-zfsroot/ |
Makefile | 13 LISTS+= ${DISTRIBDIR}/common/list.zfsroot 18 LISTS+= ${.CURDIR}/list
|
/src/distrib/i386/ramdisks/ramdisk-cgdroot/ |
Makefile | 12 LISTS+= ${DISTRIBDIR}/common/list.cgdroot 16 LISTS+= ${DISTRIBDIR}/common/list.inet6
|
/src/usr.bin/make/ |
lst.c | 14 * notice, this list of conditions and the following disclaimer. 16 * notice, this list of conditions and the following disclaimer in the 52 Lst_Done(List *list) 56 for (ln = list->first; ln != NULL; ln = next) { 63 Lst_DoneFree(List *list) 67 for (ln = list->first; ln != NULL; ln = next) { 76 Lst_InsertBefore(List *list, ListNode *ln, void *datum [all...] |
lst.h | 14 * notice, this list of conditions and the following disclaimer. 16 * notice, this list of conditions and the following disclaimer in the 49 * notice, this list of conditions and the following disclaimer. 51 * notice, this list of conditions and the following disclaimer in the 85 /* A doubly-linked list of pointers. */ 86 typedef struct List List; 87 /* A single node in the doubly-linked list. */ 91 ListNode *prev; /* previous node in list, or NULL */ 92 ListNode *next; /* next node in list, or NULL * [all...] |
/src/tests/lib/libc/sys/ |
t_futex_robust.c | 11 * notice, this list of conditions and the following disclaimer. 13 * notice, this list of conditions and the following disclaimer in the 48 struct futex_robust_list list; member in struct:futex_lock_pos 55 struct futex_robust_list list; member in struct:futex_lock_neg 104 d->rhead.list.next = &d->rhead.list; 106 offsetof(struct futex_lock_pos, list); 120 pos_locks[i].list.next = d->rhead.list.next; 121 d->rhead.list.next = &pos_locks[i].list [all...] |
/src/distrib/amd64/ramdisks/ramdisk/ |
Makefile | 12 LISTS+= ${DISTRIBDIR}/common/list.inet6
|
/src/distrib/ofppc/ramdisks/ramdisk/ |
Makefile | 11 LISTS+= ${DISTRIBDIR}/common/list.inet6
|
/src/games/backgammon/teachgammon/ |
ttext1.c | 11 * notice, this list of conditions and the following disclaimer. 13 * notice, this list of conditions and the following disclaimer in the 47 const char *const list[] = { variable in typeref:typename:const char * const[] 57 "\t?\tto get this list",
|
/src/share/examples/puffs/pgfs/ |
pgfs_waitq.c | 11 * notice, this list of conditions and the following disclaimer. 13 * notice, this list of conditions and the following disclaimer in the 45 TAILQ_ENTRY(waiter) list; 66 TAILQ_INSERT_TAIL(wq, &w, list); 78 TAILQ_REMOVE(wq, w, list); 93 TAILQ_FOREACH(w, wq, list) {
|
/src/tests/usr.bin/indent/ |
lsym_for.c | 53 #define foreach(list, it) for (it = list.first; it != NULL; it = it->next) 66 foreach(list, it) 70 foreach(list, it) {
|
/src/distrib/virt68k/ramdisks/inst-ramdisk/ |
Makefile | 12 LISTS+= ${DISTRIBDIR}/common/list.inet6
|
/src/sbin/sysctl/ |
pathconf.c | 11 * notice, this list of conditions and the following disclaimer. 13 * notice, this list of conditions and the following disclaimer in the 72 struct list { struct 73 struct ctlname *list; member in struct:list 76 struct list pclist = { pcnames, PC_MAXID }; 128 * List all variables known to the system. 132 struct list *lp; 136 if (lp->list == 0) 139 if (lp->list[lvl2].ctl_name == 0) 141 parse(path, lp->list[lvl2].ctl_name, Aflag) [all...] |