Searched refs:C1 (Results 1 - 25 of 159) sorted by relevance

1234567

/haiku-buildtools/gcc/gcc/testsuite/gfortran.dg/
H A Dcommon_7.f908 INTEGER, PARAMETER :: C1=1 ! { dg-error "COMMON block 'c1' at \\(1\\) is used as PARAMETER" } local in subroutine:x134
9 COMMON /C1/ I ! { dg-error "COMMON block 'c1' at \\(1\\) is used as PARAMETER" } common in subroutine:x134
H A Dpr46884.f6 CALL G(C1)
7 CALL H(C1(1:4))
/haiku-buildtools/gcc/gcc/testsuite/g++.old-deja/g++.niklas/
H A Dt118.C3 template <class T> class C1 {}; class
4 class C1<int> C1_int_object;
H A Dt135.C3 template <class T> class C1 class
12 friend class C1; // { dg-error "" }
17 template <class T> void C1<T>::diddle_C2 ()
22 C1<int> C1_int_object;
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/template/
H A Dptrmem10.C4 class C1 class
7 C1 ();
8 ~C1 ();
9 const int C1<T_>::* getPtr () const;
18 const int C1<T_>::* C1<T_>::getPtr () const
19 { return &C1<T_>::x; }
H A Dtypedef16.C10 struct C1 struct
19 template<class W> C1 (W w) function in struct:C1
27 C1<int, char> c1 (&c0);
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/parse/
H A Dpr52071.C3 struct C1 { struct
4 C1(int);
9 C2(C1);
18 vc = C2(C1(x = y));
20 vc = (C2(C1(x = y)));
22 vc = (C2(C1((0, x = y))));
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/lto/
H A D20090311_0.C1 class C1 { class
2 public: virtual ~C1() {
5 class C2 : public C1 {
H A D20090311_1.C1 class C1 { class
2 public: virtual ~C1() {
5 class C2 : public C1 {
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/warn/
H A DWunused-4.C11 struct C1 { struct
13 C1(int bi) {} // { dg-warning "unused parameter" "" } function in struct:C1
27 C1 c1 (1);
H A Deffc3.C31 struct C1 { // { dg-warning "" "" } struct
33 C1();
34 ~C1();
/haiku-buildtools/gcc/gcc/testsuite/g++.old-deja/g++.law/
H A Dvtable2.C3 struct C1 struct
5 virtual ~C1();
8 struct C2 : public virtual C1
/haiku-buildtools/gcc/gcc/testsuite/g++.old-deja/g++.mike/
H A Dthunk1.C3 struct C1 struct
5 virtual ~C1();
8 struct C2 : public virtual C1
/haiku-buildtools/gcc/libstdc++-v3/testsuite/23_containers/bitset/cons/
H A D38244.cc30 class C1 class
33 C1() : b(1) { } function in class:C1
42 C1 val1;
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/other/
H A Dswitch1.C10 struct C1 { struct
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/cpp0x/
H A Dconstexpr-54002.C4 class C1 { class
/haiku-buildtools/gcc/libgcc/config/libbid/
H A Dbid64_to_int32.c46 // Note: C1 represents x_significand (UINT64)
51 UINT64 C1; local
69 C1 = (x & MASK_BINARY_SIG2) | MASK_BINARY_OR2;
70 if (C1 > 9999999999999999ull) { // non-canonical
72 C1 = 0;
76 C1 = x & MASK_BINARY_SIG1;
80 if (C1 == 0x0ull) {
89 if (C1 >= 0x0020000000000000ull) { // x >= 2^53
91 if (C1 >= 0x0000000100000000ull) { // x >= 2^32
92 tmp1.d = (double) (C1 >> 3
310 UINT64 C1; local
609 UINT64 C1; local
860 UINT64 C1; local
1117 UINT64 C1; local
1368 UINT64 C1; local
1625 UINT64 C1; local
1847 UINT64 C1; local
2095 UINT64 C1; local
2333 UINT64 C1; local
[all...]
H A Dbid128_next.c50 UINT128 C1; // C1.w[1], C1.w[0] represent x_signif_hi, x_signif_lo (UINT64) local
55 C1.w[1] = x.w[1] & MASK_COEFF;
56 C1.w[0] = x.w[0];
96 C1.w[1] = 0; // significand high
97 C1.w[0] = 0; // significand low
100 if (C1.w[1] > 0x0001ed09bead87c0ull ||
101 (C1.w[1] == 0x0001ed09bead87c0ull
102 && C1
255 UINT128 C1; // C1.w[1], C1.w[0] represent x_signif_hi, x_signif_lo (UINT64) local
[all...]
H A Dbid128_to_int64.c37 // Note: C1.w[1], C1.w[0] represent x_signif_hi, x_signif_lo (all are UINT64)
42 UINT128 C1, C; variable
50 C1.w[1] = x.w[1] & MASK_COEFF;
51 C1.w[0] = x.w[0];
85 if ((C1.w[1] > 0x0001ed09bead87c0ull) ||
86 (C1.w[1] == 0x0001ed09bead87c0ull
87 && (C1.w[0] > 0x378d8e63ffffffffull))
91 } else if ((C1.w[1] == 0x0ull) && (C1
[all...]
H A Dbid64_to_int64.c46 // Note: C1 represents x_significand (UINT64)
50 UINT64 C1; local
69 C1 = (x & MASK_BINARY_SIG2) | MASK_BINARY_OR2;
70 if (C1 > 9999999999999999ull) { // non-canonical
72 C1 = 0;
76 C1 = x & MASK_BINARY_SIG1;
80 if (C1 == 0x0ull) {
89 if (C1 >= 0x0020000000000000ull) { // x >= 2^53
91 if (C1 >= 0x0000000100000000ull) { // x >= 2^32
92 tmp1.d = (double) (C1 >> 3
283 UINT64 C1; local
555 UINT64 C1; local
779 UINT64 C1; local
1009 UINT64 C1; local
1233 UINT64 C1; local
1461 UINT64 C1; local
1657 UINT64 C1; local
1877 UINT64 C1; local
2095 UINT64 C1; local
[all...]
H A Dbid64_next.c48 UINT64 C1; // C1 represents x_signif (UINT64) local
78 C1 = (x & MASK_BINARY_SIG2) | MASK_BINARY_OR2;
79 if (C1 > 9999999999999999ull) { // non-canonical
81 C1 = 0;
85 C1 = x & MASK_BINARY_SIG1;
89 if (C1 == 0x0ull) {
105 if (C1 >= MASK_BINARY_OR2) { // x >= 2^53
107 if (C1 >= 0x0000000100000000ull) { // x >= 2^32
108 tmp1.d = (double) (C1 >> 3
193 UINT64 C1; // C1 represents x_signif (UINT64) local
[all...]
H A Dbid128_to_uint64.c37 // Note: C1.w[1], C1.w[0] represent x_signif_hi, x_signif_lo (all are UINT64)
42 UINT128 C1, C; variable
50 C1.w[1] = x.w[1] & MASK_COEFF;
51 C1.w[0] = x.w[0];
85 if ((C1.w[1] > 0x0001ed09bead87c0ull)
86 || (C1.w[1] == 0x0001ed09bead87c0ull
87 && (C1.w[0] > 0x378d8e63ffffffffull))
91 } else if ((C1.w[1] == 0x0ull) && (C1
[all...]
/haiku-buildtools/gcc/gcc/testsuite/go.test/test/ken/
H A Dcplx1.go15 C1 = R + I // ADD(5,6) const
22 b = (5 + 6i) == C1
28 b = (5 + 6i) != C1
34 b = C1 == (5 + 6i)
40 b = C1 != (5 + 6i)
56 b = a == C1
62 b = a != C1
68 b = C1 == a
74 b = C1 != a
81 if a != C1 {
[all...]
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/compat/init/
H A Ddtor1.h8 struct C1 : public B { struct in inherits:B
9 C1 (int);
25 : public C1, C2, virtual public D, virtual public E
H A Ddtor1_y.C10 C1::C1 (int i) : B (i) {} function in class:C1
18 A::A () : D (0), E (1), C1 (2), C2 (3), x1(4), x2(5) {}

Completed in 233 milliseconds

1234567