Searched refs:dim2 (Results 1 - 15 of 15) sorted by relevance

/netbsd-current/sys/arch/alpha/pci/
H A Dpci_6600.c326 volatile uint64_t * const dim2 = (pc->pc_eligible_cpus & __BIT(2)) ? local
336 *dim2 = enab2;
341 (void) *dim2;
/netbsd-current/external/gpl2/groff/dist/src/preproc/pic/
H A Dobject.cpp777 distance dim2 = dim/2.0; local
779 vec[0] = cent + position(dim2.x, -dim2.y);
780 vec[1] = cent + position(dim2.x, dim2.y);
781 vec[2] = cent + position(-dim2.x, dim2.y);
782 vec[3] = cent + position(-dim2.x, -dim2.y);
/netbsd-current/external/gpl3/gcc.old/dist/gcc/d/dmd/
H A Dinitsem.c481 uinteger_t dim2 = dim1; local
485 dim2 = ale->elements ? ale->elements->dim : 0;
491 dim2 = ((TypeSArray *)tx)->dim->toInteger();
493 if (dim1 != dim2)
495 i->exp->error("mismatched array lengths, %d and %d", (int)dim1, (int)dim2);
H A Ddcast.c1864 size_t dim2 = (size_t)((TypeSArray *)tb)->dim->toInteger(); local
1866 //printf("dim from = %d, to = %d\n", (int)se->len, (int)dim2);
1869 if (dim2 != se->len)
1873 size_t d = (dim2 < se->len) ? dim2 : se->len;
1874 void *s = (void *)mem.xmalloc((dim2 + 1) * newsz);
1877 memset((char *)s + d * newsz, 0, (dim2 + 1 - d) * newsz);
1879 se->len = dim2;
H A Dconstfold.c874 size_t dim2 = es2->elements ? es2->elements->dim : 0; local
875 if (dim1 != dim2)
H A Dexpressionsem.c5874 uinteger_t dim2 = dim1; local
5878 dim2 = ale->elements ? ale->elements->dim : 0;
5884 dim2 = ((TypeSArray *)tx)->dim->toInteger();
5886 if (dim1 != dim2)
5888 exp->error("mismatched array lengths, %d and %d", (int)dim1, (int)dim2);
6031 uinteger_t dim2 = tsa2->dim->toInteger(); local
6032 if (dim1 != dim2)
6034 exp->error("mismatched array lengths, %d and %d", (int)dim1, (int)dim2);
H A Dmtype.c5310 size_t dim2 = !t2->parameters ? 0 : t2->parameters->dim; local
5311 if (dim1 || dim2)
/netbsd-current/external/cddl/osnet/dist/tools/ctf/cvt/
H A Ddwarf.c670 Dwarf_Die dim2; local
673 if ((dim2 = die_sibling(dw, dim)) == NULL) {
675 } else if (die_tag(dw, dim2) == DW_TAG_subrange_type) {
679 (uintmax_t)die_off(dw, dim2), ctdp->t_id);
680 tdesc_array_create(dw, dim2, arrtdp, ctdp);
683 (uintmax_t)die_off(dw, dim2));
/netbsd-current/external/gpl3/gcc/dist/gcc/d/dmd/
H A Dinitsem.d602 uinteger_t dim2 = dim1;
605 dim2 = ale.elements ? ale.elements.dim : 0;
610 dim2 = tx.isTypeSArray().dim.toInteger();
612 if (dim1 != dim2)
614 i.exp.error("mismatched array lengths, %d and %d", cast(int)dim1, cast(int)dim2);
H A Ddcast.d2088 size_t dim2 = cast(size_t)tsa.dim.toInteger();
2089 //printf("dim from = %d, to = %d\n", cast(int)se.len, cast(int)dim2);
2092 if (dim2 != se.len)
2096 const d = (dim2 < se.len) ? dim2 : se.len;
2097 void* s = mem.xmalloc((dim2 + 1) * newsz);
2100 memset(s + d * newsz, 0, (dim2 + 1 - d) * newsz);
2101 se.setData(s, dim2, newsz);
H A Dexpressionsem.d9447 uinteger_t dim2 = t2.isTypeSArray().dim.toInteger();
9448 if (dim1 + 1 == dim2 || dim2 < dim1)
9485 uinteger_t dim2 = dim1;
9488 dim2 = ale.elements ? ale.elements.dim : 0;
9494 dim2 = (cast(TypeSArray)tx).dim.toInteger();
9496 if (dim1 != dim2)
9498 exp.error("mismatched array lengths, %d and %d", cast(int)dim1, cast(int)dim2);
9722 uinteger_t dim2 = tsa2.dim.toInteger();
9723 if (dim1 != dim2)
[all...]
H A Dconstfold.d817 size_t dim2 = es2.elements ? es2.elements.dim : 0;
818 if (dim1 != dim2)
/netbsd-current/external/mit/isl/dist/
H A Disl_space.c3414 isl_size dim1, dim2; local
3418 dim2 = isl_space_dim(space2, type);
3419 if (dim1 < 0 || dim2 < 0)
3421 if (dim1 != dim2)
3422 return dim1 - dim2;
H A Disl_union_map.c4203 isl_size dim1, dim2; local
4206 dim2 = isl_space_dim(space, isl_dim_param);
4207 if (dim1 < 0 || dim2 < 0)
4209 if (dim1 == dim2)
H A Disl_map.c3712 isl_size dim1, dim2, nparam1, nparam2; local
3719 dim2 = isl_space_dim(space2, isl_dim_all);
3722 if (dim1 < 0 || dim2 < 0 || nparam1 < 0 || nparam2 < 0)
3724 if (dim1 == nparam1 && dim2 != nparam2)
3727 if (dim2 != nparam2 &&
3879 isl_size dim2, nparam2; local
3912 dim2 = isl_map_dim(map2, isl_dim_all);
3914 if (dim2 < 0 || nparam2 < 0)
3916 if (dim2 != nparam2)
5885 isl_size dim1, dim2; local
[all...]

Completed in 595 milliseconds