Searched refs:xx (Results 1 - 25 of 115) sorted by relevance

12345

/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.ns/
H A Dextern1.C10 extern int xx;
11 xx = 0;
13 int xx = 1; member in namespace:__anon6688
17 xx = 2;
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.other/
H A DexternC2.C6 struct xx struct
9 xx();
12 xx::xx() function in class:xx
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/compile/
H A D930623-1.c3 f (xx)
4 void* xx;
6 __builtin_apply ((void*)g, xx, 200);
H A D20010503-1.c5 foo (int type, double xx) argument
8 f1 (xx);
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.jason/
H A Dctor1.C5 struct xx { struct
6 void (*xx)(void); member in struct:xx
20 struct xx p;
22 p.xx = f;
23 p.xx();
H A Doffset1.C9 struct xx { struct
14 int xx::IsOk(int X)
16 return ((xx::a).IsAlive()); // gets bogus error
H A Doffset2.C9 struct xx { struct
13 struct yy : public xx {
14 yy(foo& a) { xx::a = a; }
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/unsorted/
H A Dpret-arg.c1 foo (a, b, c, d, e, f, g, h, i, j, xx)
2 double xx;
4 return xx + 1.2345;
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/execute/
H A Darith-rand-ll.c54 { unsigned long long xx = x, yy = y, r1, r2; local
56 r1 = xx / yy;
57 r2 = xx % yy;
58 if (r2 >= yy || r1 * yy + r2 != xx)
61 { signed long long xx = x, yy = y, r1, r2; local
62 if ((unsigned long long) xx << 1 == 0 && yy == -1)
64 r1 = xx / yy;
65 r2 = xx % yy;
66 if (ABS (r2) >= (unsigned long long) ABS (yy) || (signed long long) (r1 * yy + r2) != xx)
70 { unsigned int xx local
77 { signed int xx = x, yy = y, r1, r2; local
85 { unsigned short xx = x, yy = y, r1, r2; local
92 { signed short xx = x, yy = y, r1, r2; local
98 { unsigned char xx = x, yy = y, r1, r2; local
105 { signed char xx = x, yy = y, r1, r2; local
[all...]
H A Darith-rand.c54 { unsigned long xx = x, yy = y, r1, r2; local
56 r1 = xx / yy;
57 r2 = xx % yy;
58 if (r2 >= yy || r1 * yy + r2 != xx)
61 { signed long xx = x, yy = y, r1, r2; local
62 if ((unsigned long) xx << 1 == 0 && yy == -1)
64 r1 = xx / yy;
65 r2 = xx % yy;
66 if (ABS (r2) >= (unsigned long) ABS (yy) || (signed long) (r1 * yy + r2) != xx)
70 { unsigned int xx local
77 { signed int xx = x, yy = y, r1, r2; local
85 { unsigned short xx = x, yy = y, r1, r2; local
92 { signed short xx = x, yy = y, r1, r2; local
98 { unsigned char xx = x, yy = y, r1, r2; local
105 { signed char xx = x, yy = y, r1, r2; local
[all...]
H A D20040218-1.c11 long int xx = *y & 255; local
12 return xx + y[1];
17 long int xx = *y & 65535; local
18 return xx + y[1];
23 short int xx = *y & 255; local
24 return xx + y[1];
H A D950511-1.c3 unsigned long long xx; local
4 unsigned long long *x = (unsigned long long *) &xx;
H A D20020529-1.c15 struct xx struct
18 struct xx *b;
22 int f1 (struct xx *);
26 foo (struct xx *p, int b, int c, int d)
59 struct xx s = {0, &s, 23};
66 f1 (struct xx *p)
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/gcc.dg/
H A D20030323-1.c15 unsigned xx = x / 2; local
16 return xx / 2;
/openbsd-current/gnu/usr.bin/perl/t/mro/
H A Ddbic_c3.t13 The xx:: prefixes are just to be sure these bogus declarations never stomp on real ones
18 package xx::DBIx::Class::Core; use mro 'c3';
20 xx::DBIx::Class::Serialize::Storable
21 xx::DBIx::Class::InflateColumn
22 xx::DBIx::Class::Relationship
23 xx::DBIx::Class::PK::Auto
24 xx::DBIx::Class::PK
25 xx::DBIx::Class::Row
26 xx::DBIx::Class::ResultSourceProxy::Table
27 xx
[all...]
H A Ddbic_dfs.t13 The xx:: prefixes are just to be sure these bogus declarations never stomp on real ones
18 package xx::DBIx::Class::Core; use mro 'dfs';
20 xx::DBIx::Class::Serialize::Storable
21 xx::DBIx::Class::InflateColumn
22 xx::DBIx::Class::Relationship
23 xx::DBIx::Class::PK::Auto
24 xx::DBIx::Class::PK
25 xx::DBIx::Class::Row
26 xx::DBIx::Class::ResultSourceProxy::Table
27 xx
[all...]
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.mike/
H A Dp3708b.C11 virtual void xx(int doit) { printf ("A is destructed.\n"); } function in class:A
17 virtual void xx(int doit) { printf ("A1 is destructed.\n"); } function in class:A1
23 virtual void xx(int doit) { function in class:B
25 A1::xx (1);
26 if (doit) A::xx (1);
36 virtual void xx(int doit) { function in class:C
38 if (doit) A::xx (1);
47 virtual void xx(int doit) { function in class:D
54 C::xx (0);
55 B::xx (
[all...]
H A Dp3708.C11 virtual void xx(int doit) { printf ("A is destructed.\n"); } function in class:A
17 virtual void xx(int doit) { printf ("A1 is destructed.\n"); } function in class:A1
23 virtual void xx(int doit) { function in class:B
25 A1::xx (1);
26 if (doit) A::xx (1);
37 virtual void xx(int doit) { function in class:C
42 B::xx (0);
43 if (doit) A::xx (1);
49 a->xx (1);
53 a->xx (
[all...]
H A Dp3708a.C11 virtual void xx(int doit) { printf ("A is destructed.\n"); } function in class:A
17 virtual void xx(int doit) { printf ("A1 is destructed.\n"); } function in class:A1
23 virtual void xx(int doit) { function in class:B
25 A1::xx (1);
26 if (doit) A::xx (1);
37 virtual void xx(int doit) { function in class:C
42 B::xx (0);
43 if (doit) A::xx (1);
49 a->xx (1);
53 a->xx (
[all...]
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.pt/
H A Dt22.C3 class AA { public: static int xx; }; member in class:AA
9 int AA::xx; member in class:AA
H A Dm4.C5 char xx[] ="../tests/m4.cc:1: warning: return type specification for constructor invalid"; variable
H A Dm6.C5 char* xx[] = { variable
H A Dm3.C9 char xx[]="../tests/m3.cc:4: redefinition of `struct A'"; variable
H A Dm5.C6 char xx[]="../tests/m5.cc:3: Segmentation violation"; variable
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.law/
H A Dvisibility12.C16 int xx(void) { return (aa); } // aa should be invisible// ERROR - .* function in class:c

Completed in 123 milliseconds

12345