Searched defs:S5 (Results 51 - 75 of 83) sorted by relevance

1234

/external/clang/test/OpenMP/
H A Dparallel_sections_lastprivate_messages.cpp44 class S5 { class
46 S5() : a(0) {} // expected-note {{implicitly declared private here}} function in class:S5
49 S5(const S5 &s5) : a(s5.a) {} function in class:S5
50 S5(int v) : a(v) {} function in class:S5
157 S5 g(5);
235 #pragma omp parallel sections lastprivate(e, g) // expected-error {{calling a private constructor of class 'S4'}} expected-error {{calling a private constructor of class 'S5'}}
277 return foomain<S4, S5>(argc, argv); // expected-note {{in instantiation of function template specialization 'foomain<S4, S5>' requested here}}
H A Dsections_firstprivate_messages.cpp43 class S5 { class
45 S5(const S5 &s5) : a(s5.a) {} // expected-note 4 {{implicitly declared private here}} function in class:S5
48 S5() : a(0) {} function in class:S5
49 S5(int v) : a(v) {} function in class:S5
120 #pragma omp sections firstprivate(e, g) // expected-error {{calling a private constructor of class 'S4'}} expected-error {{calling a private constructor of class 'S5'}}
156 #pragma omp sections lastprivate(g) firstprivate(g) // expected-error {{calling a private constructor of class 'S5'}}
185 S5 g(5);
282 #pragma omp sections firstprivate(e, g) // expected-error {{calling a private constructor of class 'S4'}} expected-error {{calling a private constructor of class 'S5'}}
312 #pragma omp sections lastprivate(g) firstprivate(g) // expected-error {{calling a private constructor of class 'S5'}}
[all...]
H A Dsections_lastprivate_messages.cpp44 class S5 { class
46 S5() : a(0) {} // expected-note {{implicitly declared private here}} function in class:S5
49 S5(const S5 &s5) : a(s5.a) {} function in class:S5
50 S5(int v) : a(v) {} function in class:S5
171 S5 g(5);
268 #pragma omp sections lastprivate(e, g) // expected-error {{calling a private constructor of class 'S4'}} expected-error {{calling a private constructor of class 'S5'}}
317 return foomain<S4, S5>(argc, argv); // expected-note {{in instantiation of function template specialization 'foomain<S4, S5>' requested here}}
H A Dsimd_aligned_messages.cpp97 class S5 { class
99 S5():a(0) {} function in class:S5
101 S5(int v):a(v) { } function in class:S5
H A Dsimd_lastprivate_messages.cpp44 class S5 { class
46 S5() : a(0) {} // expected-note {{implicitly declared private here}} function in class:S5
49 S5(const S5 &s5) : a(s5.a) {} function in class:S5
50 S5(int v) : a(v) {} function in class:S5
134 S5 g(5);
193 #pragma omp simd lastprivate(e, g) // expected-error {{calling a private constructor of class 'S4'}} expected-error {{calling a private constructor of class 'S5'}}
H A Dsimd_linear_messages.cpp91 class S5 { class
93 S5():a(0) {} function in class:S5
95 S5(int v):a(v) { } function in class:S5
167 S5 g(5); // expected-note {{'g' defined here}}
193 // expected-error@+1 {{argument of a linear clause should be of integral or pointer type, not 'S5'}}
H A Dsingle_firstprivate_messages.cpp43 class S5 { class
45 S5(const S5 &s5) : a(s5.a) {} // expected-note 4 {{implicitly declared private here}} function in class:S5
48 S5() : a(0) {} function in class:S5
49 S5(int v) : a(v) {} function in class:S5
100 #pragma omp single firstprivate(e, g) // expected-error {{calling a private constructor of class 'S4'}} expected-error {{calling a private constructor of class 'S5'}}
124 #pragma omp single firstprivate(g) // expected-error {{calling a private constructor of class 'S5'}}
147 S5 g(5);
208 #pragma omp single firstprivate(e, g) // expected-error {{calling a private constructor of class 'S4'}} expected-error {{calling a private constructor of class 'S5'}}
226 #pragma omp single firstprivate(g) // expected-error {{calling a private constructor of class 'S5'}}
[all...]
H A Dfor_reduction_messages.cpp47 class S5 { class
49 S5() : a(0) {} // expected-note {{implicitly declared private here}} function in class:S5
50 S5(const S5 &s5) : a(s5.a) {} function in class:S5
51 S5 &operator+(const S5 &arg);
54 S5(int v) : a(v) {} function in class:S5
220 S5 g(5);
316 #pragma omp for reduction(& : e, g) // expected-error {{calling a private constructor of class 'S4'}} expected-error {{calling a private constructor of class 'S5'}} expected-error {{invalid operands to binary expression ('S4' and 'S4')}} expected-error {{invalid operands to binary expression ('S5' an
[all...]
H A Dfor_simd_reduction_messages.cpp47 class S5 { class
49 S5() : a(0) {} // expected-note {{implicitly declared private here}} function in class:S5
50 S5(const S5 &s5) : a(s5.a) {} function in class:S5
51 S5 &operator+(const S5 &arg);
54 S5(int v) : a(v) {} function in class:S5
220 S5 g(5);
316 #pragma omp for simd reduction(& : e, g) // expected-error {{calling a private constructor of class 'S4'}} expected-error {{invalid operands to binary expression ('S4' and 'S4')}} expected-error {{calling a private constructor of class 'S5'}} expected-error {{invalid operands to binary expression ('S5' an
[all...]
H A Dparallel_for_reduction_messages.cpp47 class S5 { class
49 S5() : a(0) {} // expected-note {{implicitly declared private here}} function in class:S5
50 S5(const S5 &s5) : a(s5.a) {} function in class:S5
51 S5 &operator+(const S5 &arg);
54 S5(int v) : a(v) {} function in class:S5
193 S5 g(5);
266 #pragma omp parallel for reduction(& : e, g) // expected-error {{calling a private constructor of class 'S4'}} expected-error {{invalid operands to binary expression ('S4' and 'S4')}} expected-error {{calling a private constructor of class 'S5'}} expected-error {{invalid operands to binary expression ('S5' an
[all...]
H A Dparallel_for_simd_reduction_messages.cpp47 class S5 { class
49 S5() : a(0) {} // expected-note {{implicitly declared private here}} function in class:S5
50 S5(const S5 &s5) : a(s5.a) {} function in class:S5
51 S5 &operator+(const S5 &arg);
54 S5(int v) : a(v) {} function in class:S5
193 S5 g(5);
266 #pragma omp parallel for simd reduction(& : e, g) // expected-error {{calling a private constructor of class 'S4'}} expected-error {{invalid operands to binary expression ('S4' and 'S4')}} expected-error {{calling a private constructor of class 'S5'}} expected-error {{invalid operands to binary expression ('S5' an
[all...]
H A Dparallel_reduction_messages.cpp47 class S5 { class
49 S5() : a(0) {} // expected-note {{implicitly declared private here}} function in class:S5
50 S5(const S5 &s5) : a(s5.a) {} function in class:S5
51 S5 &operator+(const S5 &arg);
54 S5(int v) : a(v) {} function in class:S5
166 S5 g(5);
217 #pragma omp parallel reduction(& : e, g) // expected-error {{calling a private constructor of class 'S4'}} expected-error {{nvalid operands to binary expression ('S4' and 'S4')}} expected-error {{calling a private constructor of class 'S5'}} expected-error {{invalid operands to binary expression ('S5' an
[all...]
H A Dparallel_sections_reduction_messages.cpp47 class S5 { class
49 S5() : a(0) {} // expected-note {{implicitly declared private here}} function in class:S5
50 S5(const S5 &s5) : a(s5.a) {} function in class:S5
51 S5 &operator+(const S5 &arg);
54 S5(int v) : a(v) {} function in class:S5
224 S5 g(5);
319 #pragma omp parallel sections reduction(& : e, g) // expected-error {{calling a private constructor of class 'S4'}} expected-error {{invalid operands to binary expression ('S4' and 'S4')}} expected-error {{calling a private constructor of class 'S5'}} expected-error {{invalid operands to binary expression ('S5' an
[all...]
H A Dsections_reduction_messages.cpp47 class S5 { class
49 S5() : a(0) {} // expected-note {{implicitly declared private here}} function in class:S5
50 S5(const S5 &s5) : a(s5.a) {} function in class:S5
51 S5 &operator+(const S5 &arg);
54 S5(int v) : a(v) {} function in class:S5
251 S5 g(5);
369 #pragma omp sections reduction(& : e, g) // expected-error {{calling a private constructor of class 'S4'}} expected-error {{invalid operands to binary expression ('S4' and 'S4')}} expected-error {{calling a private constructor of class 'S5'}} expected-error {{invalid operands to binary expression ('S5' an
[all...]
H A Dsimd_reduction_messages.cpp47 class S5 { class
49 S5() : a(0) {} // expected-note {{implicitly declared private here}} function in class:S5
50 S5(const S5 &s5) : a(s5.a) {} function in class:S5
51 S5 &operator+(const S5 &arg);
54 S5(int v) : a(v) {} function in class:S5
196 S5 g(5);
269 #pragma omp simd reduction(& : e, g) // expected-error {{calling a private constructor of class 'S4'}} expected-error {{invalid operands to binary expression ('S4' and 'S4')}} expected-error {{calling a private constructor of class 'S5'}} expected-error {{invalid operands to binary expression ('S5' an
[all...]
H A Dteams_reduction_messages.cpp47 class S5 { class
49 S5() : a(0) {} // expected-note {{implicitly declared private here}} function in class:S5
50 S5(const S5 &s5) : a(s5.a) {} function in class:S5
51 S5 &operator+(const S5 &arg);
54 S5(int v) : a(v) {} function in class:S5
199 S5 g(5);
273 #pragma omp teams reduction(& : e, g) // expected-error {{calling a private constructor of class 'S4'}} expected-error {{invalid operands to binary expression ('S4' and 'S4')}} expected-error {{calling a private constructor of class 'S5'}} expected-error {{invalid operands to binary expression ('S5' an
[all...]
/external/clang/test/SemaCXX/
H A Dalignof.cpp56 struct S5 { struct
60 const int test8 = __alignof__(S5::x);
H A Dempty-class-layout.cpp58 struct S5 : S3, Empty {}; struct in namespace:Test0
59 SA(9, sizeof(S5) == 2);
61 struct S6 : S5 { };
H A Derr_typecheck_assign_const.cpp38 struct S5 { struct
44 S5 s5;
/external/srtp/crypto/hash/
H A Dsha1.c57 #define S5(X) ((X << 5) | (X >> 27)) macro
160 TEMP = S5(A) + f0(B,C,D) + E + W[t] + SHA_K0;
164 TEMP = S5(A) + f1(B,C,D) + E + W[t] + SHA_K1;
168 TEMP = S5(A) + f2(B,C,D) + E + W[t] + SHA_K2;
172 TEMP = S5(A) + f3(B,C,D) + E + W[t] + SHA_K3;
315 TEMP = S5(A) + f0(B,C,D) + E + W[t] + SHA_K0;
319 TEMP = S5(A) + f1(B,C,D) + E + W[t] + SHA_K1;
323 TEMP = S5(A) + f2(B,C,D) + E + W[t] + SHA_K2;
327 TEMP = S5(A) + f3(B,C,D) + E + W[t] + SHA_K3;
368 TEMP = S5(
[all...]
/external/boringssl/src/decrepit/cast/
H A Dcast.c255 #define S5 CAST_S_table5 macro
292 l = X[0] ^ S4[x[13]] ^ S5[x[15]] ^ S6[x[12]] ^ S7[x[14]] ^ S6[x[8]];
294 l = X[2] ^ S4[z[0]] ^ S5[z[2]] ^ S6[z[1]] ^ S7[z[3]] ^ S7[x[10]];
296 l = X[3] ^ S4[z[7]] ^ S5[z[6]] ^ S6[z[5]] ^ S7[z[4]] ^ S4[x[9]];
298 l = X[1] ^ S4[z[10]] ^ S5[z[9]] ^ S6[z[11]] ^ S7[z[8]] ^ S5[x[11]];
301 K[0] = S4[z[8]] ^ S5[z[9]] ^ S6[z[7]] ^ S7[z[6]] ^ S4[z[2]];
302 K[1] = S4[z[10]] ^ S5[z[11]] ^ S6[z[5]] ^ S7[z[4]] ^ S5[z[6]];
303 K[2] = S4[z[12]] ^ S5[
[all...]
/external/llvm/unittests/Support/
H A DAlignOfTest.cpp51 struct S5 { A1 a1; A2 a2; A4 a4; A8 a8; }; struct in namespace:__anon11288
116 [AlignOf<S5>::Alignment > 0]
158 EXPECT_LE(alignOf<S1>(), alignOf<S5>());
236 EXPECT_EQ(alignOf<S5>(), alignOf<AlignedCharArrayUnion<S5> >());
291 EXPECT_EQ(sizeof(S5), sizeof(AlignedCharArrayUnion<S5>));
/external/ltrace/testsuite/ltrace.main/
H A Dparameters.c162 struct S5 { struct
168 struct S5 func_struct_large2(struct S5 a, struct S5 b);
169 func_struct_large2((struct S5){ '0', '1', 3, 4 }, (struct S5){ '2', '3', 7, 8 });
/external/clang/test/CodeGenCXX/
H A Dmicrosoft-abi-static-initializers.cpp64 static S S5; local
/external/clang/test/PCH/
H A Dcxx-templates.h139 struct S5 { struct
140 S5(int x);
144 S5 s;

Completed in 642 milliseconds

1234