HomeSort by relevance Sort by last modified time
    Searched defs:S2 (Results 76 - 100 of 178) sorted by null

1 2 34 5 6 7 8

  /external/clang/test/OpenMP/
parallel_for_reduction_messages.cpp 12 class S2 {
14 S2 &operator+=(const S2 &arg) { return (*this); }
17 S2() : a(0) {}
18 S2(S2 &s2) : a(s2.a) {}
22 const float S2::S2sc = 0; // expected-note 2 {{'S2sc' defined here}}
23 S2 b; // expected-note 2 {{'b' defined here}
    [all...]
parallel_reduction_messages.cpp 12 class S2 {
14 S2 &operator+=(const S2 &arg) { return (*this); }
17 S2() : a(0) {}
18 S2(S2 &s2) : a(s2.a) {}
22 const float S2::S2sc = 0; // expected-note 2 {{'S2sc' defined here}}
23 S2 b; // expected-note 2 {{'b' defined here}
    [all...]
parallel_sections_reduction_messages.cpp 12 class S2 {
14 S2 &operator+=(const S2 &arg) { return (*this); }
17 S2() : a(0) {}
18 S2(S2 &s2) : a(s2.a) {}
22 const float S2::S2sc = 0; // expected-note 2 {{'S2sc' defined here}}
23 S2 b; // expected-note 2 {{'b' defined here}
    [all...]
sections_reduction_messages.cpp 12 class S2 {
14 S2 &operator+=(const S2 &arg) { return (*this); }
17 S2() : a(0) {}
18 S2(S2 &s2) : a(s2.a) {}
22 const float S2::S2sc = 0; // expected-note 2 {{'S2sc' defined here}}
23 S2 b; // expected-note 2 {{'b' defined here}
    [all...]
simd_aligned_messages.cpp 77 class S2 {
80 S2():a(0) { }
82 const S2 b; // expected-note 1 {{'b' defined here}}
83 const S2 ba[5];
189 // expected-error@+1 {{argument of aligned clause should be array, pointer, reference to array or reference to pointer, not 'S2'}}
simd_ast_print.cpp 62 template<int LEN> struct S2 {
76 // S2<4>::func is called below in main.
77 // CHECK: template <int LEN = 4> struct S2 {
122 S2<4>::func(0,arr,arr,arr);
simd_linear_messages.cpp 72 class S2 {
75 S2():a(0) { }
77 const S2 b; // expected-note 2 {{'b' defined here}}
78 const S2 ba[5];
simd_reduction_messages.cpp 12 class S2 {
14 S2 &operator+=(const S2 &arg) { return (*this); }
17 S2() : a(0) {}
18 S2(S2 &s2) : a(s2.a) {}
22 const float S2::S2sc = 0; // expected-note 2 {{'S2sc' defined here}}
23 S2 b; // expected-note 2 {{'b' defined here}
    [all...]
  /external/clang/test/Sema/
type-spec-struct-union.c 9 struct S2 *x;
14 int test_struct_scope(S1 *s1, struct S2 *s2, struct S3 *s3) {
15 if (s1->u1.x == s2) return 1;
21 struct S2 { int x; } *s2 = 0; local
22 if (s1->u1.x == s2) return 1; /* expected-warning {{comparison of distinct pointer types ('struct S2 *' and 'struct S2 *')}} */
  /external/clang/test/SemaCXX/
typedef-redecl.cpp 78 struct S2
90 S2<1> b;
92 S2<2> b2;
93 b2.f(); // expected-note{{in instantiation of member function 'PR11630::S2<2>::f' requested here}}
warn-bad-memaccess.cpp 4 extern "C" void *memmove(void *s1, const void *s2, unsigned n);
5 extern "C" void *memcpy(void *s1, const void *s2, unsigned n);
6 extern "C" void *memcmp(void *s1, const void *s2, unsigned n);
15 struct S2 { int x; } s2; variable in typeref:struct:S2
121 memset(&s2, 0, sizeof s2);
warn-reorder-ctor-initialization.cpp 10 : s2(1), // expected-warning {{field 's2' will be initialized after field 's1'}}
17 int s2; member in class:complex
91 struct S2: virtual S1 { };
94 struct S4: virtual S3, S2 {
95 S4() : S2(), // expected-warning {{base class 'T1::S2' will be initialized after base 'T1::S3'}}
warn-unused-variables.cpp 94 struct S2 {
95 S2() {
99 S2 makeS2();
100 void testS2(S2 a) {
101 S2 x = makeS2(); // expected-warning {{unused variable 'x'}}
102 S2 y;
103 S2 z = a; // expected-warning {{unused variable 'z'}}
144 struct S2 {
145 S2(const S1&);
148 S2 s((S1()))
    [all...]
  /external/llvm/lib/Target/Hexagon/
HexagonPeephole.cpp 271 unsigned PR = 1, S1 = 2, S2 = 3; // Operand indices.
298 // Swap operands S1 and S2.
300 MachineOperand Op2 = MI->getOperand(S2);
302 ChangeOpInto(MI->getOperand(S2), Op1);
  /external/llvm/lib/Transforms/Scalar/
LoopInstSimplify.cpp 84 SmallPtrSet<const Instruction*, 8> S1, S2, *ToSimplify = &S1, *Next = &S2;
  /external/llvm/unittests/Analysis/
ScalarEvolutionTest.cpp 58 const SCEV *S2 = SE.getSCEV(V2);
62 const SCEV *P2 = SE.getAddExpr(S2, S2);
  /external/stlport/test/unit/
mfunptr_test.cpp 41 struct S2 { } s2; variable in typeref:struct:S2
44 int f2(S1&, S2&);
46 int f2c(const S1&, const S2&);
49 void vf2(S1&, S2&);
51 void vf2c(const S1&, const S2&);
79 ptr_fun(f2)(s1, s2);
82 ptr_fun(f2c)(s1, s2);
86 ptr_fun(vf2)(s1, s2);
89 ptr_fun(vf2c)(s1, s2);
    [all...]
  /frameworks/rs/java/tests/RSTest_CompatLib/src/com/android/rs/test/
UT_vector.java 113 Short2 S2 = s.get_u8_2();
114 if (S2.x != 1 || S2.y != 2) {
117 S2.x = 2;
118 S2.y = 3;
119 s.set_u8_2(S2);
140 S2 = s.get_i16_2();
141 if (S2.x != 1 || S2.y != 2) {
144 S2.x = 2
    [all...]
  /frameworks/rs/java/tests/RsTest/src/com/android/rs/test/
UT_vector.java 113 Short2 S2 = s.get_u8_2();
114 if (S2.x != 1 || S2.y != 2) {
117 S2.x = 2;
118 S2.y = 3;
119 s.set_u8_2(S2);
140 S2 = s.get_i16_2();
141 if (S2.x != 1 || S2.y != 2) {
144 S2.x = 2
    [all...]
  /frameworks/rs/java/tests/RsTest_14/src/com/android/rs/test/
UT_vector.java 113 Short2 S2 = s.get_u8_2();
114 if (S2.x != 1 || S2.y != 2) {
117 S2.x = 2;
118 S2.y = 3;
119 s.set_u8_2(S2);
140 S2 = s.get_i16_2();
141 if (S2.x != 1 || S2.y != 2) {
144 S2.x = 2
    [all...]
  /frameworks/rs/java/tests/RsTest_16/src/com/android/rs/test/
UT_vector.java 113 Short2 S2 = s.get_u8_2();
114 if (S2.x != 1 || S2.y != 2) {
117 S2.x = 2;
118 S2.y = 3;
119 s.set_u8_2(S2);
140 S2 = s.get_i16_2();
141 if (S2.x != 1 || S2.y != 2) {
144 S2.x = 2
    [all...]
  /ndk/tests/device/test-gnustl-full/unit/
mfunptr_test.cpp 41 struct S2 { } s2; variable in typeref:struct:S2
44 int f2(S1&, S2&);
46 int f2c(const S1&, const S2&);
49 void vf2(S1&, S2&);
51 void vf2c(const S1&, const S2&);
79 ptr_fun(f2)(s1, s2);
82 ptr_fun(f2c)(s1, s2);
86 ptr_fun(vf2)(s1, s2);
89 ptr_fun(vf2c)(s1, s2);
    [all...]
  /ndk/tests/device/test-stlport/unit/
mfunptr_test.cpp 41 struct S2 { } s2; variable in typeref:struct:S2
44 int f2(S1&, S2&);
46 int f2c(const S1&, const S2&);
49 void vf2(S1&, S2&);
51 void vf2c(const S1&, const S2&);
79 ptr_fun(f2)(s1, s2);
82 ptr_fun(f2c)(s1, s2);
86 ptr_fun(vf2)(s1, s2);
89 ptr_fun(vf2c)(s1, s2);
    [all...]
  /art/runtime/arch/arm/
registers_arm.h 59 S2 = 2,
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/engines/
BlowfishEngine.java 304 private final int[] S0, S1, S2, S3; // the s-boxes
315 S2 = new int[SBOX_SK];
398 ^ S2[(x >>> 8) & 0xff]) + S3[x & 0xff]);
444 System.arraycopy(KS2, 0, S2, 0, SBOX_SK);
502 processTable(S1[SBOX_SK - 2], S1[SBOX_SK - 1], S2);
503 processTable(S2[SBOX_SK - 2], S2[SBOX_SK - 1], S3);

Completed in 802 milliseconds

1 2 34 5 6 7 8