Searched refs:counter (Results 1 - 25 of 505) sorted by relevance

1234567891011>>

/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.dg/pch/
H A Dstatic-1.c4 static int counter; local
5 return counter++;
H A Dstatic-2.c4 static int counter; local
5 return counter++;
H A Dcounter-3.hs4 #define counter __COUNTER__
H A Dcounter-1.hs5 #define counter __COUNTER__
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/gcc.dg/pch/
H A Dstatic-1.c4 static int counter; local
5 return counter++;
H A Dstatic-2.c4 static int counter; local
5 return counter++;
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.dg/gomp/appendix-a/
H A Da.22.1.c4 int counter = 0; variable
5 #pragma omp threadprivate(counter)
9 counter++;
10 return (counter);
H A Da.22.2.c7 static int counter = 0; local
8 #pragma omp threadprivate(counter)
9 counter++;
10 return (counter);
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/g++.old-deja/g++.mike/
H A Dp8269.C8 static char* const counter; member in class:Foo_Bar
11 char_ptr Foo_Bar::counter = 0; member in class:Foo_Bar
H A Dp4667.C4 int counter = 0; variable
10 A() { a = counter++; }
14 B() { b = counter++; }
18 C() { c = counter++; }
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/g++.old-deja/g++.mike/
H A Dp8269.C8 static char* const counter; member in class:Foo_Bar
11 char_ptr Foo_Bar::counter = 0; member in class:Foo_Bar
H A Dp4667.C4 int counter = 0; variable
10 A() { a = counter++; }
14 B() { b = counter++; }
18 C() { c = counter++; }
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.dg/cpp/
H A Dcounter-1.c8 #define counter __COUNTER__ macro
14 #if counter != 1
15 #error counter != 1
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.c-torture/execute/
H A D20000224-1.c8 int counter = 0; local
10 while (loop_1 > counter) {
13 counter++;
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/gcc.c-torture/execute/
H A D20000224-1.c8 int counter = 0; local
10 while (loop_1 > counter) {
13 counter++;
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/testsuite/20_util/bind/
H A Dref2.cc33 int counter = 0; local
34 std::bind(&inc, _1)(counter);
35 VERIFY(counter == 1 );
36 std::bind(&inc, std::ref(counter))();
37 VERIFY(counter == 2 );
52 int counter = 0; local
53 std::bind(Inc(), _1)(counter);
54 VERIFY(counter == 1 );
55 std::bind(&Inc::f, Inc(), std::ref(counter))();
56 VERIFY(counter
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/
H A Dstatistics.c36 /* Statistics entry. A integer counter associated to a string ID
51 /* Hash a statistic counter by its string ID. */
109 /* Helper for statistics_fini_pass. Print the counter difference
115 statistics_counter_t *counter = (statistics_counter_t *)*slot; local
116 unsigned HOST_WIDE_INT count = counter->count - counter->prev_dumped_count;
119 if (counter->histogram_p)
121 counter->id, counter->val, count);
124 counter
135 statistics_counter_t *counter = (statistics_counter_t *)*slot; local
165 statistics_counter_t *counter = (statistics_counter_t *)*slot; local
203 statistics_counter_t *counter = (statistics_counter_t *)*slot; local
269 statistics_counter_t **counter; local
293 statistics_counter_t *counter; local
327 statistics_counter_t *counter; local
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/testsuite/22_locale/locale/global_locale_objects/
H A D3.cc26 // Static counter for use in checking ctors/dtors.
27 static std::size_t counter; variable
33 surf(size_t refs = 0): std::locale::facet(refs) { ++counter; }
34 ~surf() { --counter; }
53 VERIFY( counter == 0 );
56 VERIFY( counter == 1 );
60 VERIFY( counter == 1 );
65 VERIFY( counter == 1 );
68 VERIFY( counter == 1 );
71 VERIFY( counter
[all...]
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/libstdc++-v3/testsuite/22_locale/locale/global_locale_objects/
H A D3.cc27 // Static counter for use in checking ctors/dtors.
28 static std::size_t counter; variable
34 surf(size_t refs = 0): std::locale::facet(refs) { ++counter; }
35 ~surf() { --counter; }
54 VERIFY( counter == 0 );
57 VERIFY( counter == 1 );
61 VERIFY( counter == 1 );
66 VERIFY( counter == 1 );
69 VERIFY( counter == 1 );
72 VERIFY( counter
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/g++.dg/ext/
H A Dcleanup-4.C8 static int counter; variable
13 counter += *p;
36 if (counter != 0 + 1 + 2 + 3 + 4 + 5 + 6)
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/g++.old-deja/g++.other/
H A Dsingleton.C20 if ( counter++ == 0 ) throw "just for the heck of it";
26 static int counter; member in class:singleton
29 int singleton::counter; member in class:singleton
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.dg/
H A Dcleanup-4.c8 static int counter; variable
13 counter += *p;
36 if (counter != 0 + 1 + 2 + 3 + 4 + 5 + 6)
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/testsuite/22_locale/facet/
H A D2.cc32 // Static counter for use in checking ctors/dtors.
33 static std::size_t counter; variable
39 surf(size_t refs = 0): std::locale::facet(refs) { ++counter; }
40 ~surf() { --counter; }
53 VERIFY( counter == 0 );
56 VERIFY( counter == 1 );
58 VERIFY( counter == 0 );
61 VERIFY( counter == 0 );
65 VERIFY( counter == 1 );
67 VERIFY( counter
[all...]
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/g++.old-deja/g++.other/
H A Dsingleton.C20 if ( counter++ == 0 ) throw "just for the heck of it";
26 static int counter; member in class:singleton
29 int singleton::counter; member in class:singleton
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/gcc.dg/
H A Dcleanup-4.c8 static int counter; variable
13 counter += *p;
36 if (counter != 0 + 1 + 2 + 3 + 4 + 5 + 6)

Completed in 163 milliseconds

1234567891011>>