| /src/external/mit/isl/dist/ |
| isl_from_range_templ.c | 15 isl_space *space; local 21 "not living in a set space", 24 space = FN(TYPE,get_space)(obj); 25 space = isl_space_from_range(space); 26 obj = FN(TYPE,reset_space)(obj, space);
|
| isl_multi_dim_id_templ.c | 11 #include <isl/space.h> 24 return isl_space_find_dim_by_name(multi->space, type, name); 35 return isl_space_find_dim_by_id(multi->space, type, id); 43 return multi ? isl_space_get_dim_id(multi->space, type, pos) : NULL; 50 isl_space *space; local 52 space = FN(MULTI(BASE),get_space)(multi); 53 space = isl_space_set_dim_name(space, type, pos, s); 55 return FN(MULTI(BASE),reset_space)(multi, space); 64 isl_space *space; local [all...] |
| isl_multi_from_base_templ.c | 10 #include <isl/space.h> 17 * output/set dimension and the space of the result is therefore 18 * the same as the space of the input. 20 * lives in a parameter space and we therefore need to add 25 isl_space *space; local 28 space = FN(EL,get_space(el)); 29 if (isl_space_is_params(space)) { 30 space = isl_space_set_from_params(space); 31 space = isl_space_add_dims(space, isl_dim_set, 1) [all...] |
| isl_multi_tuple_id_templ.c | 11 #include <isl/space.h> 18 return multi ? isl_space_get_tuple_name(multi->space, type) : NULL; 28 return isl_space_has_tuple_id(multi->space, type); 34 * lives in a set space and isl_dim_out if it lives in a map space. 48 return multi ? isl_space_get_tuple_id(multi->space, type) : NULL; 54 * lives in a set space and isl_dim_out if it lives in a map space. 68 isl_space *space; local 74 space = FN(MULTI(BASE),get_space)(multi) 84 isl_space *space; local 117 isl_space *space; local [all...] |
| isl_multi_check_domain_templ.c | 11 /* Does the space of "domain" correspond to that of the domain of "multi"? 18 isl_space *space, *domain_space; local 21 space = FN(MULTI(BASE),get_space)(multi); 22 ok = isl_space_has_domain_tuples(domain_space, space); 23 isl_space_free(space); 29 /* Check that the space of "domain" corresponds to
|
| isl_multi_union_pw_aff_explicit_domain.c | 19 isl_space *space; local 23 space = isl_space_params(isl_multi_union_pw_aff_get_space(mupa)); 24 mupa->u.dom = isl_union_set_from_set(isl_set_universe(space));
|
| isl_unbind_params_templ.c | 19 isl_space *space; local 22 space = FN(TYPE,get_domain_space)(obj); 23 is_params = isl_space_is_params(space); 30 r = isl_reordering_unbind_params_insert_domain(space, domain); 31 isl_space_free(space);
|
| isl_type_check_match_range_multi_val.c | 4 /* Does the range space of "obj" match the space of "mv" (ignoring parameters)? 9 isl_space *space, *mv_space; local 11 space = FN(TYPE,peek_space)(obj); 13 return isl_space_tuple_is_equal(space, isl_dim_out, 17 /* Check that the range space of "obj" matches the space of "mv"
|
| isl_union_print_templ.c | 60 isl_space *space; local 62 space = FN(UNION,get_space)(u); 63 p = print_param_tuple(p, space, &space_data); 64 isl_space_free(space);
|
| isl_domain_factor_templ.c | 52 isl_space *space; local 57 space = FN(TYPE,get_domain_space)(obj); 58 n = isl_space_dim(space, isl_dim_set); 59 space = isl_space_factor_domain(space); 60 n_in = isl_space_dim(space, isl_dim_set); 65 obj = FN(TYPE,reset_domain_space)(obj, space);
|
| isl_multi_from_tuple_templ.c | 13 /* Extract a multi expression with domain space "dom_space" 23 isl_space *space; local 30 space = isl_space_range(isl_multi_pw_aff_get_space(tuple)); 31 space = isl_space_align_params(space, isl_space_copy(dom_space)); 33 space = isl_space_map_from_domain_and_range( 34 isl_space_copy(dom_space), space); 36 multi = FN(MULTI(BASE),alloc)(space);
|
| isl_multi_identity_templ.c | 10 #include <isl/space.h> 15 /* Create a multi expression in the given space that maps each 18 __isl_give MULTI(BASE) *FN(MULTI(BASE),identity)(__isl_take isl_space *space) 25 if (!space) 28 if (isl_space_is_set(space)) 29 isl_die(isl_space_get_ctx(space), isl_error_invalid, 30 "expecting map space", goto error); 32 n_in = isl_space_dim(space, isl_dim_in); 33 n_out = isl_space_dim(space, isl_dim_out); 37 isl_die(isl_space_get_ctx(space), isl_error_invalid 91 isl_space *space; local [all...] |
| isl_multi_move_dims_templ.c | 10 #include <isl/space.h> 23 isl_space *space; local 32 !isl_space_is_named_or_nested(multi->space, src_type) && 33 !isl_space_is_named_or_nested(multi->space, dst_type)) 51 space = FN(MULTI(BASE),take_space)(multi); 52 space = isl_space_move_dims(space, dst_type, dst_pos, 54 multi = FN(MULTI(BASE),restore_space)(multi, space);
|
| isl_multi_read_no_explicit_domain_templ.c | 10 #include <isl/space.h> 20 struct vars *v, __isl_take isl_space *space, int rational, void *user) 28 return isl_space_free(space); 30 return space; 35 * We first read a tuple space, collecting the element values in a list. 36 * Then we create an isl_multi_* from the space and the isl_*_list. 43 isl_space *space; local 63 space = isl_set_get_space(dom); 66 space = read_tuple_space(s, v, space, 1, 0, &FN(read_el,BASE), &list) [all...] |
| isl_multi_templ.h | 1 #include <isl/space.h> 7 * "space" is the space in which the multiple expression lives. 9 * to the output or set dimension of "space". 17 isl_space *space; local 28 __isl_give MULTI(BASE) *CAT(MULTI(BASE),_alloc)(__isl_take isl_space *space);
|
| isl_multi_un_op_templ.c | 15 * If "fn_space" is set, then it is applied to the space. 20 __isl_give isl_space *(*fn_space)(__isl_take isl_space *space); 31 isl_space *space; local 48 space = FN(MULTI(BASE),take_space)(multi); 49 space = control->fn_space(space); 50 multi = FN(MULTI(BASE),restore_space)(multi, space);
|
| isl_output_private.h | 1 #include <isl/space.h> 10 * space is the global space that is being printed. This field is set by 12 * type is the tuple of the global space that is currently being printed. 21 isl_space *space; member in struct:isl_print_space_data 25 __isl_give isl_printer *isl_print_space(__isl_keep isl_space *space,
|
| isl_pw_morph_templ.c | 17 isl_space *space; local 27 space = FN(PW,take_space)(pw); 28 space = isl_space_extend_domain_with_range( 29 isl_space_copy(morph->ran->dim), space); 30 pw = FN(PW,restore_space)(pw, space);
|
| isl_pw_move_dims_templ.c | 17 isl_space *space; local 19 space = FN(PW,take_space)(pw); 20 space = isl_space_move_dims(space, dst_type, dst_pos, 22 pw = FN(PW,restore_space)(pw, space);
|
| isl_pw_scale_templ.c | 22 isl_space *space = FN(PW,get_space)(pw); local 23 zero = FN(PW,ZERO)(space OPT_TYPE_ARG(pw->));
|
| isl_pw_un_op_templ.c | 16 * If "fn_space" is set, then it is applied to the space. 25 __isl_give isl_space *(*fn_space)(__isl_take isl_space *space); 38 isl_space *space; local 67 space = FN(PW,take_space)(pw); 68 space = control->fn_space(space); 69 pw = FN(PW,restore_space)(pw, space);
|
| isl_reordering.h | 4 #include <isl/space.h> 7 * The final space is given by "space". 11 * to "dst_len" - 1, where "dst_len" is equal to the total dimension of "space", 16 isl_space *space; member in struct:isl_reordering 29 __isl_keep isl_space *space, __isl_keep isl_multi_id *tuple); 33 __isl_take isl_reordering *exp, __isl_take isl_space *space);
|
| isl_union_eval.c | 62 isl_space *space; local 71 space = isl_point_peek_space(pnt); 72 if (FN(UNION,foreach_on_domain)(u, space,
|
| /src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/core/ |
| nouveau_nvkm_core_enum.c | 49 bool space = false; local 53 space ? " " : "", bf->name); 56 space = true;
|
| /src/tests/kernel/ |
| t_sysctl.c | 50 unsigned char space[256]; member in union:__anon7820
|