Searched refs:count (Results 1 - 25 of 3922) sorted by relevance

1234567891011>>

/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/execute/
H A Dloop-9.c12 int count = 0; local
14 while (false() || count < -123)
15 ++count;
17 if (count)
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)
/openbsd-current/gnu/usr.bin/perl/ext/re/t/
H A Dlexical_debug.pl5 /foo/ and $count++;
9 /bar/ and $count++;
12 /baz/ and $count++;
14 /bop/ and $count++;
19 /boq/ and $count++;
21 /bor/ and $count++;
24 /fip/ and $count++;
28 /fop/ and $count++;
32 /($var)/ or $count++;
34 print "Count=$count\
[all...]
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.other/
H A Darray6.C3 int count = 0; variable
6 count++;
18 if (count != 1)
H A Dbadopt1.C2 // egcs 1.1 fails to increment count
10 int count = 0; local
12 array[count++] = new Derived (); // but then new Base() does
13 if (count!=1)
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.dg/compat/init/
H A Darray5_y.C1 int count; variable
12 if (count == num)
14 count++;
19 count--;
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.jason/
H A Dtemporary.C7 int count = 0; variable
11 A() { ++count; }
12 ~A() { --count; }
18 return count;
H A Dbyval.C3 int count; variable
7 A(int) { count++; }
8 A(const A&) { count++; }
9 ~A() { count--; }
18 return count;
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.mike/
H A Deh29.C4 int count; variable
10 if (count==3)
12 ++count;
15 --count;
24 return count;
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;
H A Dp5469.C3 int count; variable
9 A(int) { ++count; }
10 ~A() { --count; }
20 return count;
H A Dp5469a.C3 int count; variable
9 A(int) { ++count; }
10 ~A() { --count; }
20 return count;
H A Dp7865.C3 int count; variable
6 A() { ++count; }
7 ~A() { --count; }
27 return count;
/openbsd-current/gnu/usr.bin/gcc/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--;
/openbsd-current/lib/libfido2/src/
H A Dbuf.c10 fido_buf_read(const unsigned char **buf, size_t *len, void *dst, size_t count) argument
12 if (count > *len)
15 memcpy(dst, *buf, count);
16 *buf += count;
17 *len -= count;
23 fido_buf_write(unsigned char **buf, size_t *len, const void *src, size_t count) argument
25 if (count > *len)
28 memcpy(*buf, src, count);
29 *buf += count;
30 *len -= count;
[all...]
/openbsd-current/gnu/gcc/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;
/openbsd-current/gnu/gcc/libgomp/config/linux/
H A Domp-lock.h10 typedef struct { int owner, count; } omp_nest_lock_t; member in struct:__anon405
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.ns/
H A Dkoenig9.C12 foo("",count); // ERROR - multiple overloaded count functions
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/gcc.dg/
H A Ddoloop-1.c7 void foo (int count, char* pca, char* pcb) { argument
9 if (count > 10)
10 for (i = 0; i < count; ++i)
13 for (i = 0; i < count; ++i)

Completed in 297 milliseconds

1234567891011>>