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

123456

/haiku-buildtools/gcc/gcc/testsuite/g++.dg/init/
H A Darray16.C16 struct elt struct
19 static elt*ptr;
23 elt ();
24 ~elt ();
28 int elt::count;
29 elt *elt::ptr;
30 int elt::abort;
32 elt::elt () function in class:elt
[all...]
H A Darray25.C5 struct elt struct
11 void elt::f() { }
14 elt buffer[500];
36 char heap[sizeof(elt[500])];
/haiku-buildtools/gcc/gcc/config/nds32/
H A Dnds32-predicates.c101 rtx elt; local
108 elt = XVECEXP (op, 0, i + par_index);
111 if (GET_CODE (elt) != SET)
115 elt_reg = load_p ? SET_DEST (elt) : SET_SRC (elt);
116 elt_mem = load_p ? SET_SRC (elt) : SET_DEST (elt);
152 rtx elt; local
157 elt = XVECEXP (op, 0, 0);
160 if (GET_CODE (elt) !
211 rtx elt; local
[all...]
/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/tree-ssa/
H A D20040326-1.c12 int table, c, elt; local
13 int tem = Faref (table, elt);
14 Faset (table, elt, c);
15 Faset (table, c, tem);/* tem cannot be replaced with Faref (table, elt) */
21 int __attribute__ ((noinline)) Faref (table, elt)
27 int __attribute__ ((noinline)) Faset (table, elt, c)
H A Dvrp88.c19 const bitmap_element *elt; local
23 elt = a->first;
24 if (elt->next != ((void *)0))
28 count += __builtin_popcountl (elt->bits[ix]);
H A Dpr20701.c18 can_combine_p (rtx insn, rtx elt) argument
27 set = elt;
/haiku-buildtools/gcc/libstdc++-v3/src/c++11/
H A Dcondition_variable.cc90 auto elt = (__at_thread_exit_elt*)p; local
91 while (elt)
93 auto next = elt->_M_next;
94 elt->_M_cb(elt);
95 elt = next;
101 auto elt = (__at_thread_exit_elt*)__gthread_getspecific(key); local
103 run(elt);
140 __at_thread_exit(__at_thread_exit_elt* elt) argument
145 elt
[all...]
/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/
H A Dalias-10.c19 void foo (bitmap head, bitmap_element *elt) argument
26 bitmap_free = elt;
/haiku-buildtools/gcc/libstdc++-v3/libsupc++/
H A Datexit_thread.cc49 struct elt struct in namespace:__anon2394
53 elt *next;
62 elt *single_thread;
67 elt *e = static_cast<elt*>(p);
70 elt *old_e = e;
136 elt *first;
138 first = static_cast<elt*>(__gthread_getspecific (key));
142 elt *new_elt = new (std::nothrow) elt;
[all...]
/haiku-buildtools/gcc/gcc/testsuite/gcc.c-torture/execute/
H A Dpr34456.c6 struct s { int elt; int (*compare) (int); }; member in struct:s
16 elt2 = s2->elt;
17 if (elt2 != 0 && debug () && compare1 (s1->elt) != 0)
H A D20000815-1.c58 struct table_elt elt; local
60 __builtin_memset(&elt, 0, sizeof(elt));
61 elt.in_memory = 1;
62 table[0] = &elt;
/haiku-buildtools/gcc/gcc/config/
H A Dvxworks.c115 constructor_elt elt = {field, fold_convert (TREE_TYPE (field), tmpl_addr)}; local
116 v->quick_push (elt);
119 elt.index = field;
120 elt.value = build_int_cst (TREE_TYPE (field), 0);
121 v->quick_push (elt);
124 elt.index = field;
125 elt.value = fold_convert (TREE_TYPE (field), DECL_SIZE_UNIT (decl));
126 v->quick_push (elt);
/haiku-buildtools/cloog/osl/source/
H A Drelation_list.c117 osl_relation_idump(file, l->elt, level+1);
170 if (head->elt != NULL) {
171 osl_relation_pprint(file, head->elt, names);
253 list->elt = osl_relation_pread(file, precision);
293 res->elt = NULL;
314 if (list->elt != NULL)
315 osl_relation_free(list->elt);
341 new->elt = osl_relation_clone(r);
361 node->elt = osl_relation_clone(list->elt);
[all...]
/haiku-buildtools/binutils/binutils/
H A Dbinemul.c67 bfd *elt; local
70 for (elt = bfd_openr_next_archived_file (new_bfd, NULL);
71 elt;
72 elt = bfd_openr_next_archived_file (new_bfd, elt))
74 if (do_ar_emul_append (after_bfd, elt, verbose, TRUE, check))
/haiku-buildtools/gcc/gcc/
H A Dbitmap.c156 bitmap_elem_to_freelist (bitmap head, bitmap_element *elt)
160 elt->next = NULL;
163 elt->prev = bit_obstack->elements;
164 bit_obstack->elements = elt;
168 elt->prev = bitmap_ggc_free;
169 bitmap_ggc_free = elt;
177 bitmap_element_free (bitmap head, bitmap_element *elt)
179 bitmap_element *next = elt->next;
180 bitmap_element *prev = elt->prev;
188 if (head->first == elt)
155 bitmap_elem_to_freelist(bitmap head, bitmap_element *elt) argument
176 bitmap_element_free(bitmap head, bitmap_element *elt) argument
262 bitmap_elt_clear_from(bitmap head, bitmap_element *elt) argument
497 bitmap_elt_insert_after(bitmap head, bitmap_element *elt, unsigned int indx) argument
736 const bitmap_element *elt; local
762 const bitmap_element *elt; local
797 const bitmap_element *elt = a->first; local
848 const bitmap_element *elt = a->current ? a->current : a->first; local
1209 bitmap_element *elt, *elt_prev; local
1309 bitmap_element *elt; local
[all...]
H A Dtree-affine.c101 aff_combination_elt (aff_tree *comb, tree type, tree elt) argument
106 comb->elts[0].val = elt;
163 aff_combination_add_elt (aff_tree *comb, tree elt, const widest_int &scale_in) argument
173 if (operand_equal_p (comb->elts[i].val, elt, 0))
199 comb->elts[comb->n].val = elt;
209 elt = fold_convert (type, elt);
211 elt = fold_build2 (MULT_EXPR, type,
212 fold_convert (type, elt),
217 elt);
410 add_elt_to_tree(tree expr, tree type, tree elt, const widest_int &scale_in, aff_tree *comb ATTRIBUTE_UNUSED) argument
853 struct aff_comb_elt *elt local
[all...]
H A Dcse.c666 struct table_elt *elt;
672 for (elt = classp->first_same_value; elt; elt = elt->next_same_value)
674 print_rtl (stderr, elt->exp);
1247 struct table_elt *elt;
1254 elt = lookup (anchor_exp, hash, mode);
1255 if (!elt)
1256 elt
664 struct table_elt *elt; local
1243 struct table_elt *elt; local
1301 struct table_elt *elt; local
1395 remove_from_table(struct table_elt *elt, unsigned int hash) argument
1473 struct table_elt *elt; local
1582 struct table_elt *elt; local
1764 struct table_elt *elt, *next, *new_elt; local
2164 use_related_value(rtx x, struct table_elt *elt) argument
2375 rtx elt; local
3845 struct table_elt *elt; local
4564 struct table_elt *elt = 0, *p; local
5572 struct table_elt *elt; local
5636 struct table_elt *elt; local
5676 struct table_elt *elt; local
5816 struct table_elt *elt = sets[i].src_elt; local
5833 struct table_elt *elt; local
5912 struct table_elt *elt, *classp = 0; local
6897 rtx elt = XVECEXP (PATTERN (insn), 0, i); local
[all...]
H A Dtree-ssa-loop-ivcanon.c512 struct nb_iter_bound *elt; local
515 for (elt = loop->bounds; elt; elt = elt->next)
520 if (!elt->is_exit
521 && wi::ltu_p (elt->bound, npeeled))
523 gimple_stmt_iterator gsi = gsi_for_stmt (elt->stmt);
526 gimple_set_location (stmt, gimple_location (elt->stmt));
533 print_gimple_stmt (dump_file, elt
569 struct nb_iter_bound *elt; local
[all...]
H A Dwide-int-print.cc130 buf += sprintf (buf, "0x"HOST_WIDE_INT_PRINT_HEX_PURE, wi.elt (--i));
133 buf += sprintf (buf, HOST_WIDE_INT_PRINT_PADDED_HEX, wi.elt (i));
H A Dtree-emutls.c187 constructor_elt elt; local
191 elt.index = field;
192 elt.value = fold_convert (TREE_TYPE (field), DECL_SIZE_UNIT (decl));
193 v->quick_push (elt);
196 elt.index = field;
197 elt.value = build_int_cst (TREE_TYPE (field),
199 v->quick_push (elt);
202 elt.index = field;
203 elt.value = null_pointer_node;
204 v->quick_push (elt);
[all...]
/haiku-buildtools/gcc/gcc/cp/
H A Dexpr.c88 constructor_elt *elt; local
90 FOR_EACH_VEC_SAFE_ELT (CONSTRUCTOR_ELTS (cst), idx, elt)
91 elt->value = cplus_expand_constant (elt->value);
/haiku-buildtools/legacy/gcc/gcc/
H A Dcse.c708 struct table_elt *elt;
714 for (elt = classp->first_same_value; elt; elt = elt->next_same_value)
716 print_rtl (stderr, elt->exp);
1238 free_element (elt)
1239 struct table_elt *elt;
1241 elt->next_same_hash = free_element_chain;
1242 free_element_chain = elt;
707 struct table_elt *elt; local
1247 struct table_elt *elt = free_element_chain; local
1457 register struct table_elt *elt; local
1629 struct table_elt *elt, *next, *new; local
1745 struct table_elt *elt; local
2822 struct table_elt *elt; local
5145 struct table_elt *elt; local
5210 struct table_elt *elt; local
6055 struct table_elt *elt; local
6672 register struct table_elt *elt = 0, *p; local
7539 register struct table_elt *elt; local
7599 register struct table_elt *elt; local
7728 register struct table_elt *elt = sets[i].src_elt; local
7746 register struct table_elt *elt; local
7844 struct table_elt *elt, *classp = 0; local
9225 rtx elt = XVECEXP (PATTERN (insn), 0, i); local
[all...]
/haiku-buildtools/gcc/gcc/config/arm/
H A Dneon.ml351 let unsigned_of_elt elt =
352 elt_of_class_width Unsigned (elt_width elt)
354 let signed_of_elt elt =
355 elt_of_class_width Signed (elt_width elt)
358 let bits_of_elt elt =
359 elt_of_class_width Bits (elt_width elt)
378 let widen_elt elt =
379 let w = elt_width elt
380 and c = elt_class elt in
383 let narrow_elt elt
[all...]
H A Dneon-testgen.ml195 let rec analyze_shape_elt elt =
196 match elt with
201 | VecArray (1, elt) ->
202 let elt_regexp = analyze_shape_elt elt in
204 | VecArray (n, elt) ->
205 let elt_regexp = analyze_shape_elt elt in
209 | (PtrTo elt | CstPtrTo elt) ->
210 "\\\\\\[" ^ (analyze_shape_elt elt) ^ "\\(:\\[0-9\\]+\\)?\\\\\\]"
217 All (n, elt)
[all...]
/haiku-buildtools/legacy/gcc/gcc/config/a29k/
H A Da29k.c599 rtx elt = XVECEXP (op, 0, i + 2);
601 if (GET_CODE (elt) != SET
602 || GET_CODE (SET_DEST (elt)) != REG
603 || GET_MODE (SET_DEST (elt)) != SImode
604 || REGNO (SET_DEST (elt)) != dest_regno + i
605 || GET_CODE (SET_SRC (elt)) != MEM
606 || GET_MODE (SET_SRC (elt)) != SImode
607 || GET_CODE (XEXP (SET_SRC (elt), 0)) != PLUS
608 || ! rtx_equal_p (XEXP (XEXP (SET_SRC (elt), 0), 0), src_addr)
609 || GET_CODE (XEXP (XEXP (SET_SRC (elt),
592 rtx elt = XVECEXP (op, 0, i + 2); local
635 rtx elt = XVECEXP (op, 0, i + num_special); local
[all...]

Completed in 301 milliseconds

123456