Home
last modified time | relevance | path

Searched refs:dim1 (Results 1 – 11 of 11) sorted by relevance

/netbsd-src/sys/arch/alpha/pci/
H A Dpci_6600.c324 volatile uint64_t * const dim1 = (pc->pc_eligible_cpus & __BIT(1)) ? in dec_6600_intr_program() local
335 *dim1 = enab1; in dec_6600_intr_program()
340 (void) *dim1; in dec_6600_intr_program()
/netbsd-src/external/gpl3/gcc.old/dist/gcc/d/dmd/
H A Dinitsem.c480 uinteger_t dim1 = ((TypeSArray *)tb)->dim->toInteger(); in visit() local
481 uinteger_t dim2 = dim1; in visit()
493 if (dim1 != dim2) in visit()
495 i->exp->error("mismatched array lengths, %d and %d", (int)dim1, (int)dim2); in visit()
H A Dconstfold.c873 size_t dim1 = es1->len; in Equal() local
875 if (dim1 != dim2) in Equal()
880 for (size_t i = 0; i < dim1; i++) in Equal()
H A Dexpressionsem.c5873 uinteger_t dim1 = ((TypeSArray *)t1)->dim->toInteger(); in visit() local
5874 uinteger_t dim2 = dim1; in visit()
5886 if (dim1 != dim2) in visit()
5888 exp->error("mismatched array lengths, %d and %d", (int)dim1, (int)dim2); in visit()
6030 uinteger_t dim1 = tsa1->dim->toInteger(); in visit() local
6032 if (dim1 != dim2) in visit()
6034 exp->error("mismatched array lengths, %d and %d", (int)dim1, (int)dim2); in visit()
H A Dmtype.c5309 size_t dim1 = !t1->parameters ? 0 : t1->parameters->dim; in covariant() local
5311 if (dim1 || dim2) in covariant()
/netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/
H A Dinitsem.d601 uinteger_t dim1 = tba.dim.toInteger(); in initializerSemantic() local
602 uinteger_t dim2 = dim1; in initializerSemantic()
612 if (dim1 != dim2) in initializerSemantic()
614 … i.exp.error("mismatched array lengths, %d and %d", cast(int)dim1, cast(int)dim2); in initializerSemantic()
H A Dconstfold.d816 size_t dim1 = es1.len; in Equal() local
818 if (dim1 != dim2) in Equal()
823 foreach (i; 0 .. dim1) in Equal()
H A Dexpressionsem.d9446 uinteger_t dim1 = t1.isTypeSArray().dim.toInteger(); in visit() local
9448 if (dim1 + 1 == dim2 || dim2 < dim1) in visit()
9451 auto newt = tsa2.next.sarrayOf(dim1).immutableOf(); in visit()
9484 uinteger_t dim1 = (cast(TypeSArray)t1).dim.toInteger(); in visit() local
9485 uinteger_t dim2 = dim1; in visit()
9496 if (dim1 != dim2) in visit()
9498 … exp.error("mismatched array lengths, %d and %d", cast(int)dim1, cast(int)dim2); in visit()
9721 uinteger_t dim1 = tsa1.dim.toInteger(); in visit() local
9723 if (dim1 != dim2) in visit()
9725 ….error("mismatched array lengths %d and %d for assignment `%s`", cast(int)dim1, cast(int)dim2, exp… in visit()
/netbsd-src/external/mit/isl/dist/
H A Disl_space.c3414 isl_size dim1, dim2; in isl_space_cmp_type() local
3417 dim1 = isl_space_dim(space1, type); in isl_space_cmp_type()
3419 if (dim1 < 0 || dim2 < 0) in isl_space_cmp_type()
3421 if (dim1 != dim2) in isl_space_cmp_type()
3422 return dim1 - dim2; in isl_space_cmp_type()
H A Disl_map.c3712 isl_size dim1, dim2, nparam1, nparam2; in isl_basic_map_intersect() local
3718 dim1 = isl_space_dim(space1, isl_dim_all); in isl_basic_map_intersect()
3722 if (dim1 < 0 || dim2 < 0 || nparam1 < 0 || nparam2 < 0) in isl_basic_map_intersect()
3724 if (dim1 == nparam1 && dim2 != nparam2) in isl_basic_map_intersect()
5885 isl_size dim1, dim2; in check_map_space_equal_total_dim() local
5887 dim1 = isl_map_dim(map, isl_dim_all); in check_map_space_equal_total_dim()
5889 if (dim1 < 0 || dim2 < 0) in check_map_space_equal_total_dim()
5891 if (dim1 == dim2) in check_map_space_equal_total_dim()
9976 isl_size dim1; in basic_set_maximal_difference_at() local
9980 dim1 = isl_basic_set_dim(bset1, isl_dim_set); in basic_set_maximal_difference_at()
[all …]
H A Disl_union_map.c4203 isl_size dim1, dim2; in check_union_map_space_equal_dim() local
4205 dim1 = isl_union_map_dim(umap, isl_dim_param); in check_union_map_space_equal_dim()
4207 if (dim1 < 0 || dim2 < 0) in check_union_map_space_equal_dim()
4209 if (dim1 == dim2) in check_union_map_space_equal_dim()