| /netbsd-src/external/mit/isl/dist/ |
| H A D | isl_space.c | 23 isl_ctx *isl_space_get_ctx(__isl_keep isl_space *space) in isl_space_get_ctx() argument 25 return space ? space->ctx : NULL; in isl_space_get_ctx() 31 isl_space *space; in isl_space_alloc() local 33 space = isl_alloc_type(ctx, struct isl_space); in isl_space_alloc() 34 if (!space) in isl_space_alloc() 37 space->ctx = ctx; in isl_space_alloc() 39 space->ref = 1; in isl_space_alloc() 40 space->nparam = nparam; in isl_space_alloc() 41 space->n_in = n_in; in isl_space_alloc() 42 space->n_out = n_out; in isl_space_alloc() [all …]
|
| H A D | isl_farkas.c | 69 static __isl_give isl_space *isl_space_prefix(__isl_take isl_space *space, in isl_space_prefix() argument 77 if (!space) in isl_space_prefix() 80 ctx = isl_space_get_ctx(space); in isl_space_prefix() 81 nvar = isl_space_dim(space, isl_dim_set); in isl_space_prefix() 83 return isl_space_free(space); in isl_space_prefix() 89 name = isl_space_get_dim_name(space, isl_dim_set, i); in isl_space_prefix() 100 space = isl_space_set_dim_name(space, in isl_space_prefix() 105 return space; in isl_space_prefix() 107 isl_space_free(space); in isl_space_prefix() 124 static __isl_give isl_space *isl_space_coefficients(__isl_take isl_space *space) in isl_space_coefficients() argument [all …]
|
| H A D | isl_multi_identity_templ.c | 18 __isl_give MULTI(BASE) *FN(MULTI(BASE),identity)(__isl_take isl_space *space) in MULTI() 25 if (!space) in MULTI() 28 if (isl_space_is_set(space)) in MULTI() 29 isl_die(isl_space_get_ctx(space), isl_error_invalid, in MULTI() 32 n_in = isl_space_dim(space, isl_dim_in); in MULTI() 33 n_out = isl_space_dim(space, isl_dim_out); in MULTI() 37 isl_die(isl_space_get_ctx(space), isl_error_invalid, in MULTI() 41 multi = FN(MULTI(BASE),alloc)(isl_space_copy(space)); in MULTI() 44 isl_space_free(space); in MULTI() 48 space = isl_space_domain(space); in MULTI() [all …]
|
| H A D | isl_reordering.c | 37 exp->space = NULL; in isl_reordering_alloc() 52 n = isl_space_dim(r->space, isl_dim_all); in isl_reordering_set_dst_len_from_space() 81 dup->space = isl_reordering_get_space(r); in isl_reordering_dup() 82 if (!dup->space) in isl_reordering_dup() 109 isl_space_free(exp->space); in isl_reordering_free() 127 return r->space; in isl_reordering_peek_space() 163 exp->space = isl_space_replace_params(isl_space_copy(alignee), aligner); in isl_parameter_alignment_reordering() 183 pos = isl_space_dim(exp->space, isl_dim_param); in isl_parameter_alignment_reordering() 185 exp->space = isl_space_free(exp->space); in isl_parameter_alignment_reordering() 186 exp->space = isl_space_add_dims(exp->space, in isl_parameter_alignment_reordering() [all …]
|
| H A D | isl_space_private.h | 26 __isl_give isl_space *isl_space_cow(__isl_take isl_space *space); 28 __isl_give isl_space *isl_space_underlying(__isl_take isl_space *space, 31 uint32_t isl_space_get_tuple_hash(__isl_keep isl_space *space); 32 uint32_t isl_space_get_tuple_domain_hash(__isl_keep isl_space *space); 33 uint32_t isl_space_get_full_hash(__isl_keep isl_space *space); 54 isl_size isl_space_wrapped_dim(__isl_keep isl_space *space, 56 isl_size isl_space_offset(__isl_keep isl_space *space, enum isl_dim_type type); 58 isl_stat isl_space_check_range(__isl_keep isl_space *space, 60 isl_stat isl_space_check_is_set(__isl_keep isl_space *space); 61 isl_bool isl_space_may_be_set(__isl_keep isl_space *space); [all …]
|
| H A D | isl_multi_templ.c | 22 return multi ? isl_space_get_ctx(multi->space) : NULL; in FN() 29 return multi ? multi->space : NULL; in FN() 40 return multi ? isl_space_domain(isl_space_copy(multi->space)) : NULL; in FN() 49 __isl_give MULTI(BASE) *FN(MULTI(BASE),alloc)(__isl_take isl_space *space) in MULTI() 55 n = isl_space_dim(space, isl_dim_out); in MULTI() 59 ctx = isl_space_get_ctx(space); in MULTI() 68 multi->space = space; in MULTI() 75 isl_space_free(space); in MULTI() 87 dup = FN(MULTI(BASE),alloc)(isl_space_copy(multi->space)); in MULTI() 131 isl_space_free(multi->space); in MULTI() [all …]
|
| H A D | isl_bind_domain_templ.c | 25 isl_space *space; in FN() local 28 space = FN(TYPE,get_domain_space)(obj); in FN() 29 id = isl_space_get_dim_id(space, isl_dim_param, param); in FN() 30 aff = isl_aff_param_on_domain_space_id(isl_space_copy(space), id); in FN() 31 space = isl_space_map_from_set(space); in FN() 32 ma = isl_multi_aff_identity(space); in FN() 35 space = FN(TYPE,get_domain_space)(obj); in FN() 38 space = isl_space_drop_dims(space, isl_dim_param, param, 1); in FN() 39 obj = FN(TYPE,reset_domain_space)(obj, space); in FN() 111 isl_space *space; in FN() local [all …]
|
| H A D | isl_union_templ.c | 22 return u ? u->space->ctx : NULL; in FN() 31 return u->space; in FN() 53 return isl_space_dim(u->space, type); in FN() 65 return isl_space_find_dim_by_name(u->space, type, name); in FN() 70 static __isl_give UNION *FN(UNION,alloc)(__isl_take isl_space *space in FN() 75 space = isl_space_params(space); in FN() 76 if (!space) in FN() 79 u = isl_calloc_type(space->ctx, UNION); in FN() 85 u->space = space; in FN() 86 if (isl_hash_table_init(space->ctx, &u->table, size) < 0) in FN() [all …]
|
| H A D | isl_multi_tuple_id_templ.c | 18 return multi ? isl_space_get_tuple_name(multi->space, type) : NULL; in FN() 28 return isl_space_has_tuple_id(multi->space, type); in FN() 48 return multi ? isl_space_get_tuple_id(multi->space, type) : NULL; in FN() 68 isl_space *space; in MULTI() local 74 space = FN(MULTI(BASE),get_space)(multi); in MULTI() 75 space = isl_space_set_tuple_name(space, type, s); in MULTI() 77 return FN(MULTI(BASE),reset_space)(multi, space); in MULTI() 84 isl_space *space; in MULTI() local 90 space = FN(MULTI(BASE),get_space)(multi); in MULTI() 91 space = isl_space_set_tuple_id(space, type, id); in MULTI() [all …]
|
| H A D | isl_output.c | 182 static isl_size count_same_name(__isl_keep isl_space *space, in count_same_name() argument 191 s = t == type ? pos : isl_space_dim(space, t); in count_same_name() 195 const char *n = isl_space_get_dim_name(space, t, p); in count_same_name() 206 static __isl_give isl_printer *print_name(__isl_keep isl_space *space, in print_name() argument 215 : isl_space_get_dim_name(space, type, pos); in print_name() 223 else if (isl_space_is_set(space) || type == isl_dim_in) in print_name() 230 primes = count_same_name(space, name == buffer ? isl_dim_div : type, in print_name() 240 static isl_stat pos2type(__isl_keep isl_space *space, in pos2type() argument 243 isl_size n_in = isl_space_dim(space, isl_dim_in); in pos2type() 244 isl_size n_out = isl_space_dim(space, isl_dim_out); in pos2type() [all …]
|
| H A D | isl_aff.c | 251 __isl_give isl_aff *isl_aff_zero_on_domain_space(__isl_take isl_space *space) in isl_aff_zero_on_domain_space() argument 253 return isl_aff_zero_on_domain(isl_local_space_from_space(space)); in isl_aff_zero_on_domain_space() 259 __isl_give isl_aff *isl_space_zero_aff_on_domain(__isl_take isl_space *space) in isl_space_zero_aff_on_domain() argument 261 return isl_aff_zero_on_domain_space(space); in isl_space_zero_aff_on_domain() 302 __isl_give isl_aff *isl_aff_nan_on_domain_space(__isl_take isl_space *space) in isl_aff_nan_on_domain_space() argument 304 return isl_aff_nan_on_domain(isl_local_space_from_space(space)); in isl_aff_nan_on_domain_space() 311 __isl_take isl_space *space) in isl_pw_aff_nan_on_domain_space() argument 313 return isl_pw_aff_from_aff(isl_aff_nan_on_domain_space(space)); in isl_pw_aff_nan_on_domain_space() 361 __isl_give isl_aff *isl_aff_val_on_domain_space(__isl_take isl_space *space, in isl_aff_val_on_domain_space() argument 364 return isl_aff_val_on_domain(isl_local_space_from_space(space), val); in isl_aff_val_on_domain_space() [all …]
|
| H A D | isl_multi_dim_id_templ.c | 24 return isl_space_find_dim_by_name(multi->space, type, name); in FN() 35 return isl_space_find_dim_by_id(multi->space, type, id); in FN() 43 return multi ? isl_space_get_dim_id(multi->space, type, pos) : NULL; in FN() 50 isl_space *space; in MULTI() local 52 space = FN(MULTI(BASE),get_space)(multi); in MULTI() 53 space = isl_space_set_dim_name(space, type, pos, s); in MULTI() 55 return FN(MULTI(BASE),reset_space)(multi, space); in MULTI() 64 isl_space *space; in MULTI() local 66 space = FN(MULTI(BASE),get_space)(multi); in MULTI() 67 space = isl_space_set_dim_id(space, type, pos, id); in MULTI() [all …]
|
| H A D | isl_map.c | 71 static unsigned pos(__isl_keep isl_space *space, enum isl_dim_type type) in pos() argument 75 case isl_dim_in: return 1 + space->nparam; in pos() 76 case isl_dim_out: return 1 + space->nparam + space->n_in; in pos() 148 isl_space *space; in isl_basic_map_var_offset() local 150 space = isl_basic_map_peek_space(bmap); in isl_basic_map_var_offset() 155 case isl_dim_out: return isl_space_offset(space, type); in isl_basic_map_var_offset() 156 case isl_dim_div: return isl_space_dim(space, isl_dim_all); in isl_basic_map_var_offset() 437 isl_space *space; in isl_basic_map_take_space() local 443 space = bmap->dim; in isl_basic_map_take_space() 445 return space; in isl_basic_map_take_space() [all …]
|
| /netbsd-src/external/mit/isl/dist/include/isl/ |
| H A D | space.h | 22 isl_ctx *isl_space_get_ctx(__isl_keep isl_space *space); 30 __isl_give isl_space *isl_space_copy(__isl_keep isl_space *space); 31 __isl_null isl_space *isl_space_free(__isl_take isl_space *space); 33 isl_bool isl_space_is_params(__isl_keep isl_space *space); 34 isl_bool isl_space_is_set(__isl_keep isl_space *space); 35 isl_bool isl_space_is_map(__isl_keep isl_space *space); 38 __isl_give isl_space *isl_space_add_param_id(__isl_take isl_space *space, 41 __isl_give isl_space *isl_space_set_tuple_name(__isl_take isl_space *space, 43 isl_bool isl_space_has_tuple_name(__isl_keep isl_space *space, 45 __isl_keep const char *isl_space_get_tuple_name(__isl_keep isl_space *space, [all …]
|
| /netbsd-src/external/mpl/dhcp/dist/keama/tests/ |
| H A D | optiondata6.out | 7 "space": "foobar", 13 "space": "foobar", 19 "space": "foobar", 25 "space": "foobar", 31 "space": "foobar", 37 "space": "foobar", 43 "space": "foobar", 49 "space": "foobar", 55 "space": "foobar", 62 "space": "foobar", [all …]
|
| H A D | optiondata4.out | 7 "space": "dhcp4", 15 "space": "foobar", 21 "space": "dhcp4", 27 "space": "foobar", 33 "space": "dhcp4", 39 "space": "dhcp4", 45 "space": "dhcp4", 51 "space": "dhcp4", 57 "space": "foobar", 64 "space": "foobar", [all …]
|
| H A D | optiondecl4.out | 7 "space": "foobar", 13 "space": "foobar", 19 "space": "foobar", 25 "space": "foobar", 31 "space": "foobar", 37 "space": "foobar", 43 "space": "foobar", 49 "space": "foobar", 55 "space": "foobar", 61 "space": "foobar", [all …]
|
| H A D | optiondecl6.out | 7 "space": "foobar", 13 "space": "foobar", 19 "space": "foobar", 25 "space": "foobar", 31 "space": "foobar", 37 "space": "foobar", 43 "space": "foobar", 49 "space": "foobar", 55 "space": "foobar", 61 "space": "foobar", [all …]
|
| /netbsd-src/external/bsd/file/dist/magic/magdir/ |
| H A D | c-lang | 17 >>0 regex \^class[[:space:]]+ 23 >0 regex \^#[[:space:]]*pragma C source text 26 >0 regex \^#[[:space:]]*(if\|ifn)def 27 >>&0 regex \^#[[:space:]]*endif$ C source text 30 >0 regex \^#[[:space:]]*(if\|ifn)def 31 >>&0 regex \^#[[:space:]]*define C source text 34 >0 regex \^[[:space:]]*char(\ \\*|\\*)(.+)(=.*)?;[[:space:]]*$ C source text 37 >0 regex \^[[:space:]]*double(\ \\*|\\*)(.+)(=.*)?;[[:space:]]*$ C source text 40 >0 regex \^[[:space:]]*extern[[:space:]]+ C source text 43 >0 regex \^[[:space:]]*float(\ \\*|\\*)(.+)(=.*)?;[[:space:]]*$ C source text [all …]
|
| H A D | ruby | 26 >0 regex \^[[:space:]]*require[[:space:]]'[A-Za-z_/.]+' 28 >>>&0 regex \^[[:space:]]*end([[:space:]]+[;#].*)?$ Ruby script text 31 0 regex \^[[:space:]]*(class|module)[[:space:]][A-Z] 33 >>&0 regex \^[[:space:]]*end([[:space:]]+[;#].*)?$ Ruby script text 37 0 regex \^[[:space:]]*(class|module)[[:space:]][A-Z] 38 >&0 regex \^[[:space:]]*end([[:space:]]+[;#if].*)?$ Ruby script text 45 >0 regex \^[[:space:]]*def\ [a-z]|def\ [[:alpha:]]+::[a-z] 46 >>&0 regex \^[[:space:]]*end([[:space:]]+[;#].*)?$ Ruby script text 51 >0 regex \^[[:space:]]*require[[:space:]]'[A-Za-z_/.]+' Ruby script text 54 >0 regex \^[[:space:]]*include\ ([A-Z]+[a-z]*(::))+ Ruby script text
|
| /netbsd-src/external/mpl/dhcp/dist/keama/ |
| H A D | options.c | 35 TAILQ_HEAD(spaces, space) spaces; 408 struct space *space; in spaces_init() local 414 space = (struct space *)malloc(sizeof(*space)); in spaces_init() 415 assert(space != NULL); in spaces_init() 416 memset(space, 0, sizeof(*space)); in spaces_init() 417 space->old = def->old; in spaces_init() 418 space->name = def->name; in spaces_init() 419 space->status = def->status; in spaces_init() 420 TAILQ_INSERT_TAIL(&spaces, space); in spaces_init() 473 option->space = space_lookup(def->space); in options_init() [all …]
|
| /netbsd-src/external/apache2/llvm/dist/clang/docs/ |
| H A D | SYCLSupport.rst | 16 Address space handling 24 section 4.7.7 - `address space classes <https://www.khronos.org/registry/SYCL/specs/sycl-2020/html/… 25 and section 5.9 covers `address space deduction <https://www.khronos.org/registry/SYCL/specs/sycl-2… 26 The SYCL specification allows two modes of address space deduction: "generic as 27 default address space" (see section 5.9.3) and "inferred address space" (see 29 space" mode. 32 the address space qualifier inference as detailed in 35 The default address space is "generic-memory", which is a virtual address space 39 - explicit conversions to/from the default address space from/to the address 40 space-attributed type [all …]
|
| /netbsd-src/crypto/external/bsd/heimdal/dist/lib/asn1/ |
| H A D | gen.c | 525 space(int level) in space() function 571 space (level + 1); in define_asn1() 575 space(level); in define_asn1() 589 space(level); in define_asn1() 595 space(level + 1); in define_asn1() 599 space(level); in define_asn1() 623 space(level + 1); in define_asn1() 637 space(level); in define_asn1() 674 space(level); in define_asn1() 678 space(level); in define_asn1() [all …]
|
| /netbsd-src/external/gpl3/gcc/dist/gcc/ |
| H A D | graphite-sese-to-poly.cc | 61 static isl_pw_aff *extract_affine (scop_p, tree, __isl_take isl_space *space); 66 extract_affine_chrec (scop_p s, tree e, __isl_take isl_space *space) in extract_affine_chrec() argument 68 isl_pw_aff *lhs = extract_affine (s, CHREC_LEFT (e), isl_space_copy (space)); in extract_affine_chrec() 69 isl_pw_aff *rhs = extract_affine (s, CHREC_RIGHT (e), isl_space_copy (space)); in extract_affine_chrec() 70 isl_local_space *ls = isl_local_space_from_space (space); in extract_affine_chrec() 86 extract_affine_mul (scop_p s, tree e, __isl_take isl_space *space) in extract_affine_mul() argument 89 isl_space_copy (space)); in extract_affine_mul() 90 isl_pw_aff *rhs = extract_affine (s, TREE_OPERAND (e, 1), space); in extract_affine_mul() 127 extract_affine_name (int dimension, __isl_take isl_space *space) in extract_affine_name() argument 129 isl_set *dom = isl_set_universe (isl_space_copy (space)); in extract_affine_name() [all …]
|
| /netbsd-src/external/gpl3/gcc.old/dist/gcc/ |
| H A D | graphite-sese-to-poly.c | 70 static isl_pw_aff *extract_affine (scop_p, tree, __isl_take isl_space *space); 75 extract_affine_chrec (scop_p s, tree e, __isl_take isl_space *space) in extract_affine_chrec() argument 77 isl_pw_aff *lhs = extract_affine (s, CHREC_LEFT (e), isl_space_copy (space)); in extract_affine_chrec() 78 isl_pw_aff *rhs = extract_affine (s, CHREC_RIGHT (e), isl_space_copy (space)); in extract_affine_chrec() 79 isl_local_space *ls = isl_local_space_from_space (space); in extract_affine_chrec() 95 extract_affine_mul (scop_p s, tree e, __isl_take isl_space *space) in extract_affine_mul() argument 98 isl_space_copy (space)); in extract_affine_mul() 99 isl_pw_aff *rhs = extract_affine (s, TREE_OPERAND (e, 1), space); in extract_affine_mul() 136 extract_affine_name (int dimension, __isl_take isl_space *space) in extract_affine_name() argument 138 isl_set *dom = isl_set_universe (isl_space_copy (space)); in extract_affine_name() [all …]
|