HomeSort by relevance Sort by last modified time
    Searched defs:S3 (Results 151 - 175 of 235) sorted by null

1 2 3 4 5 67 8 910

  /external/clang/test/OpenMP/
target_parallel_reduction_messages.cpp 27 class S3 {
32 S3() : a(0) {}
33 S3(const S3 &s3) : a(s3.a) {}
34 S3 operator+(const S3 &arg1) { return arg1; }
36 int operator+(const S3 &arg1, const S3 &arg2) { return 5;
    [all...]
target_update_from_messages.cpp 23 class S3 {
26 S3():a(0) { }
27 S3(S3 &s3):a(s3.a) { }
29 const S3 c;
30 const S3 ca[5];
61 S3 h;
target_update_to_messages.cpp 23 class S3 {
26 S3():a(0) { }
27 S3(S3 &s3):a(s3.a) { }
29 const S3 c;
30 const S3 ca[5];
61 S3 h;
taskloop_firstprivate_messages.cpp 24 class S3 {
26 S3 &operator=(const S3 &s3);
29 S3() : a(0) {} // expected-note 2 {{candidate constructor not viable: requires 0 arguments, but 1 was provided}}
30 S3(S3 &s3) : a(s3.a) {} // expected-note 2 {{candidate constructor not viable: 1st argument ('const S3') would lose const qualifier}
    [all...]
taskloop_lastprivate_messages.cpp 26 class S3 {
28 S3 &operator=(const S3 &s3); // expected-note 2 {{implicitly declared private here}}
31 S3() : a(0) {}
32 S3(S3 &s3) : a(s3.a) {}
34 const S3 c; // expected-note {{global variable is predetermined as shared}
    [all...]
taskloop_simd_aligned_messages.cpp 85 class S3 {
88 S3():a(0) { }
90 const S3 ca[5];
104 S3 h; // expected-note 2 {{'h' defined here}}
134 // expected-error@+1 {{argument of aligned clause should be array, pointer, reference to array or reference to pointer, not 'S3'}}
195 // expected-error@+1 {{argument of aligned clause should be array, pointer, reference to array or reference to pointer, not 'S3'}}
taskloop_simd_firstprivate_messages.cpp 24 class S3 {
26 S3 &operator=(const S3 &s3);
29 S3() : a(0) {} // expected-note 2 {{candidate constructor not viable: requires 0 arguments, but 1 was provided}}
30 S3(S3 &s3) : a(s3.a) {} // expected-note 2 {{candidate constructor not viable: 1st argument ('const S3') would lose const qualifier}
    [all...]
taskloop_simd_lastprivate_messages.cpp 26 class S3 {
28 S3 &operator=(const S3 &s3); // expected-note 2 {{implicitly declared private here}}
31 S3() : a(0) {}
32 S3(S3 &s3) : a(s3.a) {}
34 const S3 c; // expected-note {{global variable is predetermined as shared}
    [all...]
taskloop_simd_linear_messages.cpp 79 class S3 {
82 S3():a(0) { }
84 const S3 ca[5];
98 S3 h;
teams_reduction_messages.cpp 27 class S3 {
32 S3() : a(0) {}
33 S3(const S3 &s3) : a(s3.a) {}
34 S3 operator+(const S3 &arg1) { return arg1; }
36 int operator+(const S3 &arg1, const S3 &arg2) { return 5;
    [all...]
  /external/clang/test/SemaCXX/
alignof.cpp 30 // s2-within-S3 and thus require 'S3' to be complete. If we start
33 struct S3 {
39 static const int test11 = __alignof__(S3::s2.x);
40 static const int test12 = __alignof__(S3::s2.s); // expected-error {{invalid application of 'alignof' to an incomplete type 'S1'}}
44 // Same reasoning as S3.
warn-bad-memaccess.cpp 16 struct S3 { float x, y; S1 s[4]; void (*f)(S1**); } s3; variable in typeref:struct:S3
126 memset(&s3, 0, sizeof s3);
warn-reorder-ctor-initialization.cpp 12 s3(3), // expected-warning {{field 's3' will be initialized after base 'BB1'}}
18 int s3; member in class:complex
92 struct S3 { };
94 struct S4: virtual S3, S2 {
95 S4() : S2(), // expected-warning {{base class 'T1::S2' will be initialized after base 'T1::S3'}}
96 S3() { };
warn-unused-variables.cpp 107 struct S3 {
110 S3 makeS3();
111 void testS3(S3 a) {
112 S3 x = makeS3(); // expected-warning {{unused variable 'x'}}
113 S3 y;
114 S3 z = a; // expected-warning {{unused variable 'z'}}
  /external/llvm/unittests/Transforms/Utils/
MemorySSA.cpp 230 StoreInst *S3 = B.CreateStore(ConstantInt::get(Int8, 2), Alloca);
237 for (StoreInst *V : {S1, S2, S3}) {
  /external/swiftshader/third_party/subzero/unittest/AssemblerX8632/
LowLevel.cpp     [all...]
  /frameworks/rs/tests/java_api/RSTest_CompatLibLegacy/src/com/android/rs/test/
UT_vector.java 121 Short3 S3 = s.get_u8_3();
122 if (S3.x != 1 || S3.y != 2 || S3.z != 3) {
125 S3.x = 2;
126 S3.y = 3;
127 S3.z = 4;
128 s.set_u8_3(S3);
148 S3 = s.get_i16_3();
149 if (S3.x != 1 || S3.y != 2 || S3.z != 3)
    [all...]
  /frameworks/rs/tests/java_api/RSUnitTests/src/com/android/rs/unittest/
UT_vector.java 136 Short3 S3 = s.get_u8_3();
137 if (S3.x != 1 || S3.y != 2 || S3.z != 3) {
140 S3.x = 2;
141 S3.y = 3;
142 S3.z = 4;
143 s.set_u8_3(S3);
163 S3 = s.get_i16_3();
164 if (S3.x != 1 || S3.y != 2 || S3.z != 3)
    [all...]
  /frameworks/rs/tests/java_api/RSUnitTests/supportlibsrc_gen/com/android/rs/unittest/
UT_vector.java 138 Short3 S3 = s.get_u8_3();
139 if (S3.x != 1 || S3.y != 2 || S3.z != 3) {
142 S3.x = 2;
143 S3.y = 3;
144 S3.z = 4;
145 s.set_u8_3(S3);
165 S3 = s.get_i16_3();
166 if (S3.x != 1 || S3.y != 2 || S3.z != 3)
    [all...]
  /frameworks/rs/tests/java_api/RsTest_14/src/com/android/rs/test/
UT_vector.java 121 Short3 S3 = s.get_u8_3();
122 if (S3.x != 1 || S3.y != 2 || S3.z != 3) {
125 S3.x = 2;
126 S3.y = 3;
127 S3.z = 4;
128 s.set_u8_3(S3);
148 S3 = s.get_i16_3();
149 if (S3.x != 1 || S3.y != 2 || S3.z != 3)
    [all...]
  /frameworks/rs/tests/java_api/RsTest_16/src/com/android/rs/test/
UT_vector.java 121 Short3 S3 = s.get_u8_3();
122 if (S3.x != 1 || S3.y != 2 || S3.z != 3) {
125 S3.x = 2;
126 S3.y = 3;
127 S3.z = 4;
128 s.set_u8_3(S3);
148 S3 = s.get_i16_3();
149 if (S3.x != 1 || S3.y != 2 || S3.z != 3)
    [all...]
  /art/runtime/arch/arm/
registers_arm.h 61 S3 = 3,
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/engines/
BlowfishEngine.java 304 private final int[] S0, S1, S2, S3; // the s-boxes
316 S3 = new int[SBOX_SK];
398 ^ S2[(x >>> 8) & 0xff]) + S3[x & 0xff]);
445 System.arraycopy(KS3, 0, S3, 0, SBOX_SK);
503 processTable(S2[SBOX_SK - 2], S2[SBOX_SK - 1], S3);
  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.constexpr/
p1.cpp 54 constexpr struct S3 {} s3 = S3(); variable in typeref:struct:S3
p4.cpp 117 struct S3 { };

Completed in 677 milliseconds

1 2 3 4 5 67 8 910