Searched refs:elt (Results 1 - 25 of 90) sorted by relevance

1234

/freebsd-9.3-release/lib/libc/include/isc/
H A Dlist.h34 #define INIT_LINK_TYPE(elt, link, type) \
36 (elt)->link.prev = (type *)(-1); \
37 (elt)->link.next = (type *)(-1); \
39 #define INIT_LINK(elt, link) \
40 INIT_LINK_TYPE(elt, link, void)
41 #define LINKED(elt, link) ((void *)((elt)->link.prev) != (void *)(-1))
47 #define PREPEND(list, elt, link) \
49 INSIST(!LINKED(elt, link));\
51 (list).head->link.prev = (elt); \
[all...]
/freebsd-9.3-release/contrib/bind9/lib/isc/include/isc/
H A Dlist.h36 #define ISC_LINK_INIT_TYPE(elt, link, type) \
38 (elt)->link.prev = (type *)(-1); \
39 (elt)->link.next = (type *)(-1); \
41 #define ISC_LINK_INIT(elt, link) \
42 ISC_LINK_INIT_TYPE(elt, link, void)
43 #define ISC_LINK_LINKED(elt, link) ((void *)((elt)->link.prev) != (void *)(-1))
49 #define __ISC_LIST_PREPENDUNSAFE(list, elt, link) \
52 (list).head->link.prev = (elt); \
54 (list).tail = (elt); \
[all...]
H A Dqueue.h42 #define ISC_QLINK_INIT(elt, link) \
44 (elt)->link.next = (elt)->link.prev = (void *)(-1); \
47 #define ISC_QLINK_LINKED(elt, link) ((void*)(elt)->link.next != (void*)(-1))
96 #define ISC_QUEUE_PUSH(queue, elt, link) \
99 ISC_QLINK_INSIST(!ISC_QLINK_LINKED(elt, link)); \
111 (elt)->link.prev = (queue).tail; \
112 (elt)->link.next = NULL; \
114 (queue).tail->link.next = (elt); \
[all...]
H A Dutil.h192 #define INIT_LINK(elt, link) ISC_LINK_INIT(elt, link)
196 #define PREV(elt, link) ISC_LIST_PREV(elt, link)
197 #define NEXT(elt, link) ISC_LIST_NEXT(elt, link)
198 #define APPEND(list, elt, link) ISC_LIST_APPEND(list, elt, link)
199 #define PREPEND(list, elt, link) ISC_LIST_PREPEND(list, elt, lin
[all...]
/freebsd-9.3-release/contrib/ntp/lib/isc/include/isc/
H A Dlist.h36 #define ISC_LINK_INIT_TYPE(elt, link, type) \
38 (elt)->link.prev = (type *)(-1); \
39 (elt)->link.next = (type *)(-1); \
41 #define ISC_LINK_INIT(elt, link) \
42 ISC_LINK_INIT_TYPE(elt, link, void)
43 #define ISC_LINK_LINKED(elt, link) ((void *)((elt)->link.prev) != (void *)(-1))
49 #define __ISC_LIST_PREPENDUNSAFE(list, elt, link) \
52 (list).head->link.prev = (elt); \
54 (list).tail = (elt); \
[all...]
H A Dqueue.h38 #define ISC_QLINK_INIT(elt, link) \
40 (elt)->link.next = (void *)(-1); \
41 (elt)->link.linked = ISC_FALSE; \
43 #define ISC_QLINK_LINKED(elt, link) ((elt)->link.linked)
69 #define ISC_QUEUE_PUSH(queue, elt, link) \
71 ISC_QLINK_INSIST(!ISC_QLINK_LINKED(elt, link)); \
72 (elt)->link.next = (void *)(-1); \
74 (queue).tail->link.next = elt; \
75 (queue).tail = elt; \
[all...]
H A Dutil.h192 #define INIT_LINK(elt, link) ISC_LINK_INIT(elt, link)
196 #define PREV(elt, link) ISC_LIST_PREV(elt, link)
197 #define NEXT(elt, link) ISC_LIST_NEXT(elt, link)
198 #define APPEND(list, elt, link) ISC_LIST_APPEND(list, elt, link)
199 #define PREPEND(list, elt, link) ISC_LIST_PREPEND(list, elt, lin
[all...]
/freebsd-9.3-release/contrib/bind9/lib/lwres/include/lwres/
H A Dlist.h30 #define LWRES_LINK_INIT(elt, link) \
32 (elt)->link.prev = (void *)(-1); \
33 (elt)->link.next = (void *)(-1); \
35 #define LWRES_LINK_LINKED(elt, link) \
36 ((void *)((elt)->link.prev) != (void *)(-1))
42 #define LWRES_LIST_PREPEND(list, elt, link) \
45 (list).head->link.prev = (elt); \
47 (list).tail = (elt); \
48 (elt)->link.prev = NULL; \
49 (elt)
[all...]
/freebsd-9.3-release/contrib/bind9/bin/named/
H A Dlistenlist.c38 ns_listenelt_t *elt = NULL; local
40 elt = isc_mem_get(mctx, sizeof(*elt));
41 if (elt == NULL)
43 elt->mctx = mctx;
44 ISC_LINK_INIT(elt, link);
45 elt->port = port;
46 elt->acl = acl;
47 *target = elt;
52 ns_listenelt_destroy(ns_listenelt_t *elt) { argument
74 ns_listenelt_t *elt, *next; local
108 ns_listenelt_t *elt = NULL; local
[all...]
/freebsd-9.3-release/contrib/libucl/src/
H A Ducl_hash.c41 ucl_hash_node_t *elt, *tmp; local
43 HASH_ITER (hh, hashlin->buckets, elt, tmp) {
44 HASH_DELETE (hh, hashlin->buckets, elt);
46 func (elt->data);
48 UCL_FREE (sizeof (ucl_hash_node_t), elt); local
66 ucl_hash_node_t *elt = *iter; local
68 if (elt == NULL) {
72 elt = hashlin->buckets;
73 if (elt == NULL) {
77 else if (elt
88 ucl_hash_node_t *elt = iter; local
[all...]
H A Ducl_util.c1032 ucl_object_insert_key_common (ucl_object_t *top, ucl_object_t *elt, argument
1039 if (elt == NULL || key == NULL) {
1069 elt->flags |= UCL_OBJECT_NEED_KEY_ESCAPE;
1074 elt->key = key;
1075 elt->keylen = keylen;
1078 ucl_copy_key_trash (elt);
1081 found = ucl_hash_search_obj (top->value.ov, elt);
1084 top->value.ov = ucl_hash_insert_object (top->value.ov, elt);
1085 DL_APPEND (found, elt);
1091 top->value.ov = ucl_hash_insert_object (top->value.ov, elt);
1151 ucl_object_insert_key(ucl_object_t *top, ucl_object_t *elt, const char *key, size_t keylen, bool copy_key) argument
1158 ucl_object_insert_key_merged(ucl_object_t *top, ucl_object_t *elt, const char *key, size_t keylen, bool copy_key) argument
1165 ucl_object_replace_key(ucl_object_t *top, ucl_object_t *elt, const char *key, size_t keylen, bool copy_key) argument
1208 ucl_object_t *elt; local
[all...]
/freebsd-9.3-release/contrib/bind9/lib/isccc/
H A Dsymtab.c49 typedef struct elt { struct
53 ISC_LINK(struct elt) link;
105 free_elt(isccc_symtab_t *symtab, unsigned int bucket, elt_t *elt) { argument
106 ISC_LIST_UNLINK(symtab->table[bucket], elt, link);
108 (symtab->undefine_action)(elt->key, elt->type, elt->value,
110 free(elt);
117 elt_t *elt, *nelt; local
124 for (elt
199 elt_t *elt; local
220 elt_t *elt; local
259 elt_t *elt; local
279 elt_t *elt, *nelt; local
[all...]
H A Dalist.c161 isccc_sexpr_t *kv, *k, *elt; local
176 elt = isccc_sexpr_addtolist(&alist, kv);
177 if (elt == NULL) {
274 isccc_sexpr_t *elt, *kv, *k, *v; local
279 for (elt = isccc_alist_first(sexpr);
280 elt != NULL;
281 elt = CDR(elt)) {
282 kv = CAR(elt);
290 if (CDR(elt) !
[all...]
/freebsd-9.3-release/contrib/bind9/lib/isc/
H A Dsymtab.c32 typedef struct elt { struct
36 LINK(struct elt) link;
102 elt_t *elt, *nelt; local
109 for (elt = HEAD(symtab->table[i]); elt != NULL; elt = nelt) {
110 nelt = NEXT(elt, link);
112 (symtab->undefine_action)(elt->key,
113 elt->type,
114 elt
174 elt_t *elt; local
209 elt_t *elt, *nelt; local
235 elt_t *elt; local
285 elt_t *elt; local
[all...]
H A Dheap.c146 float_up(isc_heap_t *heap, unsigned int i, void *elt) { argument
150 i > 1 && heap->compare(elt, heap->array[p]) ;
156 heap->array[i] = elt;
164 sink_down(isc_heap_t *heap, unsigned int i, void *elt) { argument
174 if (heap->compare(elt, heap->array[j]))
181 heap->array[i] = elt;
189 isc_heap_insert(isc_heap_t *heap, void *elt) { argument
200 float_up(heap, new_last, elt);
207 void *elt; local
217 elt
[all...]
/freebsd-9.3-release/contrib/ntp/lib/isc/
H A Dsymtab.c32 typedef struct elt { struct
36 LINK(struct elt) link;
100 elt_t *elt, *nelt; local
107 for (elt = HEAD(symtab->table[i]); elt != NULL; elt = nelt) {
108 nelt = NEXT(elt, link);
110 (symtab->undefine_action)(elt->key,
111 elt->type,
112 elt
172 elt_t *elt; local
207 elt_t *elt, *nelt; local
233 elt_t *elt; local
283 elt_t *elt; local
[all...]
H A Dheap.c146 float_up(isc_heap_t *heap, unsigned int i, void *elt) { argument
150 i > 1 && heap->compare(elt, heap->array[p]) ;
156 heap->array[i] = elt;
164 sink_down(isc_heap_t *heap, unsigned int i, void *elt) { argument
174 if (heap->compare(elt, heap->array[j]))
181 heap->array[i] = elt;
189 isc_heap_insert(isc_heap_t *heap, void *elt) { argument
200 float_up(heap, new_last, elt);
207 void *elt; local
217 elt
[all...]
/freebsd-9.3-release/contrib/libucl/include/
H A Ducl.h346 * Insert a object 'elt' to the hash 'top' and associate it with key 'key'
348 * @param elt element to insert (must NOT be NULL)
354 UCL_EXTERN ucl_object_t* ucl_object_insert_key (ucl_object_t *top, ucl_object_t *elt,
358 * Replace a object 'elt' to the hash 'top' and associate it with key 'key', old object will be unrefed,
361 * @param elt element to insert (must NOT be NULL)
367 UCL_EXTERN ucl_object_t* ucl_object_replace_key (ucl_object_t *top, ucl_object_t *elt,
386 * Insert a object 'elt' to the hash 'top' and associate it with key 'key', if the specified key exist,
389 * @param elt element to insert (must NOT be NULL)
395 UCL_EXTERN ucl_object_t* ucl_object_insert_key_merged (ucl_object_t *top, ucl_object_t *elt,
401 * @param elt elemen
407 ucl_array_append(ucl_object_t *top, ucl_object_t *elt) argument
449 ucl_array_prepend(ucl_object_t *top, ucl_object_t *elt) argument
490 ucl_array_delete(ucl_object_t *top, ucl_object_t *elt) argument
583 ucl_elt_append(ucl_object_t *head, ucl_object_t *elt) argument
[all...]
/freebsd-9.3-release/contrib/gcc/
H A Dtree-sra.c397 can_completely_scalarize_p (struct sra_elt *elt)
401 if (elt->cannot_scalarize)
404 for (c = elt->children; c; c = c->sibling)
408 for (c = elt->groups; c; c = c->sibling)
535 struct sra_elt *elt;
547 elt = *slot;
548 if (!elt && insert == INSERT)
550 *slot = elt = obstack_alloc (&sra_obstack, sizeof (*elt));
551 memset (elt,
396 can_completely_scalarize_p(struct sra_elt *elt) argument
533 struct sra_elt *elt; local
589 struct sra_elt *elt; local
731 struct sra_elt *elt = maybe_lookup_element_for_expr (expr); local
1035 scan_use(struct sra_elt *elt, tree *expr_p ATTRIBUTE_UNUSED, block_stmt_iterator *bsi ATTRIBUTE_UNUSED, bool is_output ATTRIBUTE_UNUSED, bool use_all ATTRIBUTE_UNUSED) argument
1058 scan_ldst(struct sra_elt *elt, tree other ATTRIBUTE_UNUSED, block_stmt_iterator *bsi ATTRIBUTE_UNUSED, bool is_output ATTRIBUTE_UNUSED) argument
1068 scan_dump(struct sra_elt *elt) argument
1103 struct sra_elt *elt = lookup_element (NULL, var, NULL, NO_INSERT); local
1118 build_element_name_1(struct sra_elt *elt) argument
1163 build_element_name(struct sra_elt *elt) argument
1173 instantiate_element(struct sra_elt *elt) argument
1228 decide_instantiation_1(struct sra_elt *elt, unsigned int parent_uses, unsigned int parent_copies) argument
1273 sum_instantiated_sizes(struct sra_elt *elt, unsigned HOST_WIDE_INT *sizep) argument
1298 instantiate_missing_elements_1(struct sra_elt *elt, tree child, tree type) argument
1311 instantiate_missing_elements(struct sra_elt *elt) argument
1377 decide_block_copy(struct sra_elt *elt) argument
1521 struct sra_elt *elt = lookup_element (NULL, var, NULL, NO_INSERT); local
1593 mark_no_warning(struct sra_elt *elt) argument
1612 generate_one_element_ref(struct sra_elt *elt, tree base) argument
1649 generate_element_ref(struct sra_elt *elt) argument
1671 generate_copy_inout(struct sra_elt *elt, bool copy_out, tree expr, tree *list_p) argument
1743 generate_element_zero(struct sra_elt *elt, tree *list_p) argument
1786 generate_element_init_1(struct sra_elt *elt, tree init, tree *list_p) argument
1866 generate_element_init(struct sra_elt *elt, tree init, tree *list_p) argument
1962 scalarize_use(struct sra_elt *elt, tree *expr_p, block_stmt_iterator *bsi, bool is_output, bool use_all) argument
2157 scalarize_ldst(struct sra_elt *elt, tree other, block_stmt_iterator *bsi, bool is_output) argument
2230 struct sra_elt *elt = lookup_element (NULL, var, NULL, NO_INSERT); local
2259 dump_sra_elt_name(FILE *f, struct sra_elt *elt) argument
2289 debug_sra_elt_name(struct sra_elt *elt) argument
[all...]
H A Dcse.c684 struct table_elt *elt;
690 for (elt = classp->first_same_value; elt; elt = elt->next_same_value)
692 print_rtl (stderr, elt->exp);
1314 remove_from_table (struct table_elt *elt, unsigned int hash)
1316 if (elt == 0)
1320 elt->first_same_value = 0;
1325 struct table_elt *prev = elt
682 struct table_elt *elt; local
1310 remove_from_table(struct table_elt *elt, unsigned int hash) argument
1390 struct table_elt *elt; local
1512 struct table_elt *elt; local
1690 struct table_elt *elt, *next, *new; local
2085 use_related_value(rtx x, struct table_elt *elt) argument
2283 rtx elt; local
2855 struct table_elt *elt; local
3282 struct table_elt *elt; local
3323 struct table_elt *elt; local
4497 struct table_elt *elt; local
5082 struct table_elt *elt = 0, *p; local
5976 struct table_elt *elt; local
6045 struct table_elt *elt; local
6082 struct table_elt *elt; local
6221 struct table_elt *elt = sets[i].src_elt; local
6238 struct table_elt *elt; local
6316 struct table_elt *elt, *classp = 0; local
7447 rtx elt = XVECEXP (PATTERN (insn), 0, i); local
[all...]
H A Dbitmap.c51 bitmap_elem_to_freelist (bitmap head, bitmap_element *elt)
55 elt->next = NULL;
58 elt->prev = bit_obstack->elements;
59 bit_obstack->elements = elt;
63 elt->prev = bitmap_ggc_free;
64 bitmap_ggc_free = elt;
72 bitmap_element_free (bitmap head, bitmap_element *elt)
74 bitmap_element *next = elt->next;
75 bitmap_element *prev = elt->prev;
83 if (head->first == elt)
50 bitmap_elem_to_freelist(bitmap head, bitmap_element *elt) argument
71 bitmap_element_free(bitmap head, bitmap_element *elt) argument
150 bitmap_elt_clear_from(bitmap head, bitmap_element *elt) argument
356 bitmap_elt_insert_after(bitmap head, bitmap_element *elt, unsigned int indx) argument
562 bitmap_element *elt; local
589 bitmap_element *elt = a->first; local
866 bitmap_element *elt = bitmap_find_bit (head, start); local
[all...]
/freebsd-9.3-release/contrib/groff/src/preproc/grn/
H A Dgprint.h80 #define DBNextElt(elt) (elt->nextelt)
81 #define DBNextofSet(elt) (elt->setnext)
82 #define DBNullelt(elt) (elt == NULL)
/freebsd-9.3-release/contrib/gdb/gdb/
H A Dexpprint.c759 int elt; local
771 for (elt = 0; elt < exp->nelts; elt++)
773 fprintf_filtered (stream, "\t%5d ", elt);
774 opcode_name = op_name (exp, exp->elts[elt].opcode);
777 print_longest (stream, 'd', 0, exp->elts[elt].longconst);
780 for (eltscan = (char *) &exp->elts[elt],
797 dump_subexp (struct expression *exp, struct ui_file *stream, int elt) argument
803 fprintf_filtered (stream, "\t%5d ", elt);
823 dump_subexp_body(struct expression *exp, struct ui_file *stream, int elt) argument
831 dump_subexp_body_standard(struct expression *exp, struct ui_file *stream, int elt) argument
1052 int elt; local
[all...]
/freebsd-9.3-release/contrib/texinfo/makeinfo/
H A Dxml.c666 xml_push_current_element (int elt)
668 element_stack[element_stack_index++] = elt;
672 xml_element_list[elt].name);
776 /* NOTE: We use `elt' rather than `element' in the argument list of
782 xml_insert_element_with_attribute (int elt, int arg, char *format, ...)
784 xml_insert_element_with_attribute (elt, arg, format, va_alist)
785 int elt;
801 (element_list->element_to_replace == elt) ) ||
804 (element_list->element_to_replace == elt) ) )
806 elt
664 xml_push_current_element(int elt) argument
780 xml_insert_element_with_attribute(int elt, int arg, char *format, ...) argument
988 xml_insert_element(int elt, int arg) argument
1348 xml_begin_docbook_float(int elt) argument
1641 int elt = xml_in_para ? INLINEIMAGE : MEDIAOBJECT; local
[all...]
/freebsd-9.3-release/contrib/bind9/lib/isccfg/
H A Daclconf.c107 const cfg_listelt_t *elt; local
112 for (elt = cfg_list_first(acls);
113 elt != NULL;
114 elt = cfg_list_next(elt)) {
115 const cfg_obj_t *acl = cfg_listelt_value(elt);
220 const cfg_listelt_t *elt; local
228 for (elt = cfg_list_first(caml);
229 elt != NULL;
230 elt
277 const cfg_listelt_t *elt; local
[all...]

Completed in 172 milliseconds

1234