Searched refs:ts2 (Results 1 - 6 of 6) sorted by relevance

/haiku-buildtools/gcc/libstdc++-v3/testsuite/20_util/tuple/cons/
H A Dconverting.cc27 std::tuple<int, int> ts2; variable
28 std::tuple<unsigned, unsigned> tu2(ts2);
/haiku-buildtools/gcc/gcc/fortran/
H A Ddependency.c1274 gfc_typespec *ts2 = &expr2->symtree->n.sym->ts; local
1281 if (ts1->type != BT_UNKNOWN && ts2->type != BT_UNKNOWN
1282 && ts1->type != BT_DERIVED && ts2->type != BT_DERIVED)
1284 if (ts1->type != ts2->type || ts1->kind != ts2->kind)
H A Dinterface.c482 gfc_compare_types (gfc_typespec *ts1, gfc_typespec *ts2) argument
488 if (ts1->type == BT_VOID || ts2->type == BT_VOID)
496 if (ts2->type == BT_CLASS && ts1->type == BT_DERIVED
497 && ts2->u.derived->components->ts.u.derived->attr.unlimited_polymorphic
501 if (ts1->type != ts2->type
503 || (ts2->type != BT_DERIVED && ts2->type != BT_CLASS)))
506 return (ts1->kind == ts2->kind);
509 if (gfc_type_compatible (ts1, ts2))
512 return gfc_compare_derived_types (ts1->u.derived ,ts2
[all...]
H A Dsymbol.c4562 If ts1 is nonpolymorphic, ts2 must be the same type.
4563 If ts1 is polymorphic (CLASS), ts2 must be an extension of ts1. */
4566 gfc_type_compatible (gfc_typespec *ts1, gfc_typespec *ts2) argument
4569 bool is_class2 = (ts2->type == BT_CLASS);
4571 bool is_derived2 = (ts2->type == BT_DERIVED);
4579 return (ts1->type == ts2->type);
4582 return gfc_compare_derived_types (ts1->u.derived, ts2->u.derived);
4586 ts2->u.derived->components->ts.u.derived);
4589 ts2->u.derived);
4592 ts2
[all...]
H A Dopenmp.c3513 gfc_typespec *ts1, *ts2; local
3524 ts2 = &expr->value.function.actual->expr->ts;
3529 ts2 = &expr->ts;
3532 if (ts1->type > ts2->type
3533 || (ts1->type == ts2->type && ts1->kind > ts2->kind))
/haiku-buildtools/gcc/gcc/
H A Dfinal.c1649 tree ts1 = s1, ts2 = s2;
1652 while (ts1 != ts2)
1654 gcc_assert (ts1 && ts2);
1655 if (BLOCK_NUMBER (ts1) > BLOCK_NUMBER (ts2))
1657 else if (BLOCK_NUMBER (ts1) < BLOCK_NUMBER (ts2))
1658 ts2 = BLOCK_SUPERCONTEXT (ts2);
1662 ts2 = BLOCK_SUPERCONTEXT (ts2);
1641 tree ts1 = s1, ts2 = s2; local

Completed in 137 milliseconds