Searched refs:count (Results 26 - 50 of 3861) sorted by relevance

1234567891011>>

/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/g++.old-deja/g++.mike/
H A Deh31.C4 int count; variable
8 Foo() { ++count; }
9 Foo(const Foo&) { ++count; }
10 ~Foo() { --count; }
19 if (count == 1)
H A Dp7912.C5 int count = 0; variable
9 Foo() { ++count; };
10 Foo(const Foo&) { ++count; };
11 ~Foo() { --count; };
22 return count;
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/gcc.c-torture/compile/
H A D20030125-1.c1 int count; variable
7 if (count) {
8 if (count)
17 if (!count)
18 count--;
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.c-torture/execute/
H A D960311-1.c7 int count; variable
9 void a1() { ++count; }
25 count = 0;
27 if (count != 0)
30 count = 0;
32 if (count != 1)
35 count = 0;
37 if (count != 1)
40 count = 0;
42 if (count !
[all...]
H A D960311-2.c7 int count; variable
9 void a1() { ++count; }
25 count = 0;
27 if (count != 0)
30 count = 0;
32 if (count != 1)
35 count = 0;
37 if (count != 1)
40 count = 0;
42 if (count !
[all...]
H A D960311-3.c7 int count; variable
9 void a1() { ++count; }
25 count = 0;
27 if (count != 0)
30 count = 0;
32 if (count != 1)
35 count = 0;
37 if (count != 1)
40 count = 0;
42 if (count !
[all...]
H A D990130-1.c1 int count = 0; variable
7 ++count;
20 if (count != 1)
H A Dloop-10.c3 static int count = 0; variable
8 count++;
28 if (count != 2)
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/gcc.c-torture/execute/
H A D960311-1.c7 int count; variable
9 void a1() { ++count; }
25 count = 0;
27 if (count != 0)
30 count = 0;
32 if (count != 1)
35 count = 0;
37 if (count != 1)
40 count = 0;
42 if (count !
[all...]
H A D960311-2.c7 int count; variable
9 void a1() { ++count; }
25 count = 0;
27 if (count != 0)
30 count = 0;
32 if (count != 1)
35 count = 0;
37 if (count != 1)
40 count = 0;
42 if (count !
[all...]
H A D960311-3.c7 int count; variable
9 void a1() { ++count; }
25 count = 0;
27 if (count != 0)
30 count = 0;
32 if (count != 1)
35 count = 0;
37 if (count != 1)
40 count = 0;
42 if (count !
[all...]
H A D990130-1.c1 int count = 0; variable
7 ++count;
20 if (count != 1)
H A Dloop-10.c3 static int count = 0; variable
8 count++;
28 if (count != 2)
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/g++.dg/cpp0x/
H A Dvariadic11.C2 template<typename...> struct count;
5 struct count<> { struct
10 struct count<T, Args...> { struct
11 static const int value = 1 + count<Args...>::value;
14 int a0[count<>::value == 0? 1 : -1];
15 int a1[count<char>::value == 1? 1 : -1];
16 int a2[count<char, short>::value == 2? 1 : -1];
17 int a3[count<char, short, int>::value == 3? 1 : -1];
18 int a4[count<char, short, int, long>::value == 4? 1 : -1];
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/config/h8300/
H A Dparityhi2.c31 int count = 0; local
34 count++;
35 return count & 1;
H A Dpopcounthi2.c31 int count = 0; local
34 count++;
35 return count;
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/g++.old-deja/g++.other/
H A Dbadopt1.C4 // egcs 1.1 fails to increment count
11 int count = 0; local
13 array[count++] = new Derived (); // but then new Base() does
14 if (count!=1)
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/g++.old-deja/g++.other/
H A Dbadopt1.C4 // egcs 1.1 fails to increment count
11 int count = 0; local
13 array[count++] = new Derived (); // but then new Base() does
14 if (count!=1)
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/config/h8300/
H A Dparityhi2.c36 int count = 0; local
39 count++;
40 return count & 1;
H A Dpopcounthi2.c36 int count = 0; local
39 count++;
40 return count;
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/g++.dg/eh/
H A Dpr43365.C6 static int count; member in class:Counter
7 ~Counter() { count += 1; }
10 int Counter::count = 0; member in class:Counter
27 if (Counter::count != 1)
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/g++.old-deja/g++.mike/
H A Dp5469.C4 int count; variable
10 A(int) { ++count; }
11 ~A() { --count; }
21 return count;
H A Dp5469a.C4 int count; variable
10 A(int) { ++count; }
11 ~A() { --count; }
21 return count;
H A Dp7865.C4 int count; variable
7 A() { ++count; }
8 ~A() { --count; }
28 return count;
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/g++.old-deja/g++.ns/
H A Dkoenig9.C12 foo("",count); // { dg-error "" } multiple overloaded count functions

Completed in 169 milliseconds

1234567891011>>