Lines Matching defs:space
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;
74 space = FN(MULTI(BASE),get_space)(multi);
75 space = isl_space_set_tuple_name(space, type, s);
77 return FN(MULTI(BASE),reset_space)(multi, space);
84 isl_space *space;
90 space = FN(MULTI(BASE),get_space)(multi);
91 space = isl_space_set_tuple_id(space, type, id);
93 return FN(MULTI(BASE),reset_space)(multi, space);
102 * lives in a set space and isl_dim_out if it lives in a map space.
117 isl_space *space;
128 space = FN(MULTI(BASE),get_space)(multi);
129 space = isl_space_reset_tuple_id(space, type);
131 return FN(MULTI(BASE),reset_space)(multi, space);
137 * lives in a set space and isl_dim_out if it lives in a map space.