Searched refs:dup (Results 1 - 25 of 75) sorted by relevance

123

/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/pch/include/
H A Dimport-2b.h1 int dup = 9; variable
/haiku-buildtools/binutils/gas/testsuite/gas/aarch64/
H A Dsve-dup.s0 dup z0.b, #-255
2 dup z0.b, #-129
3 dup z0.b, #-128
4 dup z0.b, #-127
5 dup z0.b, #-1
6 dup z0.b, #0
7 dup z0.b, #1
8 dup z0.b, #127
9 dup z0.b, #128
10 dup z
[all...]
H A Dlegacy_reg_names.s5 dup v0.b, v1.b[7]
7 dup s0, s1[3]
H A Dlegacy_reg_names.l2 [^:]*:5: Error: indexed vector register expected at operand 1 -- `dup v0.b,v1.b\[7\]'
4 [^:]*:7: Error: operand 2 must be a SIMD vector element -- `dup s0,s1\[3\]'
H A Dadvsisd-copy.s34 .irp op, dup, mov
H A Dsve-invalid.s635 dup z0.b, #-257
636 dup z0.b, #-256 // OK
637 dup z0.b, #255 // OK
638 dup z0.b, #256
639 dup z0.b, #1, lsl #1
640 dup z0.b, #0, lsl #8
641 dup z0.b, #1, lsl #8
643 dup z0.h, #-65537
644 dup z0.h, #-32767
645 dup z
[all...]
H A Dsve-invalid.l617 .*: Error: immediate too big for element size at operand 2 -- `dup z0\.b,#-257'
618 .*: Error: immediate too big for element size at operand 2 -- `dup z0\.b,#256'
619 .*: Error: no shift amount allowed for 8-bit constants at operand 2 -- `dup z0\.b,#1,lsl#1'
620 .*: Error: no shift amount allowed for 8-bit constants at operand 2 -- `dup z0\.b,#0,lsl#8'
621 .*: Error: no shift amount allowed for 8-bit constants at operand 2 -- `dup z0\.b,#1,lsl#8'
622 .*: Error: immediate too big for element size at operand 2 -- `dup z0\.h,#-65537'
623 .*: Error: invalid arithmetic immediate at operand 2 -- `dup z0\.h,#-32767'
624 .*: Error: invalid arithmetic immediate at operand 2 -- `dup z0\.h,#-32768\+255'
625 .*: Error: invalid arithmetic immediate at operand 2 -- `dup z0\.h,#-257'
626 .*: Error: invalid arithmetic immediate at operand 2 -- `dup z
[all...]
/haiku-buildtools/gcc/gcc/testsuite/gcc.c-torture/compile/
H A D991026-2.c10 extern int dup (int __fd) ;
27 dup(dup(open("/dev/null", 02 )));
/haiku-buildtools/gcc/gcc/testsuite/gcc.target/i386/
H A Dpr64291-1.c21 unsigned long *np, *dup, *dnp, *qp; local
32 dup = d->_mp_d;
33 f (dnp, dup, dn);
/haiku-buildtools/isl/
H A Disl_list_templ.h16 __isl_give LIST(EL) *FN(LIST(EL),dup)(__isl_keep LIST(EL) *list);
H A Disl_reordering.c43 isl_reordering *dup; local
48 dup = isl_reordering_alloc(r->dim->ctx, r->len);
49 if (!dup)
52 dup->dim = isl_space_copy(r->dim);
53 if (!dup->dim)
54 return isl_reordering_free(dup);
55 for (i = 0; i < dup->len; ++i)
56 dup->pos[i] = r->pos[i];
58 return dup;
H A Disl_ast.c39 isl_ast_print_options *dup; local
45 dup = isl_ast_print_options_alloc(ctx);
46 if (!dup)
49 dup->print_for = options->print_for;
50 dup->print_for_user = options->print_for_user;
51 dup->print_user = options->print_user;
52 dup->print_user_user = options->print_user_user;
54 return dup;
149 isl_ast_expr *dup; local
157 dup
671 isl_ast_node *dup; local
[all...]
H A Disl_ast_build.c158 isl_ast_build *dup; local
164 dup = isl_calloc_type(ctx, isl_ast_build);
165 if (!dup)
168 dup->ref = 1;
169 dup->outer_pos = build->outer_pos;
170 dup->depth = build->depth;
171 dup->iterators = isl_id_list_copy(build->iterators);
172 dup->domain = isl_set_copy(build->domain);
173 dup->generated = isl_set_copy(build->generated);
174 dup
[all...]
H A Disl_band.c47 isl_band *dup; local
53 dup = isl_band_alloc(ctx);
54 if (!dup)
57 dup->n = band->n;
58 dup->zero = isl_alloc_array(ctx, int, band->n);
59 if (band->n && !dup->zero)
63 dup->zero[i] = band->zero[i];
65 dup->pma = isl_union_pw_multi_aff_copy(band->pma);
66 dup->schedule = band->schedule;
67 dup
[all...]
H A Disl_tab.c227 struct isl_tab *dup; local
234 dup = isl_calloc_type(tab->mat->ctx, struct isl_tab);
235 if (!dup)
237 dup->mat = isl_mat_dup(tab->mat);
238 if (!dup->mat)
240 dup->var = isl_alloc_array(tab->mat->ctx, struct isl_tab_var, tab->max_var);
241 if (tab->max_var && !dup->var)
244 dup->var[i] = tab->var[i];
245 dup->con = isl_alloc_array(tab->mat->ctx, struct isl_tab_var, tab->max_con);
246 if (tab->max_con && !dup
[all...]
H A Disl_list_templ.c64 __isl_give LIST(EL) *FN(LIST(EL),dup)(__isl_keep LIST(EL) *list)
67 LIST(EL) *dup;
72 dup = FN(LIST(EL),alloc)(FN(LIST(EL),get_ctx)(list), list->n);
73 if (!dup)
76 dup = FN(LIST(EL),add)(dup, FN(EL,copy)(list->p[i]));
77 return dup;
88 return FN(LIST(EL),dup)(list);
/haiku-buildtools/binutils/ld/testsuite/ld-powerpc/
H A Daix52.exp100 "" {aix-no-dup-syms-1a.s aix-no-dup-syms-1b.s}
101 {{nm {} aix-no-dup-syms-1-rel.nd} {objdump -r aix-no-dup-syms-1-rel.rd}}
102 "aix-no-dup-syms-1.o"}
105 "-shared --allow-multiple-definition -bI:aix-no-dup-syms-1.im -bE:aix-no-dup-syms-1.ex"
106 "" {aix-no-dup-syms-1a.s aix-no-dup-syms-1b.s}
107 {{nm {} aix-no-dup
[all...]
/haiku-buildtools/binutils/gas/testsuite/gas/mt/
H A Dmsys.s34 ; dup operand: dup, xx
36 fbcbdr R0,#0,R0,#0,#0,#0,#0,#0,#dup,#0 ; dup = 1
/haiku-buildtools/legacy/binutils/gas/testsuite/gas/mt/
H A Dmsys.s34 ; dup operand: dup, xx
36 fbcbdr R0,#0,R0,#0,#0,#0,#0,#0,#dup,#0 ; dup = 1
/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/
H A Ddelay-slot-2.c37 int dup; member in union:decision_test::__anon1292
95 printf ("rtx_equal_p (x%d, operands[%d])", depth, p->u.dup);
/haiku-buildtools/legacy/binutils/libiberty/
H A Dpex-djgpp.c127 org_in = dup (STDIN_FILE_NO);
131 *errmsg = "dup";
150 org_out = dup (STDOUT_FILE_NO);
154 *errmsg = "dup";
174 org_errdes = dup (STDERR_FILE_NO);
178 *errmsg = "dup";
/haiku-buildtools/binutils/libiberty/
H A Dpex-djgpp.c132 org_in = dup (STDIN_FILE_NO);
136 *errmsg = "dup";
155 org_out = dup (STDOUT_FILE_NO);
159 *errmsg = "dup";
179 org_errdes = dup (STDERR_FILE_NO);
183 *errmsg = "dup";
/haiku-buildtools/gcc/libiberty/
H A Dpex-djgpp.c132 org_in = dup (STDIN_FILE_NO);
136 *errmsg = "dup";
155 org_out = dup (STDOUT_FILE_NO);
159 *errmsg = "dup";
179 org_errdes = dup (STDERR_FILE_NO);
183 *errmsg = "dup";
/haiku-buildtools/gcc/mpc/tests/
H A Dtio_str.c25 #include <unistd.h> /* for dup, dup2, STDIN_FILENO and STDOUT_FILENO */
165 fd = dup (STDOUT_FILENO);
178 fd = dup (STDIN_FILENO);
/haiku-buildtools/legacy/gcc/libiberty/
H A Dpexecute.c349 org_stdin = dup (STDIN_FILE_NO);
356 org_stdout = dup (STDOUT_FILE_NO);
680 dup (input_desc);
686 dup (output_desc);

Completed in 249 milliseconds

123