Searched refs:list (Results 1 - 25 of 3565) sorted by relevance

1234567891011>>

/netbsd-current/external/gpl3/binutils/dist/binutils/
H A Darsup.h21 struct list { struct
23 struct list *next;
32 void ar_replace (struct list *);
34 void ar_delete (struct list *);
42 void ar_directory (char *, struct list *, char *);
44 void ar_addmod (struct list *);
46 void ar_addlib (char *, struct list *);
50 void ar_extract (struct list *);
/netbsd-current/external/gpl3/binutils.old/dist/binutils/
H A Darsup.h21 struct list { struct
23 struct list *next;
32 void ar_replace (struct list *);
34 void ar_delete (struct list *);
42 void ar_directory (char *, struct list *, char *);
44 void ar_addmod (struct list *);
46 void ar_addlib (char *, struct list *);
50 void ar_extract (struct list *);
/netbsd-current/external/gpl3/gdb.old/dist/binutils/
H A Darsup.h21 struct list { struct
23 struct list *next;
32 void ar_replace (struct list *);
34 void ar_delete (struct list *);
42 void ar_directory (char *, struct list *, char *);
44 void ar_addmod (struct list *);
46 void ar_addlib (char *, struct list *);
50 void ar_extract (struct list *);
/netbsd-current/external/gpl3/gcc.old/dist/libgomp/
H A Derror.c41 gomp_vdebug (int kind __attribute__ ((unused)), const char *msg, va_list list) argument
44 vfprintf (stderr, msg, list);
51 va_list list; local
53 va_start (list, msg);
54 gomp_vdebug (kind, msg, list);
55 va_end (list);
59 gomp_verror (const char *fmt, va_list list) argument
62 vfprintf (stderr, fmt, list);
69 va_list list; local
71 va_start (list, fm
77 gomp_vfatal(const char *fmt, va_list list) argument
86 va_list list; local
[all...]
/netbsd-current/tests/usr.bin/xlint/lint1/
H A Dd_cast_typeof.c7 char list; member in struct:foo
15 ((char *)&((typeof(hole))0)->list) :
16 ((char *)&((typeof(*hole) *)0)->list);
/netbsd-current/crypto/external/cpl/trousers/dist/src/tspi/daa/utils/
H A Dlist.c13 #include <list.h>
18 list_ptr list = (list_ptr)malloc( sizeof( list_struct)); local
20 if( list == NULL) return NULL;
21 list->head = NULL;
22 return list;
25 void list_add(list_ptr list, void *obj) { argument
26 list->current = (node_t *) malloc (sizeof(struct _list_t));
27 if (list->current == NULL) {
31 if( list->head == NULL) {
32 list
40 list_dump(list_ptr list) argument
54 list_freeall(list_ptr list) argument
[all...]
/netbsd-current/external/gpl2/gettext/dist/gettext-tools/gnulib-lib/
H A Dgl_list.c1 /* Abstract sequential list data type.
52 gl_list_size (gl_list_t list) argument
54 return ((const struct gl_list_impl_base *) list)->vtable
55 ->size (list);
59 gl_list_node_value (gl_list_t list, gl_list_node_t node) argument
61 return ((const struct gl_list_impl_base *) list)->vtable
62 ->node_value (list, node);
66 gl_list_next_node (gl_list_t list, gl_list_node_t node) argument
68 return ((const struct gl_list_impl_base *) list)->vtable
69 ->next_node (list, nod
73 gl_list_previous_node(gl_list_t list, gl_list_node_t node) argument
80 gl_list_get_at(gl_list_t list, size_t position) argument
87 gl_list_set_at(gl_list_t list, size_t position, const void *elt) argument
94 gl_list_search(gl_list_t list, const void *elt) argument
102 gl_list_search_from(gl_list_t list, size_t start_index, const void *elt) argument
110 gl_list_search_from_to(gl_list_t list, size_t start_index, size_t end_index, const void *elt) argument
117 gl_list_indexof(gl_list_t list, const void *elt) argument
125 gl_list_indexof_from(gl_list_t list, size_t start_index, const void *elt) argument
133 gl_list_indexof_from_to(gl_list_t list, size_t start_index, size_t end_index, const void *elt) argument
140 gl_list_add_first(gl_list_t list, const void *elt) argument
147 gl_list_add_last(gl_list_t list, const void *elt) argument
154 gl_list_add_before(gl_list_t list, gl_list_node_t node, const void *elt) argument
161 gl_list_add_after(gl_list_t list, gl_list_node_t node, const void *elt) argument
168 gl_list_add_at(gl_list_t list, size_t position, const void *elt) argument
175 gl_list_remove_node(gl_list_t list, gl_list_node_t node) argument
182 gl_list_remove_at(gl_list_t list, size_t position) argument
189 gl_list_remove(gl_list_t list, const void *elt) argument
196 gl_list_free(gl_list_t list) argument
202 gl_list_iterator(gl_list_t list) argument
209 gl_list_iterator_from_to(gl_list_t list, size_t start_index, size_t end_index) argument
229 gl_sortedlist_search(gl_list_t list, gl_listelement_compar_fn compar, const void *elt) argument
236 gl_sortedlist_search_from_to(gl_list_t list, gl_listelement_compar_fn compar, size_t start_index, size_t end_index, const void *elt) argument
244 gl_sortedlist_indexof(gl_list_t list, gl_listelement_compar_fn compar, const void *elt) argument
251 gl_sortedlist_indexof_from_to(gl_list_t list, gl_listelement_compar_fn compar, size_t start_index, size_t end_index, const void *elt) argument
259 gl_sortedlist_add(gl_list_t list, gl_listelement_compar_fn compar, const void *elt) argument
266 gl_sortedlist_remove(gl_list_t list, gl_listelement_compar_fn compar, const void *elt) argument
[all...]
H A Dgl_list.h1 /* Abstract sequential list data type.
30 /* gl_list is an abstract list data type. It can contain any number of
34 There are several implementations of this list datatype, optimized for
35 different operations or for memory. You can start using the simplest list
45 GL_LINKED_LIST a linked list
48 GL_LINKEDHASH_LIST a hash table with a linked list
53 in the list. When looking more closely at the average memory consumed
57 The guaranteed average performance of the operations is, for a list of
106 /* Type representing an entire list. */
110 /* Type representing the position of an element in the list, i
259 gl_list_t list; member in struct:__anon547
466 gl_list_size(gl_list_t list) argument
474 gl_list_node_value(gl_list_t list, gl_list_node_t node) argument
482 gl_list_next_node(gl_list_t list, gl_list_node_t node) argument
490 gl_list_previous_node(gl_list_t list, gl_list_node_t node) argument
498 gl_list_get_at(gl_list_t list, size_t position) argument
506 gl_list_set_at(gl_list_t list, size_t position, const void *elt) argument
514 gl_list_search(gl_list_t list, const void *elt) argument
523 gl_list_search_from(gl_list_t list, size_t start_index, const void *elt) argument
532 gl_list_search_from_to(gl_list_t list, size_t start_index, size_t end_index, const void *elt) argument
541 gl_list_indexof(gl_list_t list, const void *elt) argument
550 gl_list_indexof_from(gl_list_t list, size_t start_index, const void *elt) argument
559 gl_list_indexof_from_to(gl_list_t list, size_t start_index, size_t end_index, const void *elt) argument
568 gl_list_add_first(gl_list_t list, const void *elt) argument
576 gl_list_add_last(gl_list_t list, const void *elt) argument
584 gl_list_add_before(gl_list_t list, gl_list_node_t node, const void *elt) argument
592 gl_list_add_after(gl_list_t list, gl_list_node_t node, const void *elt) argument
600 gl_list_add_at(gl_list_t list, size_t position, const void *elt) argument
608 gl_list_remove_node(gl_list_t list, gl_list_node_t node) argument
616 gl_list_remove_at(gl_list_t list, size_t position) argument
624 gl_list_remove(gl_list_t list, const void *elt) argument
632 gl_list_free(gl_list_t list) argument
639 gl_list_iterator(gl_list_t list) argument
647 gl_list_iterator_from_to(gl_list_t list, size_t start_index, size_t end_index) argument
670 gl_sortedlist_search(gl_list_t list, gl_listelement_compar_fn compar, const void *elt) argument
678 gl_sortedlist_search_from_to(gl_list_t list, gl_listelement_compar_fn compar, size_t start_index, size_t end_index, const void *elt) argument
687 gl_sortedlist_indexof(gl_list_t list, gl_listelement_compar_fn compar, const void *elt) argument
695 gl_sortedlist_indexof_from_to(gl_list_t list, gl_listelement_compar_fn compar, size_t start_index, size_t end_index, const void *elt) argument
704 gl_sortedlist_add(gl_list_t list, gl_listelement_compar_fn compar, const void *elt) argument
712 gl_sortedlist_remove(gl_list_t list, gl_listelement_compar_fn compar, const void *elt) argument
[all...]
/netbsd-current/external/gpl3/gcc.old/dist/libobjc/objc-private/
H A Dobjc-list.h1 /* Generic single linked list to keep various information
50 list_remove_head (struct objc_list** list) argument
52 if ((*list)->tail)
55 struct objc_list* tail = (*list)->tail;
57 /* Copy next to list head. */
58 *(*list) = *tail;
65 /* Inly one element in list. */
66 objc_free (*list);
67 (*list) = 0;
74 list_mapcar (struct objc_list* list, voi argument
85 list_free(struct objc_list* list) argument
[all...]
/netbsd-current/external/gpl3/gcc/dist/libobjc/objc-private/
H A Dobjc-list.h1 /* Generic single linked list to keep various information
50 list_remove_head (struct objc_list** list) argument
52 if ((*list)->tail)
55 struct objc_list* tail = (*list)->tail;
57 /* Copy next to list head. */
58 *(*list) = *tail;
65 /* Inly one element in list. */
66 objc_free (*list);
67 (*list) = 0;
74 list_mapcar (struct objc_list* list, voi argument
85 list_free(struct objc_list* list) argument
[all...]
/netbsd-current/external/ibm-public/postfix/dist/src/util/
H A Dinet_addr_list.c7 /* internet address list manager
11 /* void inet_addr_list_init(list)
12 /* INET_ADDR_LIST *list;
14 /* void inet_addr_list_append(list,addr)
15 /* INET_ADDR_LIST *list;
18 /* void inet_addr_list_uniq(list)
19 /* INET_ADDR_LIST *list;
21 /* void inet_addr_list_free(list)
22 /* INET_ADDR_LIST *list;
31 /* the specified list, extendin
68 inet_addr_list_init(INET_ADDR_LIST *list) argument
82 inet_addr_list_append(INET_ADDR_LIST *list, struct sockaddr *addr) argument
116 inet_addr_list_uniq(INET_ADDR_LIST *list) argument
144 inet_addr_list_free(INET_ADDR_LIST *list) argument
157 inet_addr_list_print(INET_ADDR_LIST *list) argument
171 INET_ADDR_LIST list; local
[all...]
/netbsd-current/external/ibm-public/postfix/dist/src/global/
H A Drecipient_list.c35 /* void recipient_list_init(list, variant)
36 /* RECIPIENT_LIST *list;
39 /* void recipient_list_add(list, offset, dsn_orcpt, dsn_notify,
41 /* RECIPIENT_LIST *list;
52 /* void recipient_list_free(list)
53 /* RECIPIENT_LIST *list;
71 /* recipient_list_init() creates an empty recipient structure list.
72 /* The list argument is initialized such that it can be given to
74 /* argument specifies how list elements should be initialized;
78 /* recipient_list_add() adds a recipient to the specified list
131 recipient_list_init(RECIPIENT_LIST *list, int variant) argument
141 recipient_list_add(RECIPIENT_LIST *list, long offset, const char *dsn_orcpt, int dsn_notify, const char *orig_rcpt, const char *rcpt) argument
183 recipient_list_free(RECIPIENT_LIST *list) argument
[all...]
/netbsd-current/external/bsd/unbound/dist/services/
H A Doutbound_list.c2 * services/outbound_list.c - keep list of outbound serviced queries.
13 * this list of conditions and the following disclaimer.
16 * this list of conditions and the following disclaimer in the documentation
48 outbound_list_init(struct outbound_list* list) argument
50 list->first = NULL;
54 outbound_list_clear(struct outbound_list* list) argument
57 p = list->first;
64 outbound_list_init(list);
68 outbound_list_insert(struct outbound_list* list, struct outbound_entry* e) argument
70 if(list
78 outbound_list_remove(struct outbound_list* list, struct outbound_entry* e) argument
[all...]
/netbsd-current/external/bsd/wpa/dist/src/utils/
H A Dlist.h2 * Doubly-linked list
13 * struct dl_list - Doubly-linked list
22 static inline void dl_list_init(struct dl_list *list) argument
24 list->next = list;
25 list->prev = list;
28 static inline void dl_list_add(struct dl_list *list, struct dl_list *item) argument
30 item->next = list->next;
31 item->prev = list;
36 dl_list_add_tail(struct dl_list *list, struct dl_list *item) argument
49 dl_list_empty(struct dl_list *list) argument
54 dl_list_len(struct dl_list *list) argument
[all...]
/netbsd-current/external/gpl3/gcc/dist/libgomp/
H A Derror.c41 gomp_vdebug (int kind __attribute__ ((unused)), const char *msg, va_list list) argument
44 vfprintf (stderr, msg, list);
51 va_list list; local
53 va_start (list, msg);
54 gomp_vdebug (kind, msg, list);
55 va_end (list);
59 gomp_verror (const char *fmt, va_list list) argument
62 vfprintf (stderr, fmt, list);
69 va_list list; local
71 va_start (list, fm
77 gomp_vfatal(const char *fmt, va_list list) argument
86 va_list list; local
[all...]
/netbsd-current/external/mit/isl/dist/
H A Dset_list_from_map_list_inl.c3 /* Return the set list that was treated as the map list "list".
6 __isl_take isl_map_list *list)
8 return (isl_set_list *) list;
5 set_list_from_map_list( __isl_take isl_map_list *list) argument
H A Disl_list_read_templ.c13 /* Read a list of elements of type EL from "s".
17 * the entire list is surrounded by parentheses.
22 LIST(EL) *list;
27 list = FN(LIST(EL),alloc)(ctx, 0);
28 if (!list)
31 return FN(LIST(EL),free)(list);
33 return list;
38 list = FN(LIST(EL),add)(list, el);
39 if (!list)
[all...]
/netbsd-current/external/gpl2/groff/dist/src/preproc/eqn/
H A Dlist.cpp1 /* $NetBSD: list.cpp,v 1.1.1.1 2016/01/13 18:41:49 christos Exp $ */
40 list.append(pp);
42 for (int i = 0; i < q->list.len; i++) {
43 list.append(q->list.p[i]);
44 q->list.p[i] = 0;
46 q->list.len = 0;
51 list_box::list_box(box *pp) : list(pp), sty(-1)
56 list.p[0] = q->list
[all...]
/netbsd-current/external/bsd/openldap/dist/contrib/ldapc++/src/
H A DSaslInteractionHandler.h11 #include <list>
17 virtual void handleInteractions( const std::list<SaslInteraction*> &cb )=0;
23 virtual void handleInteractions( const std::list<SaslInteraction*> &cb );
27 std::list<SaslInteraction*> cleanupList;
/netbsd-current/sys/external/bsd/drm2/dist/include/drm/ttm/
H A Dttm_execbuf_util.h36 #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 o
[all...]
/netbsd-current/sys/external/bsd/drm2/include/linux/
H A Drculist.h11 * 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>
/netbsd-current/external/mpl/bind/dist/contrib/dlz/modules/include/
H A Ddlz_list.h27 #define DLZ_LIST_INIT(list) \
29 (list).head = NULL; \
30 (list).tail = NULL; \
43 #define DLZ_LIST_HEAD(list) ((list).head)
44 #define DLZ_LIST_TAIL(list) ((list).tail)
46 #define DLZ_LIST_APPEND(list, elt, link) \
48 if ((list).tail != NULL) \
49 (list)
[all...]
/netbsd-current/external/bsd/ntp/dist/lib/isc/include/isc/
H A Dlist.h1 /* $NetBSD: list.h,v 1.5 2020/05/25 20:47:21 christos Exp $ */
34 #define ISC_LIST_INIT(list) \
35 do { (list).head = NULL; (list).tail = NULL; } while (0)
47 #define ISC_LIST_HEAD(list) ((list).head)
48 #define ISC_LIST_TAIL(list) ((list).tail)
49 #define ISC_LIST_EMPTY(list) ISC_TF((list)
[all...]
/netbsd-current/external/cddl/osnet/dist/uts/common/os/
H A Dlist.c29 * Generic doubly-linked list implementation
32 #include <sys/list.h>
46 #define list_insert_after_node(list, node, object) { \
47 list_node_t *lnew = list_d2l(list, object); \
54 #define list_insert_before_node(list, node, object) { \
55 list_node_t *lnew = list_d2l(list, object); \
68 list_create(list_t *list, size_t size, size_t offset) argument
70 ASSERT(list);
74 list->list_size = size;
75 list
81 list_destroy(list_t *list) argument
93 list_insert_after(list_t *list, void *object, void *nobject) argument
104 list_insert_before(list_t *list, void *object, void *nobject) argument
115 list_insert_head(list_t *list, void *object) argument
122 list_insert_tail(list_t *list, void *object) argument
129 list_remove(list_t *list, void *object) argument
138 list_remove_head(list_t *list) argument
148 list_remove_tail(list_t *list) argument
158 list_head(list_t *list) argument
166 list_tail(list_t *list) argument
174 list_next(list_t *list, void *object) argument
185 list_prev(list_t *list, void *object) argument
246 list_is_empty(list_t *list) argument
[all...]
/netbsd-current/external/gpl2/gettext/dist/gettext-tools/src/
H A Dformat-lisp.c40 #define VERIFY_LIST(list) verify_list (list)
47 argument list. It is a recursive list structure. Structure sharing
52 FCT_REQUIRED, /* The format argument list cannot end before this argument. */
53 FCT_OPTIONAL /* The format argument list may end before this argument. */
75 enum format_cdr_type presence; /* Can the argument list end right before
78 struct format_arg_list *list; /* For FAT_LIST: List elements. */ member in struct:format_arg
83 /* The constraints for the potentially infinite argument list are assumed
108 struct format_arg_list *list; member in struct:spec
160 verify_list(const struct format_arg_list *list) argument
200 free_list(struct format_arg_list *list) argument
233 copy_list(const struct format_arg_list *list) argument
343 ensure_initial_alloc(struct format_arg_list *list, unsigned int newcount) argument
358 grow_initial_alloc(struct format_arg_list *list) argument
373 ensure_repeated_alloc(struct format_arg_list *list, unsigned int newcount) argument
388 grow_repeated_alloc(struct format_arg_list *list) argument
408 normalize_outermost_list(struct format_arg_list *list) argument
564 normalize_list(struct format_arg_list *list) argument
598 struct format_arg_list *list; local
625 struct format_arg_list *list; local
646 is_empty_list(const struct format_arg_list *list) argument
658 unfold_loop(struct format_arg_list *list, unsigned int m) argument
679 rotate_loop(struct format_arg_list *list, unsigned int m) argument
788 initial_splitelement(struct format_arg_list *list, unsigned int n) argument
836 initial_unshare(struct format_arg_list *list, unsigned int n) argument
918 shift_list(struct format_arg_list *list, unsigned int n) argument
1050 append_repeated_to_initial(struct format_arg_list *list) argument
1079 backtrack_in_initial(struct format_arg_list *list) argument
1328 make_intersection_with_empty_list(struct format_arg_list *list) argument
1757 make_union_with_empty_list(struct format_arg_list *list) argument
1816 is_required(const struct format_arg_list *list, unsigned int n) argument
1874 add_required_constraint(struct format_arg_list *list, unsigned int n) argument
1911 add_end_constraint(struct format_arg_list *list, unsigned int n) argument
1959 add_type_constraint(struct format_arg_list *list, unsigned int n, enum format_arg_type type) argument
1994 add_listtype_constraint(struct format_arg_list *list, unsigned int n, enum format_arg_type type, struct format_arg_list *sublist) argument
2099 struct format_arg_list *list; local
2462 struct format_arg_list *list = *listp; local
3444 print_list(struct format_arg_list *list) argument
[all...]

Completed in 449 milliseconds

1234567891011>>