Searched refs:sa (Results 1 - 25 of 158) sorted by relevance

1234567

/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/
H A Dgnu99-const-expr-4.c20 static int sa[100]; variable
24 static int (*a1)[] = &sa;
25 static int (*a2)[] = (__typeof__(int (*)[n]))sa;
26 static int (*a4)[] = (__typeof__((int (*)[n])sa))sa;
27 static int (*a5)[] = (__typeof__((int (*)[m++])sa))sa; /* { dg-error "constant" } */
28 static int (*a6)[] = (__typeof__((int (*)[100])(int (*)[m++])sa))sa;
29 static int (*a7)[] = (__typeof__((int (*)[n])sa
[all...]
H A Dc99-const-expr-14.c19 static int sa[100]; variable
26 static int (*a2)[] = (int (*)[n])sa;
27 static int (*a8)[] = (int (*)[(m=n)])sa; /* { dg-error "constant" } */
28 static int (*a9)[] = (int (*)[(m+=n)])sa; /* { dg-error "constant" } */
29 static int (*a10)[] = (int (*)[f(m,n)])sa; /* { dg-error "constant" } */
30 static int (*a11)[] = (int (*)[(m,n)])sa; /* { dg-error "constant" } */
31 static int (*a12)[] = (int (*)[sizeof(int[n])])sa;
32 static int (*a13)[] = (int (*)[sizeof(int[m++])])sa; /* { dg-error "constant" } */
33 static int (*a15)[] = (int (*)[sizeof(*(int (*)[n])sa)])sa;
[all...]
H A Dgnu99-const-expr-3.c19 static int sa[100]; variable
24 static int (*a1)[n] = &sa;
25 static int (*a2)[n] = (__typeof__(int (*)[n]))sa;
26 static int (*a3)[n] = (__typeof__(int (*)[(int){m++}]))sa; /* { dg-error "constant" } */
27 static int (*a4)[n] = (__typeof__((int (*)[n])sa))sa;
28 static int (*a5)[n] = (__typeof__((int (*)[m++])sa))sa; /* { dg-error "constant" } */
29 static int (*a6)[n] = (__typeof__((int (*)[100])(int (*)[m++])sa))sa;
[all...]
H A Dpr32041.c7 struct { float f; } sa[2]; member in struct:S
10 char a[__builtin_offsetof (struct S, sa->f)
11 == __builtin_offsetof (struct S, sa[0].f) ? 1 : -1];
H A Dc99-const-expr-11.c19 static int sa[100]; variable
26 static int (*a1)[n] = &sa;
27 static int (*a2)[n] = (int (*)[n])sa;
28 static int (*a3)[n] = (int (*)[(int){n}])sa;
29 static int (*a4)[n] = (int (*)[(int){m++}])sa; /* { dg-error "constant" } */
30 static int (*a5)[n] = (int (*)[(int){++m}])sa; /* { dg-error "constant" } */
31 static int (*a6)[n] = (int (*)[(int){m--}])sa; /* { dg-error "constant" } */
32 static int (*a7)[n] = (int (*)[(int){--m}])sa; /* { dg-error "constant" } */
33 static int (*a8)[n] = (int (*)[(m=n)])sa; /* { dg-error "constant" } */
34 static int (*a9)[n] = (int (*)[(m+=n)])sa; /* { d
[all...]
H A Dpr28243.c19 static void PSMyArc(double cx, double cy, double radx, double rady, double sa, argument
24 ea = sa + ta;
25 while (sa < ea) {
26 temp = ((sa + 90) / 90) * 90;
27 PSDoArc(cx, sa, ea < temp ? ea : temp);
28 sa = temp;
/haiku-buildtools/gcc/libstdc++-v3/testsuite/20_util/bind/
H A Dsocket.cc37 my_sockaddr sa; // N.B. non-const local
38 size_t len = sizeof(sa); // N.B. size_t not my_socklen_t
39 return bind(fd, &sa, len);
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/ext/
H A Dalignof2.C2 // We were treating alignof (sa.a) as alignof (typeof (sa.a)), which is
13 } sa; variable in typeref:struct:A
23 if (__alignof (sa) != __alignof (sa.a)
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/parse/
H A Doffsetof9.C7 struct { float f; } sa[2]; member in struct:S
10 char a[__builtin_offsetof (S, sa->f)
11 == __builtin_offsetof (S, sa[0].f) ? 1 : -1];
17 struct { float f; } sa[N]; member in struct:T
18 static int foo () { return __builtin_offsetof (T, sa->f); }
19 static int bar () { return __builtin_offsetof (T, sa[0].f); }
22 char b[__builtin_offsetof (T<5>, sa->f)
23 == __builtin_offsetof (T<5>, sa[0].f) ? 1 : -1];
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/pch/
H A Dstatic-1.C4 static A sa; local
/haiku-buildtools/gcc/gcc/testsuite/gfortran.dg/g77/
H A D20000511-1.f2 subroutine saxpy(n,sa,sx,incx,sy,incy)
9 real sx(*),sy(*),sa local in subroutine:saxpy
13 if(sa /= 0.0)then
18 sy(i)= sy(i)+sa*sx(i)
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/cpp0x/
H A Dcast.C8 template <bool> struct sa;
9 template <> struct sa<true> {}; struct
22 sa<sizeof(foo(a)) == 1 * sizeof(long)> t1;
23 sa<sizeof(foo(static_cast<A&&>(a))) == 2 * sizeof(long)> t2;
H A Drv4p.C8 template <bool> struct sa;
9 template <> struct sa<true> {}; struct
44 sa<sizeof(sink_4_1234(a)) == 1 * sizeof(long)> t1;
45 sa<sizeof(sink_4_1234(ca)) == 2 * sizeof(long)> t2;
46 sa<sizeof(sink_4_1234(va)) == 3 * sizeof(long)> t3;
47 sa<sizeof(sink_4_1234(cva)) == 4 * sizeof(long)> t4;
48 sa<sizeof(sink_4_1234(source())) == 2 * sizeof(long)> t5;
49 sa<sizeof(sink_4_1234(c_source())) == 2 * sizeof(long)> t6;
64 sa<sizeof(sink_4_1235(a)) == 1 * sizeof(long)> t1;
65 sa<sizeo
[all...]
H A Drv3p.C8 template <bool> struct sa;
9 template <> struct sa<true> {}; struct
43 sa<sizeof(sink_3_123(a)) == 1 * sizeof(long)> t1;
44 sa<sizeof(sink_3_123(ca)) == 2 * sizeof(long)> t2;
45 sa<sizeof(sink_3_123(va)) == 3 * sizeof(long)> t3;
46 sa<sizeof(sink_3_123(source())) == 2 * sizeof(long)> t5;
47 sa<sizeof(sink_3_123(c_source())) == 2 * sizeof(long)> t6;
61 sa<sizeof(sink_3_124(a)) == 1 * sizeof(long)> t1;
62 sa<sizeof(sink_3_124(ca)) == 2 * sizeof(long)> t2;
63 sa<sizeo
[all...]
H A Drv5p.C8 template <bool> struct sa;
9 template <> struct sa<true> {}; struct
45 sa<sizeof(sink_5_12345(a)) == 1* sizeof(long)> t1;
46 sa<sizeof(sink_5_12345(ca)) == 2* sizeof(long)> t2;
47 sa<sizeof(sink_5_12345(va)) == 3* sizeof(long)> t3;
48 sa<sizeof(sink_5_12345(cva)) == 4* sizeof(long)> t4;
49 sa<sizeof(sink_5_12345(source())) == 5* sizeof(long)> t5;
50 sa<sizeof(sink_5_12345(c_source())) == 2* sizeof(long)> t6;
66 sa<sizeof(sink_5_12346(a)) == 1* sizeof(long)> t1;
67 sa<sizeo
[all...]
H A Dconstexpr-array10.C10 constexpr S sa[2]; variable
12 SA(sa[1].i == 42);
H A Drv6p.C8 template <bool> struct sa;
9 template <> struct sa<true> {}; struct
46 sa<sizeof(sink_6_123456(a)) == 1 * sizeof(long)> t1;
47 sa<sizeof(sink_6_123456(ca)) == 2 * sizeof(long)> t2;
48 sa<sizeof(sink_6_123456(va)) == 3 * sizeof(long)> t3;
49 sa<sizeof(sink_6_123456(cva)) == 4 * sizeof(long)> t4;
50 sa<sizeof(sink_6_123456(source())) == 5 * sizeof(long)> t5;
51 sa<sizeof(sink_6_123456(c_source())) == 6 * sizeof(long)> t6;
68 sa<sizeof(sink_6_123457(a)) == 1 * sizeof(long)> t1;
69 sa<sizeo
[all...]
H A Drv1p.C9 template <bool> struct sa;
10 template <> struct sa<true> {}; struct
42 sa<sizeof(sink_1_1(a)) == 1 * sizeof(long)> t1;
54 sa<sizeof(sink_1_2(a)) == 2 * sizeof(long)> t1;
55 sa<sizeof(sink_1_2(ca)) == 2 * sizeof(long)> t2;
56 sa<sizeof(sink_1_2(source())) == 2 * sizeof(long)> t5;
57 sa<sizeof(sink_1_2(c_source())) == 2 * sizeof(long)> t6;
69 sa<sizeof(sink_1_3(a)) == 3 * sizeof(long)> t1;
70 sa<sizeof(sink_1_3(va)) == 3 * sizeof(long)> t3;
82 sa<sizeo
[all...]
H A Dnamed_refs.C8 template <bool> struct sa;
9 template <> struct sa<true> {}; struct
21 sa<sizeof(foo(a)) == 1 * sizeof(long)> t1;
H A Diop.C12 template <bool> struct sa;
13 template <> struct sa<true> {}; struct
33 sa<sizeof(o << 1) == 1 * sizeof(long)> t1; // Calls os::operator<<(int)
H A Drv7p.C8 template <bool> struct sa;
9 template <> struct sa<true> {}; struct
47 sa<sizeof(sink_7_1234567(a)) == 1 * sizeof(long)> t1;
48 sa<sizeof(sink_7_1234567(ca)) == 2 * sizeof(long)> t2;
49 sa<sizeof(sink_7_1234567(va)) == 3 * sizeof(long)> t3;
50 sa<sizeof(sink_7_1234567(cva)) == 4 * sizeof(long)> t4;
51 sa<sizeof(sink_7_1234567(source())) == 5 * sizeof(long)> t5;
52 sa<sizeof(sink_7_1234567(c_source())) == 6 * sizeof(long)> t6;
53 sa<sizeof(sink_7_1234567(v_source())) == 7 * sizeof(long)> t7;
71 sa<sizeo
[all...]
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/eh/
H A Dsighandle.C19 struct sigaction sa; local
22 sa.sa_sigaction = sighandler;
23 sa.sa_flags = SA_SIGINFO;
25 status = sigaction (SIGSEGV, & sa, NULL);
26 status = sigaction (SIGBUS, & sa, NULL);
/haiku-buildtools/gcc/gcc/testsuite/g++.old-deja/g++.brendan/
H A Dctors3.C8 static A sa; member in class:B
16 A B::sa(1);
/haiku-buildtools/gcc/gcc/testsuite/gcc.c-torture/compile/
H A Dpr32355.c22 struct sigaction sa; local
28 sa.sa_flags = (sig == 17);
29 sigemptyset (&sa.sa_mask);
/haiku-buildtools/gcc/gcc/testsuite/gcc.target/i386/mpx/
H A Dfield-addr-10-nov.c12 struct S sa[10]; variable in typeref:struct:S
23 rd (&sa[argc].arr[0], 0);
24 rd (&sa[argc].arr[0], 99);

Completed in 245 milliseconds

1234567