Home
last modified time | relevance | path

Searched refs:elt (Results 1 – 25 of 156) sorted by relevance

1234567

/openbsd/usr.bin/dig/lib/isc/include/isc/
H A Dlist.h35 #define ISC_LINK_LINKED(elt, link) ((void *)((elt)->link.prev) != (void *)(-1)) argument
46 (list).tail = (elt); \
49 (list).head = (elt); \
68 (list).tail = (elt); \
82 (elt)->link.next->link.prev = (elt)->link.prev; \
88 (elt)->link.prev->link.next = (elt)->link.next; \
109 #define ISC_LIST_PREV(elt, link) ((elt)->link.prev) argument
110 #define ISC_LIST_NEXT(elt, link) ((elt)->link.next) argument
119 (elt)->link.prev->link.next = (elt); \
136 (elt)->link.next->link.prev = (elt); \
[all …]
H A Dutil.h97 #define INIT_LINK(elt, link) ISC_LINK_INIT(elt, link) argument
101 #define PREV(elt, link) ISC_LIST_PREV(elt, link) argument
102 #define NEXT(elt, link) ISC_LIST_NEXT(elt, link) argument
103 #define APPEND(list, elt, link) ISC_LIST_APPEND(list, elt, link) argument
104 #define PREPEND(list, elt, link) ISC_LIST_PREPEND(list, elt, link) argument
105 #define UNLINK(list, elt, link) ISC_LIST_UNLINK(list, elt, link) argument
106 #define ENQUEUE(list, elt, link) ISC_LIST_APPEND(list, elt, link) argument
107 #define DEQUEUE(list, elt, link) ISC_LIST_UNLINK(list, elt, link) argument
/openbsd/gnu/gcc/gcc/
H A Dtree-sra.c545 elt = *slot; in lookup_element()
548 *slot = elt = obstack_alloc (&sra_obstack, sizeof (*elt)); in lookup_element()
549 memset (elt, 0, sizeof (*elt)); in lookup_element()
580 return elt; in lookup_element()
640 if (elt) in maybe_lookup_element_for_expr()
1104 if (elt) in scan_function()
1182 elt->replacement = var = make_rename_temp (elt->type, "SR"); in instantiate_element()
1416 if (elt->n_uses == 0 && elt->n_copies == 0) in decide_block_copy()
1460 && elt->n_copies > elt->n_uses) in decide_block_copy()
1522 if (elt) in decide_instantiations()
[all …]
H A Dcse.c687 for (elt = classp->first_same_value; elt; elt = elt->next_same_value) in dump_class()
1366 if (elt->related_value != 0 && elt->related_value != elt) in remove_from_table()
1550 elt->first_same_value = elt; in insert()
1575 elt->first_same_value = elt; in insert()
1686 for (elt = class2; elt; elt = next) in merge_equiv_classes()
3278 for (elt = elt->first_same_value; elt; elt = elt->next_same_value) in fold_rtx_subreg()
3320 elt = elt->first_same_value; in fold_rtx_subreg()
3339 for (; elt; elt = elt->next_same_value) in fold_rtx_subreg()
3433 for (; elt; elt = elt->next_same_value) in fold_rtx_subreg()
4497 for (elt = elt->first_same_value; elt; elt = elt->next_same_value) in equiv_constant()
[all …]
H A Dbitmap.c54 elt->next = NULL; in bitmap_elem_to_freelist()
155 if (!elt) return; in bitmap_elt_clear_from()
157 prev = elt->prev; in bitmap_elt_clear_from()
361 if (!elt) in bitmap_elt_insert_after()
565 for (elt = a->first; elt; elt = elt->next) in bitmap_count_bits()
594 gcc_assert (elt); in bitmap_first_set_bit()
871 if (!elt) in bitmap_clear_range()
878 if (!elt) in bitmap_clear_range()
888 while (elt && (elt->indx <= last_index)) in bitmap_clear_range()
955 elt->bits[i] = 0; in bitmap_clear_range()
[all …]
H A Dtree-ssa-threadupdate.c250 struct redirection_data *elt; in lookup_redirection_data() local
255 elt->outgoing_edge = e; in lookup_redirection_data()
256 elt->dup_block = NULL; in lookup_redirection_data()
257 elt->do_not_duplicate = false; in lookup_redirection_data()
258 elt->incoming_edges = NULL; in lookup_redirection_data()
266 free (elt); in lookup_redirection_data()
274 *slot = (void *)elt; in lookup_redirection_data()
278 return elt; in lookup_redirection_data()
285 free (elt); in lookup_redirection_data()
297 elt->incoming_edges = el; in lookup_redirection_data()
[all …]
H A Dtree-nested.c316 field = elt ? elt->new : NULL; in lookup_field_for_decl()
501 field = elt ? elt->new : NULL; in lookup_tramp_for_decl()
875 elt = *slot; in get_nonlocal_debug_decl()
877 if (elt) in get_nonlocal_debug_decl()
922 elt = ggc_alloc (sizeof (*elt)); in get_nonlocal_debug_decl()
925 *slot = elt; in get_nonlocal_debug_decl()
1206 elt = *slot; in get_local_debug_decl()
1208 if (elt) in get_local_debug_decl()
1230 elt = ggc_alloc (sizeof (*elt)); in get_local_debug_decl()
1233 *slot = elt; in get_local_debug_decl()
[all …]
H A Dcselib.c145 el->elt = elt; in new_elt_list()
618 rtx elt; in cselib_hash_rtx() local
624 elt = CONST_VECTOR_ELT (x, i); in cselib_hash_rtx()
813 return l->elt; in cselib_lookup_mem()
846 if (l && l->elt == NULL) in cselib_subst_to_values()
850 return l->elt->u.val_rtx; in cselib_subst_to_values()
943 if (l && l->elt == NULL) in cselib_lookup()
947 return l->elt; in cselib_lookup()
1048 cselib_val *v = (*l)->elt; in cselib_invalidate_regno()
1069 (*l)->elt = NULL; in cselib_invalidate_regno()
[all …]
/openbsd/usr.bin/dig/lib/isc/
H A Dsymtab.c27 typedef struct elt { struct
85 elt_t *elt, *nelt; in isc_symtab_destroy() local
91 for (elt = HEAD(symtab->table[i]); elt != NULL; elt = nelt) { in isc_symtab_destroy()
95 elt->type, in isc_symtab_destroy()
98 free(elt); in isc_symtab_destroy()
153 elt_t *elt; in isc_symtab_lookup() local
159 if (elt == NULL) in isc_symtab_lookup()
189 for (elt = HEAD(symtab->table[i]); elt != NULL; elt = nelt) { in grow_table()
212 elt_t *elt; in isc_symtab_define() local
225 (symtab->undefine_action)(elt->key, elt->type, in isc_symtab_define()
[all …]
H A Dheap.c127 float_up(isc_heap_t *heap, unsigned int i, void *elt) { in float_up() argument
131 i > 1 && heap->compare(elt, heap->array[p]) ; in float_up()
137 heap->array[i] = elt; in float_up()
155 if (heap->compare(elt, heap->array[j])) in sink_down()
162 heap->array[i] = elt; in sink_down()
170 isc_heap_insert(isc_heap_t *heap, void *elt) { in isc_heap_insert() argument
179 float_up(heap, new_last, elt); in isc_heap_insert()
186 void *elt; in isc_heap_delete() local
197 elt = heap->array[heap->last]; in isc_heap_delete()
201 less = heap->compare(elt, heap->array[idx]); in isc_heap_delete()
[all …]
/openbsd/gnu/usr.bin/gcc/gcc/testsuite/g++.dg/init/
H A Darray16.C10 struct elt struct
13 static elt*ptr; argument
17 elt (); argument
18 ~elt ();
22 int elt::count;
23 elt *elt::ptr;
24 int elt::abort;
26 elt::elt () in elt() function
42 elt::~elt () in ~elt()
54 elt buffer[4111222];
[all …]
/openbsd/gnu/usr.bin/binutils/gdb/
H A Dexpprint.c759 int elt; in dump_raw_expression() local
771 for (elt = 0; elt < exp->nelts; elt++) in dump_raw_expression()
811 elt = dump_subexp_body (exp, stream, elt); in dump_subexp()
841 elt = dump_subexp (exp, stream, elt); in dump_subexp_body_standard()
877 elt = dump_subexp (exp, stream, elt); in dump_subexp_body_standard()
905 elt = dump_subexp (exp, stream, elt); in dump_subexp_body_standard()
962 elt = dump_subexp (exp, stream, elt); in dump_subexp_body_standard()
977 elt = dump_subexp (exp, stream, elt); in dump_subexp_body_standard()
987 elt = dump_subexp (exp, stream, elt + 2); in dump_subexp_body_standard()
1066 for (elt = 0; elt < exp->nelts;) in dump_prefix_expression()
[all …]
/openbsd/sys/uvm/
H A Duvm_aobj.c214 return elt; in uao_find_swhash_elt()
232 if (elt == NULL) in uao_find_swhash_elt()
237 return elt; in uao_find_swhash_elt()
263 if (elt) in uao_find_swslot()
315 if (elt == NULL) { in uao_set_swslot()
329 elt->count++; in uao_set_swslot()
332 elt->count--; in uao_set_swslot()
472 elt->count--; in uao_shrink_convert()
631 elt->count++; in uao_grow_convert()
1336 elt = LIST_NEXT(elt, list)) { in uao_pagein()
[all …]
/openbsd/usr.sbin/nsd/
H A Dnetio.c41 netio_handler_list_type *elt; in netio_add_handler() local
51 elt = netio->deallocated; in netio_add_handler()
52 netio->deallocated = elt->next; in netio_add_handler()
61 elt->next = netio->handlers; in netio_add_handler()
62 elt->handler = handler; in netio_add_handler()
63 elt->handler->pfd = -1; in netio_add_handler()
64 netio->handlers = elt; in netio_add_handler()
116 netio_handler_list_type *elt; in netio_dispatch() local
144 for (elt = netio->handlers; elt; elt = elt->next) { in netio_dispatch()
232 for (elt = netio->handlers; elt && rc; ) { in netio_dispatch()
[all …]
/openbsd/gnu/usr.bin/texinfo/makeinfo/
H A Dxml.c786 int elt; in xml_insert_element_with_attribute()
814 if (elt < 0)
849 switch (elt)
874 if (!xml_element_list[elt].name || !strlen (xml_element_list[elt].name))
892 && arg == START && elt != TABLEITEM && elt != TABLETERM
910 && (xml_element_list[elt].keep_space || elt == GROUP)
928 if (arg == END && (elt == MENUENTRY || elt == ITEMIZE || elt == ENUMERATE
929 || elt == TABLEITEM || elt == TABLE
930 || elt == MULTITABLE || elt == TGROUP || elt == THEAD || elt == TBODY
931 || elt == ROW || elt == INFORMALFIGURE
[all …]
/openbsd/gnu/usr.bin/gcc/gcc/
H A Dcse.c721 for (elt = classp->first_same_value; elt; elt = elt->next_same_value)
1431 if (elt->related_value != 0 && elt->related_value != elt)
1634 elt->first_same_value = elt;
1659 elt->first_same_value = elt;
1769 for (elt = class2; elt; elt = next)
2982 for (elt = elt->first_same_value; elt; elt = elt->next_same_value)
3430 for (elt = elt->first_same_value; elt; elt = elt->next_same_value)
3492 for (; elt; elt = elt->next_same_value)
4430 for (elt = elt->first_same_value; elt; elt = elt->next_same_value)
5420 elt = elt->first_same_value;
[all …]
H A Dbitmap.c56 bitmap_elem_to_freelist (head, elt) in bitmap_elem_to_freelist() argument
58 bitmap_element *elt;
62 elt->next = bitmap_free;
63 bitmap_free = elt;
67 elt->next = bitmap_ggc_free;
68 bitmap_ggc_free = elt;
76 bitmap_element_free (head, elt) in bitmap_element_free() argument
78 bitmap_element *elt;
80 bitmap_element *next = elt->next;
89 if (head->first == elt)
[all …]
/openbsd/gnu/gcc/gcc/config/arm/
H A Dpredicates.md279 rtx elt;
292 if (GET_CODE (SET_DEST (elt)) != REG
311 elt = XVECEXP (op, 0, i);
313 if (GET_CODE (elt) != SET
314 || GET_CODE (SET_DEST (elt)) != REG
317 || GET_CODE (SET_SRC (elt)) != MEM
336 rtx elt;
349 if (GET_CODE (SET_DEST (elt)) != REG
368 elt = XVECEXP (op, 0, i);
370 if (GET_CODE (elt) != SET
[all …]
/openbsd/gnu/gcc/gcc/config/rs6000/
H A Dpredicates.md843 if (GET_CODE (elt) != SET
883 if (GET_CODE (elt) != SET
906 rtx elt;
920 if (GET_CODE (elt) != SET
931 if (GET_CODE (elt) != SET
941 if (GET_CODE (elt) != SET
950 if (GET_CODE (elt) != SET
972 rtx elt;
986 if (GET_CODE (elt) != SET
997 if (GET_CODE (elt) != SET
[all …]
/openbsd/gnu/gcc/gcc/config/mcore/
H A Dpredicates.md269 rtx elt = XVECEXP (op, 0, i);
271 if (GET_CODE (elt) != SET
272 || GET_CODE (SET_DEST (elt)) != REG
273 || GET_MODE (SET_DEST (elt)) != SImode
275 || GET_CODE (SET_SRC (elt)) != MEM
276 || GET_MODE (SET_SRC (elt)) != SImode
309 rtx elt = XVECEXP (op, 0, i);
311 if (GET_CODE (elt) != SET
312 || GET_CODE (SET_SRC (elt)) != REG
313 || GET_MODE (SET_SRC (elt)) != SImode
[all …]
/openbsd/usr.bin/dig/lib/isccfg/
H A Dparser.c538 elt = malloc(sizeof(*elt)); in create_listelt()
539 if (elt == NULL) in create_listelt()
541 elt->obj = NULL; in create_listelt()
543 *eltp = elt; in create_listelt()
550 free(elt); in free_list_elt()
557 elt != NULL; in free_list()
558 elt = next) in free_list()
583 elt->obj = value; in cfg_parse_listelt()
585 *ret = elt; in cfg_parse_listelt()
589 free(elt); in cfg_parse_listelt()
[all …]
/openbsd/gnu/gcc/gcc/config/s390/
H A Dpredicates.md305 rtx elt = XVECEXP (op, 0, i);
307 if (GET_CODE (elt) != SET
308 || GET_CODE (SET_DEST (elt)) != REG
309 || GET_MODE (SET_DEST (elt)) != elt_mode
311 || GET_CODE (SET_SRC (elt)) != MEM
312 || GET_MODE (SET_SRC (elt)) != elt_mode
363 rtx elt = XVECEXP (op, 0, i);
365 if (GET_CODE (elt) != SET
366 || GET_CODE (SET_SRC (elt)) != REG
367 || GET_MODE (SET_SRC (elt)) != elt_mode
[all …]
/openbsd/gnu/usr.bin/gcc/gcc/config/mn10300/
H A Dmn10300.c672 rtx elt; local
679 elt = XVECEXP (op, 0, 0);
680 if (GET_CODE (elt) != SET
690 elt = SET_SRC (elt);
691 if (GET_CODE (XEXP (elt, 0)) != REG
709 elt = XVECEXP (op, 0, i);
710 if (GET_CODE (elt) != SET
713 || REGNO (SET_SRC (elt)) >= last)
718 last = REGNO (SET_SRC (elt));
722 elt = XEXP (SET_DEST (elt), 0);
[all …]
/openbsd/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/execute/
H A D20000815-1.c58 struct table_elt elt; in main() local
60 __builtin_memset(&elt, 0, sizeof(elt)); in main()
61 elt.in_memory = 1; in main()
62 table[0] = &elt; in main()
/openbsd/regress/lib/libcrypto/bn/
H A Dbn_mod_inverse.c279 BIGNUM *i, *a, *m, *inv, *elt, *mod; in bn_mod_inverse_test() local
293 if ((elt = BN_CTX_get(ctx)) == NULL) in bn_mod_inverse_test()
302 BN_set_flags(elt, flags); in bn_mod_inverse_test()
312 if (BN_copy(elt, a) == NULL) in bn_mod_inverse_test()
317 if (BN_mod_inverse(inv, elt, mod, ctx) == NULL) in bn_mod_inverse_test()
326 if (BN_copy(elt, a) == NULL) in bn_mod_inverse_test()
331 if (BN_mod_inverse(inv, elt, inv, ctx) == NULL) in bn_mod_inverse_test()

1234567