Searched refs:list (Results 126 - 150 of 3568) sorted by relevance

1234567891011>>

/netbsd-current/sbin/iscsid/
H A Discsid_globals.h14 * notice, this list of conditions and the following disclaimer.
16 * notice, this list of conditions and the following disclaimer in the
89 * The generic list entry.
91 * list processing. It contains both a numeric ID and a symbolic name.
100 TAILQ_ENTRY(generic_entry_s) link; /* the list link */
109 * The iSNS list structure.
110 * This structure contains the list of iSNS servers that have been added
115 generic_entry_t entry; /* global list link */
135 * The initiator portal list structure.
142 generic_entry_t entry; /* global list lin
357 generic_list_t list; member in struct:__anon10
[all...]
/netbsd-current/external/bsd/openldap/dist/contrib/ldapc++/src/
H A DLDAPReferenceList.h13 #include <list>
18 * Container class for storing a list of Search References
23 typedef std::list<LDAPSearchReference> ListType;
29 * Constructs an empty list.
45 * currently stored in this list.
51 * currently stored in this list.
56 * @return A iterator that points to the first element of the list.
62 * element of the list.
67 * Adds one element to the end of the list.
68 * @param e The LDAPSearchReference to add to the list
[all...]
H A DLDAPUrlList.h12 #include <list>
19 typedef std::list<LDAPUrl> ListType;
25 * Constructs an empty list.
38 * std::list of URLs from a array of C-strings that was return by
50 * stored in this list.
56 * stored in this list.
61 * @return A iterator that points to the first element of the list.
67 * element of the list.
72 * Adds one element to the end of the list.
73 * @param attr The attribute to add to the list
[all...]
H A DStringList.h13 #include <list>
18 typedef std::list<std::string> ListType;
27 * Constructs an empty list.
40 * list of string from a array for c-Strings (char*)thar was
51 * The methods converts the list to a 0-terminated array of
57 * Adds one element to the end of the list.
58 * @param attr The attribute to add to the list.
64 * stored in this list.
70 * stored in this list.
75 * @return A iterator that points to the first element of the list
[all...]
H A DLDAPEntryList.h13 #include <list>
20 * This class is used by LDAPSearchResults to store a std::list of
24 typedef std::list<LDAPEntry> ListType;
45 * @return The number of entries currently stored in the list.
50 * @return true if there are zero entries currently stored in the list.
55 * @return An iterator pointing to the first element of the list.
60 * @return An iterator pointing to the end of the list
65 * Adds an Entry to the end of the list.
/netbsd-current/sys/external/bsd/drm2/dist/drm/amd/amdgpu/
H A Damdgpu_csa.c75 struct list_head list; local
80 INIT_LIST_HEAD(&list);
85 list_add(&csa_tv.head, &list);
86 amdgpu_vm_get_pd_bo(vm, &list, &pd);
88 r = ttm_eu_reserve_buffers(&ticket, &list, true, NULL);
96 ttm_eu_backoff_reservation(&ticket, &list);
108 ttm_eu_backoff_reservation(&ticket, &list);
112 ttm_eu_backoff_reservation(&ticket, &list);
/netbsd-current/external/gpl3/gdb.old/dist/gdbserver/
H A Ddll.h21 #include <list>
33 extern std::list<dll_info> all_dlls;
H A Dnotif.h23 #include <list>
53 std::list<notif_event *> queue;
/netbsd-current/external/gpl3/gdb.old/dist/binutils/testsuite/binutils-all/
H A Dpr23633.d3 #objcopy: -S --keep-symbols=$srcdir/$subdir/pr23633.list
/netbsd-current/external/gpl3/gcc/dist/contrib/
H A Dcheck-MAINTAINERS.py88 lines = list(dropwhile(lambda x: x.strip() != needle, lines))
91 chunk = list(takewhile(is_empty, lines))
95 lines = list(dropwhile(lambda x: needle not in x, lines))
98 chunk = list(takewhile(is_empty, lines))
102 lines = list(dropwhile(lambda x: needle not in x, lines))
105 chunk = list(takewhile(is_empty, lines))
109 lines = list(dropwhile(lambda x: needle not in x, lines))[1:]
110 lines = list(dropwhile(lambda x: not has_tab(x), lines))
/netbsd-current/external/gpl3/gdb/dist/gdbserver/
H A Dnotif.h23 #include <list>
53 std::list<notif_event *> queue;
/netbsd-current/external/mit/isl/dist/
H A Disl_multi_read_no_explicit_domain_templ.c17 * Read an EL from "s" and add it to *list.
22 LIST(EL) **list = (LIST(EL) **) user;
26 *list = FN(LIST(EL),add)(*list, el);
27 if (!*list)
35 * We first read a tuple space, collecting the element values in a list.
45 LIST(EL) *list;
65 list = FN(LIST(EL),alloc)(s->ctx, 0);
66 space = read_tuple_space(s, v, space, 1, 0, &FN(read_el,BASE), &list);
67 multi = FN(FN(MULTI(BASE),from),LIST(BASE))(space, list);
[all...]
/netbsd-current/external/bsd/atf/dist/atf-c/detail/
H A Dlist.h11 * notice, this list of conditions and the following disclaimer.
13 * notice, this list of conditions and the following disclaimer in the
106 #define atf_list_for_each(iter, list) \
107 for (iter = atf_list_begin(list); \
108 !atf_equal_list_iter_list_iter((iter), atf_list_end(list)); \
110 #define atf_list_for_each_c(iter, list) \
111 for (iter = atf_list_begin_c(list); \
112 !atf_equal_list_citer_list_citer((iter), atf_list_end_c(list)); \
/netbsd-current/lib/libc/gen/
H A Dnlist.c11 * notice, this list of conditions and the following disclaimer.
13 * notice, this list of conditions and the following disclaimer in the
39 * notice, this list of conditions and the following disclaimer.
41 * notice, this list of conditions and the following disclaimer in the
115 nlist(const char *name, struct nlist *list) argument
120 _DIAGASSERT(list != NULL);
125 n = __fdnlist(fd, list);
131 __fdnlist(int fd, struct nlist *list) argument
137 _DIAGASSERT(list != NULL);
140 if ((rv = (*fdnlist_fmts[i].fdnlist)(fd, list)) !
[all...]
/netbsd-current/external/gpl3/gdb.old/dist/gas/testsuite/gas/arm/
H A Darmv1-bad.l7 [^:]*:9: Warning: writeback of base register when in register list is UNPREDICTABLE
9 [^:]*:12: Warning: if writeback register is in list, it must be the lowest reg in the list
/netbsd-current/external/gpl3/gdb.old/dist/ld/testsuite/ld-dynamic/
H A Dexport-dynamic-symbol-list-2.d1 #name: -u --export-dynamic-symbol-list foo bar archive
3 #ld: -pie -u foo --export-dynamic-symbol-list foo-bar.list tmpdir/libpr25910.a
H A Dexport-dynamic-symbol-list-glob.d1 #name: -u --export-dynamic-symbol-list fstar archive
3 #ld: -pie -u foo --export-dynamic-symbol-list fstar.list tmpdir/libpr25910.a
/netbsd-current/crypto/external/bsd/openssl.old/dist/crypto/
H A Dmem_sec.c298 ossl_ssize_t list = sh.freelist_size - 1; local
301 for (; bit; bit >>= 1, list--) {
307 return list;
311 static int sh_testbit(char *ptr, int list, unsigned char *table) argument
315 OPENSSL_assert(list >= 0 && list < sh.freelist_size);
316 OPENSSL_assert(((ptr - sh.arena) & ((sh.arena_size >> list) - 1)) == 0);
317 bit = (ONE << list) + ((ptr - sh.arena) / (sh.arena_size >> list));
322 static void sh_clearbit(char *ptr, int list, unsigne argument
334 sh_setbit(char *ptr, int list, unsigned char *table) argument
346 sh_add_to_list(char **list, char *ptr) argument
521 sh_find_my_buddy(char *ptr, int list) argument
537 ossl_ssize_t list, slist; local
602 size_t list; local
643 int list; local
[all...]
/netbsd-current/crypto/external/bsd/openssl/dist/crypto/
H A Dmem_sec.c326 ossl_ssize_t list = sh.freelist_size - 1; local
329 for (; bit; bit >>= 1, list--) {
335 return list;
339 static int sh_testbit(char *ptr, int list, unsigned char *table) argument
343 OPENSSL_assert(list >= 0 && list < sh.freelist_size);
344 OPENSSL_assert(((ptr - sh.arena) & ((sh.arena_size >> list) - 1)) == 0);
345 bit = (ONE << list) + ((ptr - sh.arena) / (sh.arena_size >> list));
350 static void sh_clearbit(char *ptr, int list, unsigne argument
362 sh_setbit(char *ptr, int list, unsigned char *table) argument
374 sh_add_to_list(char **list, char *ptr) argument
598 sh_find_my_buddy(char *ptr, int list) argument
614 ossl_ssize_t list, slist; local
679 size_t list; local
720 int list; local
[all...]
/netbsd-current/external/gpl2/gettext/dist/gettext-tools/src/
H A Dmsgl-fsearch.c46 occurring in the message strings to the list of messages that contains
47 it. For example, if the message list is
62 The list is sorted according to decreasing frequency: { 0, 1, ... }
63 and only the first few messages from this frequency list are passed to
82 /* Each message is represented by its index in the message list. */
85 /* An index list has its allocated size and length tacked at the front.
91 /* Create a new index list containing only a given index. */
95 index_ty *list = (index_ty *) xmalloc ((2 + 1) * sizeof (index_ty)); local
96 list[IL_ALLOCATED] = 1;
97 list[IL_LENGT
108 addlast_index(index_list_ty list, index_ty idx) argument
135 add_index(index_list_ty list, index_ty idx) argument
251 index_list_ty list = (index_list_ty) found; local
288 index_list_ty list = (index_list_ty) *valuep; local
369 mult_index_list_accumulate(struct mult_index_list *accu, index_list_ty list) argument
524 index_list_ty list = (index_list_ty) found; local
[all...]
/netbsd-current/external/gpl3/gdb.old/dist/gdb/
H A Ddummy-frame.c57 /* Next element in the list or NULL if this is the last element. */
81 /* First element of destructors list or NULL if there are no
114 struct dummy_frame_dtor_list *list = dummy->dtor_list; local
116 dummy->dtor_list = list->next;
117 list->dtor (list->dtor_data, 0);
118 xfree (list);
160 struct dummy_frame_dtor_list *list = dummy->dtor_list; local
162 dummy->dtor_list = list->next;
163 list
241 struct dummy_frame_dtor_list *list; local
262 struct dummy_frame_dtor_list *list; local
[all...]
/netbsd-current/external/gpl3/gdb/dist/gdb/
H A Ddummy-frame.c57 /* Next element in the list or NULL if this is the last element. */
81 /* First element of destructors list or NULL if there are no
114 struct dummy_frame_dtor_list *list = dummy->dtor_list; local
116 dummy->dtor_list = list->next;
117 list->dtor (list->dtor_data, 0);
118 xfree (list);
160 struct dummy_frame_dtor_list *list = dummy->dtor_list; local
162 dummy->dtor_list = list->next;
163 list
240 struct dummy_frame_dtor_list *list; local
261 struct dummy_frame_dtor_list *list; local
[all...]
/netbsd-current/external/mit/isl/dist/include/isl/
H A Dlist.h29 isl_ctx *isl_##EL##_list_get_ctx(__isl_keep isl_##EL##_list *list); \
38 __isl_keep isl_##EL##_list *list); \
40 __isl_take isl_##EL##_list *list); \
43 __isl_take isl_##EL##_list *list, \
47 __isl_take isl_##EL##_list *list, unsigned pos, \
51 __isl_take isl_##EL##_list *list, unsigned first, unsigned n); \
54 __isl_take isl_##EL##_list *list); \
56 __isl_take isl_##EL##_list *list, unsigned pos1, \
59 __isl_take isl_##EL##_list *list); \
65 isl_size isl_##EL##_list_size(__isl_keep isl_##EL##_list *list); \
[all...]
/netbsd-current/external/mpl/dhcp/bind/dist/lib/dns/
H A Dportlist.c48 dns_element_t *list; member in struct:dns_portlist
80 portlist->list = NULL;
91 find_port(dns_element_t *list, unsigned int len, in_port_t port) { argument
98 if (list[xtry].port == port) {
99 return (&list[xtry]);
101 if (port > list[xtry].port) {
138 el = find_port(portlist->list, portlist->active, port);
154 if (portlist->list != NULL) {
155 memmove(el, portlist->list,
157 isc_mem_put(portlist->mctx, portlist->list,
[all...]
/netbsd-current/external/gpl3/gcc.old/dist/gcc/
H A Dattribs.h73 modified list. */
77 /* Given two attributes lists, return a list of their union. */
81 /* Duplicate all attributes with name NAME in ATTR list to *ATTRS if
92 dllimport, return a list of their union . */
107 tree list);
158 /* Given an attribute name ATTR_NAME and a list of attributes LIST,
159 return a pointer to the attribute's list element if the attribute
160 is part of the list, or NULL_TREE if not found. If the attribute
167 lookup_attribute (const char *attr_name, tree list) argument
170 /* In most cases, list i
189 lookup_attribute_by_prefix(const char *attr_name, tree list) argument
[all...]

Completed in 342 milliseconds

1234567891011>>