HomeSort by: relevance | last modified time | path
    Searched refs:multi (Results 1 - 25 of 238) sorted by relevancy

1 2 3 4 5 6 7 8 910

  /src/external/gpl3/binutils/dist/
multilib.am 23 all-multi:
24 $(MULTIDO) $(AM_MAKEFLAGS) DO=all multi-do # $(MAKE)
25 install-multi:
26 $(MULTIDO) $(AM_MAKEFLAGS) DO=install multi-do # $(MAKE)
27 mostlyclean-multi:
28 $(MULTICLEAN) $(AM_MAKEFLAGS) DO=mostlyclean multi-clean # $(MAKE)
29 clean-multi:
30 $(MULTICLEAN) $(AM_MAKEFLAGS) DO=clean multi-clean # $(MAKE)
31 distclean-multi:
32 $(MULTICLEAN) $(AM_MAKEFLAGS) DO=distclean multi-clean # $(MAKE
    [all...]
  /src/external/gpl3/binutils.old/dist/
multilib.am 23 all-multi:
24 $(MULTIDO) $(AM_MAKEFLAGS) DO=all multi-do # $(MAKE)
25 install-multi:
26 $(MULTIDO) $(AM_MAKEFLAGS) DO=install multi-do # $(MAKE)
27 mostlyclean-multi:
28 $(MULTICLEAN) $(AM_MAKEFLAGS) DO=mostlyclean multi-clean # $(MAKE)
29 clean-multi:
30 $(MULTICLEAN) $(AM_MAKEFLAGS) DO=clean multi-clean # $(MAKE)
31 distclean-multi:
32 $(MULTICLEAN) $(AM_MAKEFLAGS) DO=distclean multi-clean # $(MAKE
    [all...]
  /src/external/gpl3/gcc/dist/
multilib.am 23 all-multi:
24 $(MULTIDO) $(AM_MAKEFLAGS) DO=all multi-do # $(MAKE)
25 install-multi:
26 $(MULTIDO) $(AM_MAKEFLAGS) DO=install multi-do # $(MAKE)
27 mostlyclean-multi:
28 $(MULTICLEAN) $(AM_MAKEFLAGS) DO=mostlyclean multi-clean # $(MAKE)
29 clean-multi:
30 $(MULTICLEAN) $(AM_MAKEFLAGS) DO=clean multi-clean # $(MAKE)
31 distclean-multi:
32 $(MULTICLEAN) $(AM_MAKEFLAGS) DO=distclean multi-clean # $(MAKE
    [all...]
  /src/external/gpl3/gcc.old/dist/
multilib.am 23 all-multi:
24 $(MULTIDO) $(AM_MAKEFLAGS) DO=all multi-do # $(MAKE)
25 install-multi:
26 $(MULTIDO) $(AM_MAKEFLAGS) DO=install multi-do # $(MAKE)
27 mostlyclean-multi:
28 $(MULTICLEAN) $(AM_MAKEFLAGS) DO=mostlyclean multi-clean # $(MAKE)
29 clean-multi:
30 $(MULTICLEAN) $(AM_MAKEFLAGS) DO=clean multi-clean # $(MAKE)
31 distclean-multi:
32 $(MULTICLEAN) $(AM_MAKEFLAGS) DO=distclean multi-clean # $(MAKE
    [all...]
  /src/external/mit/isl/dist/
isl_multi_coalesce.c 12 /* 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])
    [all...]
isl_multi_dims.c 15 /* 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
    [all...]
isl_multi_tuple_id_templ.c 15 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)
    [all...]
isl_multi_domain_templ.c 14 /* 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);
    [all...]
isl_multi_move_dims_templ.c 14 /* 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) &
    [all...]
isl_multi_locals_templ.c 12 /* 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));
isl_multi_nan_templ.c 12 /* 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));
isl_multi_hash.c 12 /* 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]);
isl_multi_templ.c 20 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
    [all...]
isl_multi_bin_val_templ.c 10 /* Apply "fn" to each of the elements of "multi" with as second argument "v".
12 static __isl_give MULTI(BASE) *FN(MULTI(BASE),fn_val)(
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)
    [all...]
isl_multi_dim_id_templ.c 16 * 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)
    [all...]
isl_multi_from_base_templ.c 23 __isl_give MULTI(BASE) *FN(FN(MULTI(BASE),from),BASE)(__isl_take EL *el)
26 MULTI(BASE) *multi;
33 multi = FN(MULTI(BASE),alloc)(space);
34 multi = FN(FN(MULTI(BASE),set),BASE)(multi, 0, el);
36 return multi;
    [all...]
isl_multi_un_op_templ.c 19 S(MULTI(BASE),un_op_control) {
24 /* Modify "multi" based on "control".
26 static __isl_give MULTI(BASE) *FN(MULTI(BASE),un_op)(
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)
    [all...]
isl_multi_explicit_domain.c 10 * 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)
    [all...]
isl_multi_apply_templ.c 13 /* Transform the elements of "multi" by applying "fn" to them
15 * If "multi" has an explicit domain, then apply "fn_domain" or
20 static __isl_give MULTI(BASE) *FN(FN(MULTI(BASE),apply),APPLY_DOMBASE)(
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))
    [all...]
isl_multi_add_constant_templ.c 12 /* Add "v" to the constant terms of all the base expressions of "multi".
14 __isl_give MULTI(BASE) *FN(MULTI(BASE),add_constant_val)(
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);
    [all...]
isl_multi_floor.c 14 __isl_give MULTI(BASE) *FN(MULTI(BASE),floor)(__isl_take MULTI(BASE) *multi)
16 S(MULTI(BASE),un_op_control) control = { .fn_el = &FN(EL,floor) };
17 return FN(MULTI(BASE),un_op)(multi, &control);
isl_multi_param_templ.c 9 /* 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)
    [all...]
isl_multi_apply_explicit_domain_templ.c 9 /* Transform the explicit domain of "multi" by applying "fn_domain" or
14 * The parameters of "multi" and "domain" are assumed to have been aligned.
16 static __isl_give MULTI(BASE) *FN(FN(MULTI(BASE),apply_domain),APPLY_DOMBASE)(
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)
    [all...]
isl_multi_zero_templ.c 15 /* Construct a multi expression in the given space with value zero in
18 __isl_give MULTI(BASE) *FN(MULTI(BASE),zero)(__isl_take isl_space *space)
21 MULTI(BASE) *multi;
27 multi = FN(MULTI(BASE),alloc)(isl_space_copy(space));
41 multi = FN(FN(MULTI(BASE),set),BASE)(multi, i
    [all...]
  /src/tests/usr.bin/indent/
lex_char.c 9 int multi = 'xy'; variable

Completed in 21 milliseconds

1 2 3 4 5 6 7 8 910