Home
last modified time | relevance | path

Searched refs:S2 (Results 1 – 25 of 272) sorted by relevance

1234567891011

/external/llvm/unittests/ADT/
DImmutableSetTest.cpp55 ImmutableSet<int> S2 = f.add(S, 3); in TEST_F() local
57 EXPECT_FALSE(S2.isEmpty()); in TEST_F()
58 EXPECT_FALSE(S == S2); in TEST_F()
59 EXPECT_TRUE(S != S2); in TEST_F()
61 EXPECT_TRUE(S2.contains(3)); in TEST_F()
62 EXPECT_FALSE(S2.begin() == S2.end()); in TEST_F()
63 EXPECT_TRUE(S2.begin() != S2.end()); in TEST_F()
73 EXPECT_FALSE(S2 == S3); in TEST_F()
74 EXPECT_TRUE(S2 != S3); in TEST_F()
75 EXPECT_FALSE(S2.contains(2)); in TEST_F()
[all …]
DImmutableMapTest.cpp34 ImmutableMap<int, int> S2 = f.add(f.add(f.add(S, 3, 10), 4, 11), 5, 12); in TEST() local
37 EXPECT_FALSE(S2.isEmpty()); in TEST()
42 EXPECT_EQ(10, *S2.lookup(3)); in TEST()
43 EXPECT_EQ(11, *S2.lookup(4)); in TEST()
44 EXPECT_EQ(12, *S2.lookup(5)); in TEST()
46 EXPECT_EQ(5, S2.getMaxElement()->first); in TEST()
47 EXPECT_EQ(3U, S2.getHeight()); in TEST()
/external/llvm/test/CodeGen/Hexagon/intrinsics/
Dxtype_perm.ll49 declare i32 @llvm.hexagon.S2.vrndpackwh(i64)
51 %z = call i32 @llvm.hexagon.S2.vrndpackwh(i64 %a)
56 declare i32 @llvm.hexagon.S2.vrndpackwhs(i64)
58 %z = call i32 @llvm.hexagon.S2.vrndpackwhs(i64 %a)
64 declare i32 @llvm.hexagon.S2.vsathub(i64)
66 %z = call i32 @llvm.hexagon.S2.vsathub(i64 %a)
71 declare i32 @llvm.hexagon.S2.vsatwh(i64)
73 %z = call i32 @llvm.hexagon.S2.vsatwh(i64 %a)
78 declare i32 @llvm.hexagon.S2.vsatwuh(i64)
80 %z = call i32 @llvm.hexagon.S2.vsatwuh(i64 %a)
[all …]
Dxtype_shift.ll5 declare i64 @llvm.hexagon.S2.asr.i.p(i64, i32)
7 %z = call i64 @llvm.hexagon.S2.asr.i.p(i64 %a, i32 0)
12 declare i64 @llvm.hexagon.S2.lsr.i.p(i64, i32)
14 %z = call i64 @llvm.hexagon.S2.lsr.i.p(i64 %a, i32 0)
19 declare i64 @llvm.hexagon.S2.asl.i.p(i64, i32)
21 %z = call i64 @llvm.hexagon.S2.asl.i.p(i64 %a, i32 0)
26 declare i32 @llvm.hexagon.S2.asr.i.r(i32, i32)
28 %z = call i32 @llvm.hexagon.S2.asr.i.r(i32 %a, i32 0)
33 declare i32 @llvm.hexagon.S2.lsr.i.r(i32, i32)
35 %z = call i32 @llvm.hexagon.S2.lsr.i.r(i32 %a, i32 0)
[all …]
Dxtype_bit.ll5 declare i32 @llvm.hexagon.S2.clbp(i64)
7 %z = call i32 @llvm.hexagon.S2.clbp(i64 %a)
12 declare i32 @llvm.hexagon.S2.cl0p(i64)
14 %z = call i32 @llvm.hexagon.S2.cl0p(i64 %a)
19 declare i32 @llvm.hexagon.S2.cl1p(i64)
21 %z = call i32 @llvm.hexagon.S2.cl1p(i64 %a)
47 declare i32 @llvm.hexagon.S2.cl0(i32)
49 %z = call i32 @llvm.hexagon.S2.cl0(i32 %a)
54 declare i32 @llvm.hexagon.S2.cl1(i32)
56 %z = call i32 @llvm.hexagon.S2.cl1(i32 %a)
[all …]
/external/v8/test/mjsunit/compiler/
Ddead-string-char-code-at.js31 var S2 = "@@string2"; variable
53 var S3 = S1 + S2;
55 assertEquals(S1, dead1(S1, S2));
56 assertEquals(S1, dead2(S1, S2));
57 assertEquals("11", dead3(S1, S2));
59 assertEquals(S2, dead1(S2, 677));
60 assertEquals(S2, dead2(S2, S3));
61 assertEquals("11", dead3(S2, S3));
Ddead-string-char-code-at2.js31 var S2 = "@@string2"; variable
53 var S3 = S1 + S2;
55 assertEquals(S1, dead1(S1, S2));
56 assertEquals(S1, dead2(S1, S2));
57 assertEquals("11", dead3(S1, S2));
59 assertEquals(S2, dead1(S2, 677));
60 assertEquals(S2, dead2(S2, S3));
61 assertEquals("11", dead3(S2, S3));
/external/llvm/include/llvm/ADT/
DSetOperations.h23 bool set_union(S1Ty &S1, const S2Ty &S2) { in set_union() argument
26 for (typename S2Ty::const_iterator SI = S2.begin(), SE = S2.end(); in set_union()
40 void set_intersect(S1Ty &S1, const S2Ty &S2) { in set_intersect() argument
44 if (!S2.count(E)) S1.erase(E); // Erase element if not in S2 in set_intersect()
51 S1Ty set_difference(const S1Ty &S1, const S2Ty &S2) { in set_difference() argument
55 if (!S2.count(*SI)) // if the element is not in set2 in set_difference()
63 void set_subtract(S1Ty &S1, const S2Ty &S2) { in set_subtract() argument
64 for (typename S2Ty::const_iterator SI = S2.begin(), SE = S2.end(); in set_subtract()
/external/clang/test/SemaCXX/
Dwarn-unused-variables.cpp94 struct S2 { struct
95 S2() { in S2() function
99 S2 makeS2();
100 void testS2(S2 a) { in testS2()
101 S2 x = makeS2(); // expected-warning {{unused variable 'x'}} in testS2()
102 S2 y; in testS2()
103 S2 z = a; // expected-warning {{unused variable 'z'}} in testS2()
144 struct S2 { struct
145 S2(const S1&);
148 S2 s((S1())); in func()
Dcxx11-crashes.cpp6 struct S2 { struct
7 S2(const S2&);
8 S2();
13 S2 y;
25 S2 y;
30 S2 y;
Dout-of-line-def-mismatch.cpp9 struct S2 { struct
20 void N2::N1::S2::func(S1*) {} // expected-error {{out-of-line definition of 'func' does not match a… in func()
21 void N2::N1::S2::func(C1&, unsigned, const S1*) {} // expected-error {{out-of-line definition of 'f… in func()
22 void N2::N1::S2::func(S1*, double) {} // expected-error {{out-of-line definition of 'func' does not… in func()
23 void N2::N1::S2::func(S1, unsigned) {} // expected-error {{out-of-line definition of 'func' does no… in func()
24 void N2::N1::S2::func(unsigned*, S1*) {} // expected-error {{out-of-line definition of 'func' does … in func()
/external/llvm/test/CodeGen/Hexagon/vect/
Dvect-shift-imm.ll21 %0 = tail call i64 @llvm.hexagon.S2.asl.i.vw(i64 %x, i32 9)
22 %1 = tail call i64 @llvm.hexagon.S2.asr.i.vw(i64 %x, i32 8)
23 %2 = tail call i64 @llvm.hexagon.S2.lsr.i.vw(i64 %x, i32 7)
24 %3 = tail call i64 @llvm.hexagon.S2.asl.i.vh(i64 %x, i32 6)
25 %4 = tail call i64 @llvm.hexagon.S2.asr.i.vh(i64 %x, i32 5)
26 %5 = tail call i64 @llvm.hexagon.S2.lsr.i.vh(i64 %x, i32 4)
35 declare i64 @llvm.hexagon.S2.asl.i.vw(i64, i32) nounwind readnone
36 declare i64 @llvm.hexagon.S2.asr.i.vw(i64, i32) nounwind readnone
37 declare i64 @llvm.hexagon.S2.lsr.i.vw(i64, i32) nounwind readnone
38 declare i64 @llvm.hexagon.S2.asl.i.vh(i64, i32) nounwind readnone
[all …]
/external/clang/test/OpenMP/
Dtask_firstprivate_messages.cpp12 class S2 { class
16 S2() : a(0) {} in S2() function in S2
17 S2(const S2 &s2) : a(s2.a) {} in S2() function in S2
21 const float S2::S2sc = 0;
22 const S2 b;
23 const S2 ba[5];
82 #pragma omp task firstprivate(S2::S2s) in main()
83 #pragma omp task firstprivate(S2::S2sc) in main()
Dparallel_firstprivate_messages.cpp12 class S2 { class
15 S2():a(0) { } in S2() function in S2
16 S2(const S2 &s2):a(s2.a) { } in S2() function in S2
20 const float S2::S2sc = 0;
21 const S2 b;
22 const S2 ba[5];
78 #pragma omp parallel firstprivate(S2::S2s) in main()
79 #pragma omp parallel firstprivate(S2::S2sc) in main()
Dteams_firstprivate_messages.cpp12 class S2 { class
16 S2() : a(0) {} in S2() function in S2
17 S2(const S2 &s2) : a(s2.a) {} in S2() function in S2
21 const float S2::S2sc = 0;
22 const S2 b;
23 const S2 ba[5];
107 #pragma omp teams firstprivate(S2::S2s) in main()
110 #pragma omp teams firstprivate(S2::S2sc) in main()
Dparallel_sections_lastprivate_messages.cpp12 class S2 { class
16 S2() : a(0) {} in S2() function in S2
17 S2(S2 &s2) : a(s2.a) {} in S2() function in S2
18 const S2 &operator=(const S2 &) const;
22 const float S2::S2sc = 0; // expected-note {{static data member is predetermined as shared}}
23 const S2 b;
24 const S2 ba[5];
223 #pragma omp parallel sections lastprivate(S2::S2s) in main()
227 #pragma omp parallel sections lastprivate(S2::S2sc) // expected-error {{shared variable cannot be l… in main()
Dparallel_reduction_messages.cpp12 class S2 { class
14S2 &operator+(const S2 &arg) { return (*this); } // expected-note 4 {{implicitly declared private … in operator +()
17 S2() : a(0) {} in S2() function in S2
18 S2(S2 &s2) : a(s2.a) {} in S2() function in S2
22 const float S2::S2sc = 0; // expected-note 2 {{'S2sc' defined here}}
23 S2 b; // expected-note 2 {{'b' defined here}}
24 const S2 ba[5]; // expected-note 2 {{'ba' defined here}}
118 #pragma omp parallel reduction(&& : S2::S2s) in tmain()
120 #pragma omp parallel reduction(&& : S2::S2sc) // expected-error {{const-qualified variable cannot b… in tmain()
213 #pragma omp parallel reduction(&& : S2::S2s) in main()
[all …]
Dparallel_for_lastprivate_messages.cpp12 class S2 { class
16 S2() : a(0) {} in S2() function in S2
17 S2(S2 &s2) : a(s2.a) {} in S2() function in S2
18 S2 &operator=(const S2 &);
19 const S2 &operator=(const S2 &) const;
23 const float S2::S2sc = 0; // expected-note {{static data member is predetermined as shared}}
24 const S2 b;
25 const S2 ba[5];
194 #pragma omp parallel for lastprivate(S2::S2s) in main()
197 #pragma omp parallel for lastprivate(S2::S2sc) // expected-error {{shared variable cannot be lastpr… in main()
Dsections_lastprivate_messages.cpp12 class S2 { class
16 S2() : a(0) {} in S2() function in S2
17 S2(S2 &s2) : a(s2.a) {} in S2() function in S2
18 const S2 &operator=(const S2 &) const;
22 const float S2::S2sc = 0; // expected-note {{static data member is predetermined as shared}}
23 const S2 b;
24 const S2 ba[5];
253 #pragma omp sections lastprivate(S2::S2s) // expected-error {{shared variable cannot be lastprivate… in main()
258 #pragma omp sections lastprivate(S2::S2sc) // expected-error {{shared variable cannot be lastprivat… in main()
Dthreadprivate_codegen.cpp38 struct S2 { struct
41 S2() in S2() argument
44 S2(int a) in S2() argument
47 S2(const S2 &s) { in S2() argument
50 ~S2() { in ~S2() argument
207 static S2 gs2(27);
Dparallel_sections_reduction_messages.cpp12 class S2 { class
14S2 &operator+(const S2 &arg) { return (*this); } // expected-note 4 {{implicitly declared private … in operator +()
17 S2() : a(0) {} in S2() function in S2
18 S2(S2 &s2) : a(s2.a) {} in S2() function in S2
22 const float S2::S2sc = 0; // expected-note 2 {{'S2sc' defined here}}
23 S2 b; // expected-note 2 {{'b' defined here}}
24 const S2 ba[5]; // expected-note 2 {{'ba' defined here}}
158 #pragma omp parallel sections reduction(&& : S2::S2s) in tmain()
162 #pragma omp parallel sections reduction(&& : S2::S2sc) // expected-error {{const-qualified variable… in tmain()
311 #pragma omp parallel sections reduction(&& : S2::S2s) in main()
[all …]
/external/clang/test/CXX/expr/expr.unary/expr.unary.noexcept/
Dsema.cpp85 struct S2 { struct
86 S2();
87 S2(int, int) throw();
116 N(S2()); in implicits()
117 P(S2(0, 0)); in implicits()
118 S2 s; in implicits()
161 struct G3 { S2 s; };
174 B(b, static_cast<T>(S2(0, 0))); in late()
184 S3(const S2&);
/external/clang/test/CodeGenCXX/
Dmicrosoft-uuidof.cpp20 struct __declspec(uuid("87654321-4321-4321-4321-ba0987654321")) S2 { }; struct
98 GUID s2_1 = __uuidof(S2); in gun()
99 GUID s2_2 = __uuidof(S2); in gun()
106 const GUID& r = __uuidof(S2); in gun()
108 const GUID* p = &__uuidof(S2); in gun()
/external/wpa_supplicant_8/src/crypto/
Dsha1-tlsprf.c34 const u8 *S1, *S2; in tls_prf_sha1_md5() local
68 S2 = secret + L_S1; in tls_prf_sha1_md5()
71 S2--; in tls_prf_sha1_md5()
75 hmac_sha1_vector(S2, L_S2, 2, &SHA1_addr[1], &SHA1_len[1], A_SHA1); in tls_prf_sha1_md5()
86 hmac_sha1_vector(S2, L_S2, 3, SHA1_addr, SHA1_len, in tls_prf_sha1_md5()
89 hmac_sha1(S2, L_S2, A_SHA1, SHA1_MAC_LEN, A_SHA1); in tls_prf_sha1_md5()
/external/llvm/test/CodeGen/X86/
Dstore_op_load_fold.ll19 %struct.S2 = type { i64, i16, [2 x i8], i8, [3 x i8], [7 x i8], i8, [8 x i8] }
20 @s2 = external global %struct.S2, align 16
26 …%bf.load35 = load i56, i56* bitcast ([7 x i8]* getelementptr inbounds (%struct.S2, %struct.S2* @s2…
28 …store i56 %bf.clear36, i56* bitcast ([7 x i8]* getelementptr inbounds (%struct.S2, %struct.S2* @s2…

1234567891011