HomeSort by: relevance | last modified time | path
    Searched refs:list (Results 1 - 25 of 1628) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /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);
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...]
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>
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...]
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.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...]
  /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
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...]
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...]
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/sys/external/bsd/drm2/dist/drm/i915/selftests/
mock_request.h 30 #include <linux/list.h>
mock_request.h 30 #include <linux/list.h>
  /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...]
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/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...]
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

Completed in 31 milliseconds

1 2 3 4 5 6 7 8 91011>>