Searched refs:U2 (Results 1 - 22 of 22) sorted by relevance

/haiku-buildtools/gcc/gcc/testsuite/g++.dg/cpp0x/
H A Dgen-attrs-32.C14 typedef union U1 { int i; } U2 [[gnu::transparent_union]]; // { dg-warning "ignored" } typedef in typeref:union:U1
17 static void foo2(U2) {} // { dg-error "redefinition" }
19 void bar2(U1 u1, U2 u2)
H A Dalias-decl-39.C8 using U2 = U1<T1>;
11 using U3 = U2<T1, Ts...>;
H A Dsfinae2.C12 template<typename U1, typename U2, typename... Args2>
13 static decltype(declval<U1>().construct(declval<U2*>(), declval<Args2>()...), one()) test(int);
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/ext/
H A Dattrib32.C13 typedef union U1 { int i; } U2 __attribute__((transparent_union)); // { dg-warning "ignored" } typedef in typeref:union:U1
16 static void foo2(U2) {} // { dg-error "redefinition" }
18 void bar2(U1 u1, U2 u2)
/haiku-buildtools/gcc/libstdc++-v3/testsuite/tr1/6_containers/headers/tuple/
H A Dsynopsis.cc55 template<class T1, class T2, ..., class TM, class U1, class U2, ..., class UM>
56 bool operator==(const tuple<T1, T2, ..., TM>&, const tuple<U1, U2, ..., UM>&);
57 template<class T1, class T2, ..., class TM, class U1, class U2, ..., class UM>
58 bool operator<(const tuple<T1, T2, ..., TM>&, const tuple<U1, U2, ..., UM>&);
59 template<class T1, class T2, ..., class TM, class U1, class U2, ..., class UM>
60 bool operator!=(const tuple<T1, T2, ..., TM>&, const tuple<U1, U2, ..., UM>&);
61 template<class T1, class T2, ..., class TM, class U1, class U2, ..., class UM>
62 bool operator>(const tuple<T1, T2, ..., TM>&, const tuple<U1, U2, ..., UM>&);
63 template<class T1, class T2, ..., class TM, class U1, class U2, ..., class UM>
64 bool operator<=(const tuple<T1, T2, ..., TM>&, const tuple<U1, U2,
[all...]
/haiku-buildtools/gcc/gcc/testsuite/g++.old-deja/g++.other/
H A Dfriend10.C18 typedef Object<Tag2> U2; typedef in namespace:MySpace
23 Forgotten(U2());
/haiku-buildtools/gcc/gmp/mpf/
H A Dsqrt_ui.c57 #define U2 (GMP_NUMB_BITS < BITS_PER_ULONG) macro
78 rsize = zeros + 1 + U2;
85 #if U2
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/other/
H A Dcrash-6.C15 template<class U2,
16 class = typename enable_if<is_constructible<T2,U2&&>::value>::type
18 pair(const T1&, U2&&) { }
/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/ipa/
H A Dpr64041.c14 union U2 union
28 fn2 (union U1 p1, union U2 p2)
/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/
H A Dtransparent-union-1.c11 typedef union { int *i; long *l; } U2 typedef in typeref:union:__anon2406
13 extern void f2 (U2);
24 extern void f5 (U2);
43 extern void f10 (U2);
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/template/
H A Dtypedef8.C5 template <class U1, class U2>
6 tuple& operator=(const pair<U1, U2>& k) { }
/haiku-buildtools/gcc/contrib/
H A Dparanoia.cc76 E0 L Milestone U2
988 FLOAT OneUlp, UfThold, U1, U2; member in struct:Paranoia
1004 /*U2 gap above 1.0, i.e, 1.0+U2 is next number above 1.0 */
1064 U2 = "0.001";
1145 U2 = Radix * U1;
1152 E9 = U2;
1160 if (X < U2)
1161 X = U2;
1166 U2
[all...]
/haiku-buildtools/gcc/gcc/testsuite/c-c++-common/
H A Draw-string-1.c63 const char32_t U2[] = UR"*|*(a\ variable
122 if (sizeof (U2) != sizeof (U3)
123 || __builtin_memcmp (U2, U3, sizeof (U2)) != 0)
/haiku-buildtools/gcc/gcc/testsuite/go.test/test/
H A Dsizeof.go21 U2
24 type U2 struct { type
47 if unsafe.Offsetof(t2.U2.C) != 4 {
48 println(unsafe.Offsetof(t2.U2.C), "!= 4")
49 panic("unsafe.Offsetof(t2.U2.C) != 4")
51 if unsafe.Offsetof(p2.U2.C) != 4 {
52 println(unsafe.Offsetof(p2.U2.C), "!= 4")
53 panic("unsafe.Offsetof(p2.U2.C) != 4")
/haiku-buildtools/gcc/gcc/testsuite/g++.old-deja/g++.pt/
H A Dttp64.C39 template <template <class U2> class O> struct rebind { typedef B<O> other ;};
40 template <template <class U2> class O> B & operator=(const B<O> o) {
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/asan/
H A Dasan_test_utils.h57 typedef uint16_t U2; typedef
/haiku-buildtools/gcc/libquadmath/math/
H A Dtanq.c80 U2 = -4.180787672237927475505536849168729386782E6Q, variable
123 v = U0 + z * (U1 + z * (U2 + z * (U3 + z * (U4 + z))));
/haiku-buildtools/gcc/libstdc++-v3/testsuite/20_util/result_of/
H A Dsfinae_friendly_1.cc107 union U2 { union
350 static_assert(is_type<std::result_of<U2()>, void>(), "Error!");
351 static_assert(is_type<std::result_of<const U2&()>, void>(), "Error!");
352 static_assert(is_type<std::result_of<U2&()>, void>(), "Error!");
353 static_assert(is_type<std::result_of<U2(double)>, bool>(), "Error!");
354 static_assert(is_type<std::result_of<const U2&(double)>, int>(), "Error!");
355 static_assert(is_type<std::result_of<U2&(double)>, bool>(), "Error!");
356 static_assert(is_type<std::result_of<U2(int)>, bool>(), "Error!");
357 static_assert(is_type<std::result_of<U2&(int)>, bool>(), "Error!");
358 static_assert(is_type<std::result_of<const U2
[all...]
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/torture/
H A Dpr68220.C35 template <typename F, typename T1, typename U1, typename U2, typename U3,
37 struct resolve_bind_arg<bind1<F, T1>, U1, U2, U3, U4, U5> {
41 template <typename U1, typename U2> struct apply {
43 U2, int, int, int> t2;
/haiku-buildtools/isl/
H A Disl_equalities.c447 * M [U1 U2] = M U = H = [H1 0]
455 * x = [U1 U2] [ x1' ] = [U1 U2] [Q1] x
467 * x = U1 H1^{-1} c + U2 x2'
477 struct isl_mat *H = NULL, *C = NULL, *H1, *U = NULL, *U1, *U2, *TC; local
526 U2 = isl_mat_sub_alloc(U, 0, U->n_row, B->n_row, U->n_row - B->n_row);
527 U2 = isl_mat_lin_to_aff(U2);
530 TC = isl_mat_aff_direct_sum(TC, U2);
H A Disl_morph.c338 * M [U1 U2] = M U = H = [H1 0]
346 * x = [U1 U2] [ x1' ] = [U1 U2] [Q1] x
360 * x = U1 H1^{-1} C(p) + U2 x2'
378 isl_mat *H, *U, *Q, *C = NULL, *H1, *U1, *U2; local
448 U2 = isl_mat_sub_alloc(U, 0, U->n_row, n_eq, U->n_row - n_eq);
449 U2 = isl_mat_lin_to_aff(U2);
453 C = isl_mat_aff_direct_sum(C, U2);
/haiku-buildtools/gcc/libstdc++-v3/testsuite/20_util/common_type/requirements/
H A Dsfinae_friendly_1.cc100 union U2 union
270 static_assert(!has_type<std::common_type<U, U2>>(), "");

Completed in 171 milliseconds