Searched refs:S5 (Results 1 - 25 of 124) sorted by relevance

12345

/external/clang/test/SemaCXX/
H A Dwarn-dangling-field.cpp39 struct S5 { struct
42 S5 s5 = { 0 }; // ok, lifetime-extended
45 S5 s5; // expected-note {{here}}
49 struct S7 : S5 {
50 S7() : S5 { 0 } {} // expected-warning {{binding reference member 'x' to a temporary}}
H A Dnew-null.cpp57 template<typename ...T> struct S5 { // expected-warning 0-1{{extension}} struct
62 template struct S5<>;
63 template struct S5<int>; // expected-note {{in instantiation of}}
H A Ddcl_ambig_res.cpp69 struct S5 { struct
73 int v(int(S5::value)); // expected-warning{{disambiguated as a function declaration}} expected-note{{add a pair of parentheses}} expected-error{{parameter declarator cannot be qualified}}
H A Delaborated-type-specifier.cpp41 int test_funcparam_scope(struct S5 * s5) {
42 struct S5 { int y; } *s5_2 = 0; struct
43 if (s5 == s5_2) return 1; // expected-error {{comparison of distinct pointer types ('struct S5 *' and 'struct S5 *')}}
H A Dtype-definition-in-specifier.cpp8 struct S5;
23 struct S5 { int x; } f1() { return S5(); } // expected-error{{result type}} struct
/external/clang/test/OpenMP/
H A Dparallel_copyin_messages.cpp30 class S5 { class
32 S5():a(0) {} function in class:S5
33 S5 &operator =(const S5 &s5) { return *this; } // expected-note {{implicitly declared private here}}
35 S5(int v):a(v) { } function in class:S5
54 S5 m(4);
69 #pragma omp parallel copyin(m) // expected-error {{'operator=' is a private member of 'S5'}}
H A Dparallel_sections_copyin_messages.cpp33 class S5 { class
35 S5() : a(0) {} function in class:S5
36 S5 &operator=(const S5 &s5) { return *this; } // expected-note {{implicitly declared private here}}
39 S5(int v) : a(v) {} function in class:S5
50 S5 m(4);
103 #pragma omp parallel sections copyin(m) // expected-error {{'operator=' is a private member of 'S5'}}
H A Dthreadprivate_codegen.cpp18 // CHECK-DAG: [[S5:%.+]] = type { [[INT]], [[INT]], [[INT]] }
25 // CHECK-DEBUG-DAG: [[S5:%.+]] = type { [[INT]], [[INT]], [[INT]] }
31 // CHECK-TLS-DAG: [[S5:%.+]] = type { [[INT]], [[INT]], [[INT]] }
100 struct S5 { struct
102 S5() function in struct:S5
105 S5(int a) function in struct:S5
108 S5(const S5 &s) { function in struct:S5
111 ~S5() {
126 // CHECK-DAG: [[GS3:@.+]] = external global [[S5]]
[all...]
H A Dparallel_firstprivate_messages.cpp39 class S5 { class
41 S5():a(0) {} function in class:S5
42 S5(const S5 &s5):a(s5.a) { } // expected-note {{implicitly declared private here}} function in class:S5
44 S5(int v):a(v) { } function in class:S5
62 S5 g(5);
81 #pragma omp parallel firstprivate(e, g) // expected-error {{calling a private constructor of class 'S4'}} expected-error {{calling a private constructor of class 'S5'}}
H A Dparallel_for_copyin_messages.cpp33 class S5 { class
35 S5() : a(0) {} function in class:S5
36 S5 &operator=(const S5 &s5) { return *this; } // expected-note {{implicitly declared private here}}
39 S5(int v) : a(v) {} function in class:S5
50 S5 m(4);
93 #pragma omp parallel for copyin(m) // expected-error {{'operator=' is a private member of 'S5'}}
H A Dparallel_for_simd_copyin_messages.cpp33 class S5 { class
35 S5() : a(0) {} function in class:S5
36 S5 &operator=(const S5 &s5) { return *this; } // expected-note {{implicitly declared private here}}
39 S5(int v) : a(v) {} function in class:S5
50 S5 m(4);
93 #pragma omp parallel for simd copyin(m) // expected-error {{'operator=' is a private member of 'S5'}}
H A Dparallel_sections_shared_messages.cpp39 class S5 { class
41 S5() : a(0) {} function in class:S5
42 S5(const S5 &s5) : a(s5.a) {} function in class:S5
45 S5(int v) : a(v) {} function in class:S5
63 S5 g(5);
H A Dparallel_shared_messages.cpp36 class S5 { class
38 S5():a(0) {} function in class:S5
39 S5(const S5 &s5):a(s5.a) { } function in class:S5
41 S5(int v):a(v) { } function in class:S5
59 S5 g(5);
H A Dtask_firstprivate_messages.cpp42 class S5 { class
44 S5() : a(0) {} function in class:S5
45 S5(const S5 &s5) : a(s5.a) {} // expected-note 2 {{implicitly declared private here}} function in class:S5
48 S5(int v) : a(v) {} function in class:S5
71 S5 g(5);
90 #pragma omp task firstprivate(e, g) // expected-error 2 {{calling a private constructor of class 'S4'}} expected-error 2 {{calling a private constructor of class 'S5'}}
H A Dtask_shared_messages.cpp39 class S5 { class
41 S5() : a(0) {} function in class:S5
42 S5(const S5 &s5) : a(s5.a) {} function in class:S5
45 S5(int v) : a(v) {} function in class:S5
63 S5 g(5);
H A Dparallel_private_messages.cpp34 class S5 { class
36 S5():a(0) {} // expected-note {{implicitly declared private here}} function in class:S5
38 S5(int v):a(v) { } function in class:S5
56 S5 g[] = {5, 6};
73 #pragma omp parallel private(e, g) // expected-error {{calling a private constructor of class 'S4'}} expected-error {{calling a private constructor of class 'S5'}}
H A Dtask_private_messages.cpp37 class S5 { class
39 S5() : a(0) {} // expected-note {{implicitly declared private here}} function in class:S5
42 S5(int v) : a(v) {} function in class:S5
65 S5 g(5);
82 #pragma omp task private(e, g) // expected-error {{calling a private constructor of class 'S4'}} expected-error {{calling a private constructor of class 'S5'}}
H A Dteams_firstprivate_messages.cpp41 class S5 { class
43 S5() : a(0) {} function in class:S5
44 S5(const S5 &s5) : a(s5.a) {} // expected-note {{implicitly declared private here}} function in class:S5
46 S5(int v) : a(v) {} function in class:S5
64 S5 g(5);
113 #pragma omp teams firstprivate(e, g) // expected-error {{calling a private constructor of class 'S4'}} expected-error {{calling a private constructor of class 'S5'}}
H A Dteams_shared_messages.cpp36 class S5 { class
38 S5():a(0) {} function in class:S5
39 S5(const S5 &s5):a(s5.a) { } function in class:S5
41 S5(int v):a(v) { } function in class:S5
59 S5 g(5);
/external/boringssl/src/decrepit/cast/
H A Dcast.c247 #define S5 CAST_S_table5 macro
284 l = X[0] ^ S4[x[13]] ^ S5[x[15]] ^ S6[x[12]] ^ S7[x[14]] ^ S6[x[8]];
286 l = X[2] ^ S4[z[0]] ^ S5[z[2]] ^ S6[z[1]] ^ S7[z[3]] ^ S7[x[10]];
288 l = X[3] ^ S4[z[7]] ^ S5[z[6]] ^ S6[z[5]] ^ S7[z[4]] ^ S4[x[9]];
290 l = X[1] ^ S4[z[10]] ^ S5[z[9]] ^ S6[z[11]] ^ S7[z[8]] ^ S5[x[11]];
293 K[0] = S4[z[8]] ^ S5[z[9]] ^ S6[z[7]] ^ S7[z[6]] ^ S4[z[2]];
294 K[1] = S4[z[10]] ^ S5[z[11]] ^ S6[z[5]] ^ S7[z[4]] ^ S5[z[6]];
295 K[2] = S4[z[12]] ^ S5[
[all...]
/external/clang/test/CodeGenCXX/
H A Dwarn-padded-packed.cpp24 struct S5 { struct
29 } u; // expected-warning {{padding struct 'S5' with 3 bytes to align 'u'}}
76 void f(S1*, S2*, S3*, S4*, S5*, S6*, S7*, S8*, S9*, S10*, S11*, S12*, S13*) { }
/external/fdlibm/
H A Dk_sin.c30 * |----- - (1+S1*x +S2*x +S3*x +S4*x +S5*x +S6*x )| <= 2
37 * r = x *(S2+x *(S3+x *(S4+x *(S5+x *S6))))
54 S5 = -2.50507602534068634195e-08, /* 0xBE5AE5E6, 0x8A2B9CEB */ variable
71 r = S2+z*(S3+z*(S4+z*(S5+z*S6)));
/external/clang/test/CXX/dcl.decl/dcl.fct.def/dcl.fct.def.default/
H A Dp2.cpp51 struct S5 { struct
52 constexpr S5();
55 constexpr S5::S5() = default;
56 static_assert(S5().m == 4, "");
/external/fec/
H A Dsumsq_sse2_assist.s24 movaps (%esi),%xmm0 # S0 S1 S2 S3 S4 S5 S6 S7
25 pmaddwd %xmm0,%xmm0 # (S0*S0+S1*S1) (S2*S2+S3*S3) (S4*S4+S5*S5) (S6*S6+S7*S7)
27 pand %xmm3,%xmm1 # (S0*S0+S1*S1) 0 (S4*S4+S5*S5) 0
/external/clang/test/CXX/class.access/class.friend/
H A Dp11.cpp55 struct S5 { struct

Completed in 417 milliseconds

12345