Searched refs:multi (Results 1 - 25 of 337) sorted by relevance

1234567891011>>

/netbsd-current/external/gpl3/gdb.old/dist/ld/testsuite/ld-mips-elf/
H A Dmulti-got-hidden-1.d1 #name: MIPS multi-got-hidden-1
3 #source: multi-got-1-1.s
4 #source: multi-got-1-2.s
5 #source: multi-got-hidden-1.s
H A Dmulti-got-hidden-2.d1 #name: MIPS multi-got-hidden-2
3 #source: multi-got-1-1.s
4 #source: multi-got-hidden-2.s
/netbsd-current/external/mit/isl/dist/
H A Disl_multi_coalesce.c12 /* Coalesce the elements of "multi".
14 * Note that such coalescing does not change the meaning of "multi"
16 * destroy any other copies of "multi" in case of failure.
18 __isl_give MULTI(BASE) *FN(MULTI(BASE),coalesce)(__isl_take MULTI(BASE) *multi)
22 if (!multi)
25 for (i = 0; i < multi->n; ++i) {
26 EL *el = FN(EL,copy)(multi->u.p[i]);
29 return FN(MULTI(BASE),free)(multi);
30 FN(EL,free)(multi->u.p[i]);
31 multi
[all...]
H A Disl_multi_dims.c15 /* Check whether "multi" has non-zero coefficients for any dimension
19 isl_bool FN(MULTI(BASE),involves_dims)(__isl_keep MULTI(BASE) *multi,
24 if (!multi)
29 for (i = 0; i < multi->n; ++i) {
32 involves = FN(EL,involves_dims)(multi->u.p[i], type, first, n);
37 if (FN(MULTI(BASE),has_explicit_domain)(multi))
38 return FN(MULTI(BASE),involves_explicit_domain_dims)(multi,
45 __isl_take MULTI(BASE) *multi,
52 size = FN(MULTI(BASE),size)(multi);
54 return FN(MULTI(BASE),free)(multi);
[all...]
H A Disl_multi_tuple_id_templ.c15 const char *FN(MULTI(BASE),get_tuple_name)(__isl_keep MULTI(BASE) *multi,
18 return multi ? isl_space_get_tuple_name(multi->space, type) : NULL;
23 isl_bool FN(MULTI(BASE),has_tuple_id)(__isl_keep MULTI(BASE) *multi,
26 if (!multi)
28 return isl_space_has_tuple_id(multi->space, type);
31 /* Does the (range) tuple of "multi" have an identifier?
33 * Technically, the implementation should use isl_dim_set if "multi"
38 isl_bool FN(MULTI(BASE),has_range_tuple_id)(__isl_keep MULTI(BASE) *multi)
40 return FN(MULTI(BASE),has_tuple_id)(multi, isl_dim_ou
[all...]
H A Disl_multi_domain_templ.c14 /* Return the shared domain of the elements of "multi".
16 * If "multi" has an explicit domain, then return this domain.
18 __isl_give isl_set *FN(MULTI(BASE),domain)(__isl_take MULTI(BASE) *multi)
23 if (!multi)
26 if (FN(MULTI(BASE),has_explicit_domain)(multi)) {
27 dom = FN(MULTI(BASE),get_explicit_domain)(multi);
28 FN(MULTI(BASE),free)(multi);
32 dom = isl_set_universe(FN(MULTI(BASE),get_domain_space)(multi));
33 for (i = 0; i < multi->n; ++i) {
36 dom_i = FN(EL,domain)(FN(FN(MULTI(BASE),get),BASE)(multi,
[all...]
H A Disl_multi_move_dims_templ.c14 /* Move the "n" dimensions of "src_type" starting at "src_pos" of "multi"
19 __isl_give MULTI(BASE) *FN(MULTI(BASE),move_dims)(__isl_take MULTI(BASE) *multi,
27 size = FN(MULTI(BASE),size)(multi);
29 return FN(MULTI(BASE),free)(multi);
32 !isl_space_is_named_or_nested(multi->space, src_type) &&
33 !isl_space_is_named_or_nested(multi->space, dst_type))
34 return multi;
37 isl_die(FN(MULTI(BASE),get_ctx)(multi), isl_error_invalid,
39 return FN(MULTI(BASE),free)(multi));
41 isl_die(FN(MULTI(BASE),get_ctx)(multi), isl_error_invali
[all...]
H A Disl_multi_locals_templ.c12 /* Does "multi" involve any local variables?
14 isl_bool FN(MULTI(BASE),involves_locals)(__isl_keep MULTI(BASE) *multi)
16 return FN(MULTI(BASE),any)(multi, FN(EL,involves_locals));
H A Disl_multi_nan_templ.c12 /* Does "multi" involve any NaNs?
14 isl_bool FN(MULTI(BASE),involves_nan)(__isl_keep MULTI(BASE) *multi)
16 return FN(MULTI(BASE),any)(multi, &FN(EL,involves_nan));
H A Disl_multi_hash.c12 /* Return a hash value that digests "multi".
14 uint32_t FN(MULTI(BASE),get_hash)(__isl_keep MULTI(BASE) *multi)
19 if (!multi)
23 for (i = 0; i < multi->n; ++i) {
25 el_hash = FN(EL,get_hash)(multi->u.p[i]);
H A Disl_multi_templ.c20 isl_ctx *FN(MULTI(BASE),get_ctx)(__isl_keep MULTI(BASE) *multi)
22 return multi ? isl_space_get_ctx(multi->space) : NULL;
25 /* Return the space of "multi".
27 __isl_keep isl_space *FN(MULTI(BASE),peek_space)(__isl_keep MULTI(BASE) *multi)
29 return multi ? multi->space : NULL;
32 __isl_give isl_space *FN(MULTI(BASE),get_space)(__isl_keep MULTI(BASE) *multi)
34 return isl_space_copy(FN(MULTI(BASE),peek_space)(multi));
38 __isl_keep MULTI(BASE) *multi)
[all...]
H A Disl_multi_bin_val_templ.c10 /* Apply "fn" to each of the elements of "multi" with as second argument "v".
13 __isl_take MULTI(BASE) *multi,
20 n = FN(MULTI(BASE),size)(multi);
27 el = FN(MULTI(BASE),take_at)(multi, i);
29 multi = FN(MULTI(BASE),restore_at)(multi, i, el);
33 return multi;
36 FN(MULTI(BASE),free)(multi);
44 /* Elementwise apply "fn" to "multi" and "mv".
47 __isl_take MULTI(BASE) *multi,
[all...]
H A Disl_multi_dim_id_templ.c16 * in "multi".
19 int FN(MULTI(BASE),find_dim_by_name)(__isl_keep MULTI(BASE) *multi,
22 if (!multi)
24 return isl_space_find_dim_by_name(multi->space, type, name);
30 int FN(MULTI(BASE),find_dim_by_id)(__isl_keep MULTI(BASE) *multi,
33 if (!multi)
35 return isl_space_find_dim_by_id(multi->space, type, id);
40 __isl_give isl_id *FN(MULTI(BASE),get_dim_id)(__isl_keep MULTI(BASE) *multi,
43 return multi ? isl_space_get_dim_id(multi
[all...]
H A Disl_multi_from_base_templ.c26 MULTI(BASE) *multi;
33 multi = FN(MULTI(BASE),alloc)(space);
34 multi = FN(FN(MULTI(BASE),set),BASE)(multi, 0, el);
36 return multi;
H A Disl_multi_un_op_templ.c24 /* Modify "multi" based on "control".
27 __isl_take MULTI(BASE) *multi, S(MULTI(BASE),un_op_control) *control)
33 n = FN(MULTI(BASE),size)(multi);
35 return FN(MULTI(BASE),free)(multi);
40 el = FN(MULTI(BASE),take_at)(multi, i);
42 multi = FN(MULTI(BASE),restore_at)(multi, i, el);
46 return multi;
48 space = FN(MULTI(BASE),take_space)(multi);
50 multi
[all...]
H A Disl_multi_explicit_domain.c10 * when the multi expression may have an explicit domain.
15 __isl_give MULTI(BASE) *FN(MULTI(BASE),cow)(__isl_take MULTI(BASE) *multi);
17 /* Does "multi" have an explicit domain?
19 * An explicit domain is only available if "multi" is zero-dimensional.
21 static int FN(MULTI(BASE),has_explicit_domain)(__isl_keep MULTI(BASE) *multi)
23 return multi && multi->n == 0;
26 /* Check that "multi" has an explicit domain.
29 __isl_keep MULTI(BASE) *multi)
31 if (!multi)
[all...]
H A Disl_multi_apply_templ.c13 /* Transform the elements of "multi" by applying "fn" to them
15 * If "multi" has an explicit domain, then apply "fn_domain" or
21 __isl_take MULTI(BASE) *multi, __isl_take APPLY_DOM *set,
29 FN(FN(MULTI(BASE),align_params),APPLY_DOMBASE)(&multi, &set);
31 if (FN(MULTI(BASE),has_explicit_domain)(multi))
32 return FN(FN(MULTI(BASE),apply_domain),APPLY_DOMBASE)(multi,
35 n = FN(MULTI(BASE),size)(multi);
42 el = FN(MULTI(BASE),take_at)(multi, i);
44 multi = FN(MULTI(BASE),restore_at)(multi,
[all...]
H A Disl_multi_add_constant_templ.c12 /* Add "v" to the constant terms of all the base expressions of "multi".
15 __isl_take MULTI(BASE) *multi, __isl_take isl_val *v)
24 return multi;
27 return FN(MULTI(BASE),fn_val)(multi, &FN(EL,add_constant_val), v);
29 FN(MULTI(BASE),free)(multi);
35 * the corresponding base expressions of "multi".
38 __isl_take MULTI(BASE) *multi, __isl_take isl_multi_val *mv)
47 return multi;
50 return FN(MULTI(BASE),fn_multi_val)(multi, &FN(EL,add_constant_val),
54 FN(MULTI(BASE),free)(multi);
[all...]
H A Disl_multi_floor.c14 __isl_give MULTI(BASE) *FN(MULTI(BASE),floor)(__isl_take MULTI(BASE) *multi)
17 return FN(MULTI(BASE),un_op)(multi, &control);
H A Disl_multi_param_templ.c9 /* Does the multiple expression "multi" depend in any way
12 isl_bool FN(MULTI(BASE),involves_param_id)(__isl_keep MULTI(BASE) *multi,
18 if (!multi || !id)
20 if (multi->n == 0)
22 pos = FN(MULTI(BASE),find_dim_by_id)(multi, isl_dim_param, id);
26 for (i = 0; i < multi->n; ++i) {
27 isl_bool involved = FN(EL,involves_param_id)(multi->u.p[i], id);
35 /* Does the multiple expression "multi" depend in any way
38 isl_bool FN(MULTI(BASE),involves_param_id_list)(__isl_keep MULTI(BASE) *multi,
52 involves = FN(MULTI(BASE),involves_param_id)(multi, i
[all...]
H A Disl_multi_apply_explicit_domain_templ.c9 /* Transform the explicit domain of "multi" by applying "fn_domain" or
14 * The parameters of "multi" and "domain" are assumed to have been aligned.
17 __isl_take MULTI(BASE) *multi, __isl_take APPLY_DOM *domain,
24 multi_dom = FN(MULTI(BASE),get_explicit_domain)(multi);
34 multi = FN(MULTI(BASE),set_explicit_domain)(multi, multi_dom);
35 return multi;
/netbsd-current/external/gpl3/gdb.old/dist/gas/testsuite/gas/bfin/
H A Dresource_conflict.l2 .*:3: Error: resource conflict in multi-issue instruction.
3 .*:4: Error: resource conflict in multi-issue instruction.
4 .*:5: Error: resource conflict in multi-issue instruction.
5 .*:6: Error: resource conflict in multi-issue instruction.
6 .*:7: Error: resource conflict in multi-issue instruction.
7 .*:8: Error: resource conflict in multi-issue instruction.
8 .*:10: Error: resource conflict in multi-issue instruction.
9 .*:11: Error: resource conflict in multi-issue instruction.
10 .*:12: Error: resource conflict in multi-issue instruction.
11 .*:13: Error: resource conflict in multi
[all...]
/netbsd-current/external/gpl3/gdb.old/dist/gas/testsuite/gas/arm/
H A Dneon-ldst-rm.s1 @ test register and multi-register loads and stores.
7 .macro multi op dir="" wb=""
15 multi vldm
16 multi vldm ia
17 multi vldm ia "!"
18 multi vldm db "!"
20 multi vstm
21 multi vstm ia
22 multi vstm ia "!"
23 multi vst
[all...]
/netbsd-current/tests/usr.bin/indent/
H A Dlex_char.c9 int multi = 'xy'; variable
/netbsd-current/external/gpl3/gdb.old/dist/gas/testsuite/gas/d30v/
H A Dwarn_oddreg.l2 .*:5: Warning: Odd numbered register used as target of multi-register instruction
3 .*:6: Warning: Odd numbered register used as target of multi-register instruction
4 .*:7: Warning: Odd numbered register used as target of multi-register instruction
5 .*:8: Warning: Odd numbered register used as target of multi-register instruction
6 .*:9: Warning: Odd numbered register used as target of multi-register instruction
7 .*:10: Warning: Odd numbered register used as target of multi-register instruction
8 .*:11: Warning: Odd numbered register used as target of multi-register instruction
9 .*:12: Warning: Odd numbered register used as target of multi-register instruction
14 2 # of multi-word instructions: ld2w, ld4bh, ld4bhu, ld2h, st2w, st4hb, st2h,
18 .* Warning: Odd numbered register used as target of multi
[all...]

Completed in 206 milliseconds

1234567891011>>