Home
last modified time | relevance | path

Searched refs:S3 (Results 1 – 25 of 845) sorted by relevance

12345678910>>...34

/external/rust/crates/ppv-lite86/src/x86_64/
Dsse2.rs15 impl<S3, S4, NI> $trait for $vec<S3, S4, NI> {
27 impl<S3, S4, NI> $trait for $vec<S3, S4, NI>
29 $vec<S3, S4, NI>: Copy,
43 pub struct $vec<S3, S4, NI> {
45 s3: PhantomData<S3>,
50 impl<S3, S4, NI> Store<vec128_storage> for $vec<S3, S4, NI> {
56 impl<S3, S4, NI> From<$vec<S3, S4, NI>> for vec128_storage {
58 fn from(x: $vec<S3, S4, NI>) -> Self {
62 impl<S3, S4, NI> $vec<S3, S4, NI> {
74 impl<S3, S4, NI> StoreBytes for $vec<S3, S4, NI>
[all …]
Dmod.rs36 pub struct SseMachine<S3, S4, NI>(PhantomData<(S3, S4, NI)>);
37 impl<S3: Copy, S4: Copy, NI: Copy> Machine for SseMachine<S3, S4, NI>
39 sse2::u128x1_sse2<S3, S4, NI>: Swap64,
40 sse2::u64x2_sse2<S3, S4, NI>: BSwap + RotateEachWord32 + MultiLane<[u64; 2]> + Vec2<u64>,
41 sse2::u32x4_sse2<S3, S4, NI>: BSwap + RotateEachWord32 + MultiLane<[u32; 4]> + Vec4<u32>,
42 sse2::u64x4_sse2<S3, S4, NI>: BSwap + Words4,
43 sse2::u128x1_sse2<S3, S4, NI>: BSwap,
44 sse2::u128x2_sse2<S3, S4, NI>: Into<sse2::u64x2x2_sse2<S3, S4, NI>>,
45 sse2::u128x2_sse2<S3, S4, NI>: Into<sse2::u64x4_sse2<S3, S4, NI>>,
46 sse2::u128x2_sse2<S3, S4, NI>: Into<sse2::u32x4x2_sse2<S3, S4, NI>>,
[all …]
/external/llvm/unittests/ADT/
DImmutableSetTest.cpp65 ImmutableSet<int> S3 = f.add(S, 2); in TEST_F() local
67 EXPECT_FALSE(S3.isEmpty()); in TEST_F()
68 EXPECT_FALSE(S == S3); in TEST_F()
69 EXPECT_TRUE(S != S3); in TEST_F()
71 EXPECT_TRUE(S3.contains(2)); in TEST_F()
73 EXPECT_FALSE(S2 == S3); in TEST_F()
74 EXPECT_TRUE(S2 != S3); in TEST_F()
76 EXPECT_FALSE(S3.contains(3)); in TEST_F()
84 ImmutableSet<int> S3 = f.add(f.add(f.add(S2, 9), 20), 43); in TEST_F() local
89 EXPECT_FALSE(S3.isEmpty()); in TEST_F()
[all …]
/external/llvm-project/llvm/unittests/ADT/
DImmutableSetTest.cpp64 ImmutableSet<int> S3 = f.add(S, 2); in TEST_F() local
66 EXPECT_FALSE(S3.isEmpty()); in TEST_F()
67 EXPECT_FALSE(S == S3); in TEST_F()
68 EXPECT_TRUE(S != S3); in TEST_F()
70 EXPECT_TRUE(S3.contains(2)); in TEST_F()
72 EXPECT_FALSE(S2 == S3); in TEST_F()
73 EXPECT_TRUE(S2 != S3); in TEST_F()
75 EXPECT_FALSE(S3.contains(3)); in TEST_F()
83 ImmutableSet<int> S3 = f.add(f.add(f.add(S2, 9), 20), 43); in TEST_F() local
88 EXPECT_FALSE(S3.isEmpty()); in TEST_F()
[all …]
/external/clang/test/CXX/dcl.decl/dcl.fct.def/dcl.fct.def.default/
Dp2.cpp29 struct S3 { struct
30 S3() = default;
31 S3(const S3&) = default;
32 S3(S3&&) = default;
33 constexpr S3(int n) : n(n) {} in S3() function
36 constexpr S3 s3a = S3(0); argument
37 constexpr S3 s3b = s3a;
38 constexpr S3 s3c = S3();
39 constexpr S3 s3d; // expected-error {{default initialization of an object of const type 'const S3' …
/external/llvm-project/clang/test/CXX/dcl.decl/dcl.fct.def/dcl.fct.def.default/
Dp2.cpp29 struct S3 { struct
30 S3() = default;
31 S3(const S3&) = default;
32 S3(S3&&) = default;
33 constexpr S3(int n) : n(n) {} in S3() argument
36 constexpr S3 s3a = S3(0); argument
37 constexpr S3 s3b = s3a;
38 constexpr S3 s3c = S3();
39 constexpr S3 s3d; // expected-error {{default initialization of an object of const type 'const S3' …
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
DStringSwitch.h98 StringLiteral S3, T Value) { in Cases() argument
99 return Case(S0, Value).Cases(S1, S2, S3, Value); in Cases()
103 StringLiteral S3, StringLiteral S4, T Value) { in Cases() argument
104 return Case(S0, Value).Cases(S1, S2, S3, S4, Value); in Cases()
108 StringLiteral S3, StringLiteral S4, StringLiteral S5, in Cases() argument
110 return Case(S0, Value).Cases(S1, S2, S3, S4, S5, Value); in Cases()
114 StringLiteral S3, StringLiteral S4, StringLiteral S5, in Cases() argument
116 return Case(S0, Value).Cases(S1, S2, S3, S4, S5, S6, Value); in Cases()
120 StringLiteral S3, StringLiteral S4, StringLiteral S5, in Cases() argument
122 return Case(S0, Value).Cases(S1, S2, S3, S4, S5, S6, S7, Value); in Cases()
[all …]
/external/llvm-project/llvm/include/llvm/ADT/
DStringSwitch.h98 StringLiteral S3, T Value) { in Cases() argument
99 return Case(S0, Value).Cases(S1, S2, S3, Value); in Cases()
103 StringLiteral S3, StringLiteral S4, T Value) { in Cases() argument
104 return Case(S0, Value).Cases(S1, S2, S3, S4, Value); in Cases()
108 StringLiteral S3, StringLiteral S4, StringLiteral S5, in Cases() argument
110 return Case(S0, Value).Cases(S1, S2, S3, S4, S5, Value); in Cases()
114 StringLiteral S3, StringLiteral S4, StringLiteral S5, in Cases() argument
116 return Case(S0, Value).Cases(S1, S2, S3, S4, S5, S6, Value); in Cases()
120 StringLiteral S3, StringLiteral S4, StringLiteral S5, in Cases() argument
122 return Case(S0, Value).Cases(S1, S2, S3, S4, S5, S6, S7, Value); in Cases()
[all …]
/external/llvm-project/clang/test/CodeGenCXX/
Dubsan-new-checks.cpp12 struct alignas(32) S3 { struct
14 S3(int *p = new int[4]); argument
17 struct S4 : public S3 {
18 S4() : S3() {} in S4()
74 S3 *func_07() { in func_07()
81 return new S3; in func_07()
84 S3 *func_08() { in func_08()
91 return new S3[10]; in func_08()
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
DStringSwitch.h122 const char (&S2)[N2], const char (&S3)[N3], in Cases()
124 return Case(S0, Value).Cases(S1, S2, S3, Value); in Cases()
130 const char (&S2)[N2], const char (&S3)[N3], in Cases()
132 return Case(S0, Value).Cases(S1, S2, S3, S4, Value); in Cases()
139 const char (&S2)[N2], const char (&S3)[N3], in Cases()
142 return Case(S0, Value).Cases(S1, S2, S3, S4, S5, Value); in Cases()
149 const char (&S2)[N2], const char (&S3)[N3], in Cases()
152 return Case(S0, Value).Cases(S1, S2, S3, S4, S5, S6, Value); in Cases()
159 const char (&S2)[N2], const char (&S3)[N3], in Cases()
163 return Case(S0, Value).Cases(S1, S2, S3, S4, S5, S6, S7, Value); in Cases()
[all …]
/external/llvm-project/llvm/test/CodeGen/AArch64/
Darm64-windows-calls.ll53 %struct.S3 = type { i32, i32, i32, i32, i32 }
54 define dso_local void @"?f3"(%struct.S3* noalias sret(%struct.S3) %agg.result) {
60 %a = getelementptr inbounds %struct.S3, %struct.S3* %agg.result, i32 0, i32 0
62 %b = getelementptr inbounds %struct.S3, %struct.S3* %agg.result, i32 0, i32 1
64 %c = getelementptr inbounds %struct.S3, %struct.S3* %agg.result, i32 0, i32 2
66 %d = getelementptr inbounds %struct.S3, %struct.S3* %agg.result, i32 0, i32 3
68 %e = getelementptr inbounds %struct.S3, %struct.S3* %agg.result, i32 0, i32 4
/external/clang/test/CXX/expr/expr.unary/expr.unary.noexcept/
Dsema.cpp180 struct S3 { struct
181 virtual ~S3() throw();
182 S3() throw();
183 explicit S3(int);
184 S3(const S2&);
189 P(dynamic_cast<S3&>(f2<T&>())); in late2()
192 void operator +(const S1&, const S3&);
195 late<S3, false>(); in tlate()
196 late2<S3>(); in tlate()
/external/llvm-project/clang/test/CXX/expr/expr.unary/expr.unary.noexcept/
Dsema.cpp180 struct S3 { struct
181 virtual ~S3() throw();
182 S3() throw();
183 explicit S3(int);
184 S3(const S2&);
189 P(dynamic_cast<S3&>(f2<T&>())); in late2()
192 void operator +(const S1&, const S3&);
195 late<S3, false>(); in tlate()
196 late2<S3>(); in tlate()
/external/llvm-project/clang/test/OpenMP/
Dtaskgroup_task_reduction_messages.cpp37 class S3 { class
42 S3() : a(0) {} in S3() function in S3
43 S3(const S3 &s3) : a(s3.a) {} in S3() function in S3
44 S3 operator+(const S3 &arg1) { return arg1; } in operator +()
46 int operator+(const S3 &arg1, const S3 &arg2) { return 5; } in operator +()
47 S3 c; // expected-note 3 {{'c' defined here}}
48 const S3 ca[5]; // expected-note 2 {{'ca' defined here}}
80 S3 h, k;
90 S3 &p = k; // expected-note 2 {{'p' defined here}} in tmain()
183 S3 &p = k; // expected-note 2 {{'p' defined here}} in main()
Dparallel_shared_messages.cpp22 class S3 { class
25 S3():a(0) { } in S3() function in S3
26 S3(S3 &s3):a(s3.a) { } in S3() function in S3
28 const S3 c;
29 const S3 ca[5];
46 S3 h;
Dtarget_data_use_device_ptr_addr_ast_print.cpp76 class S3 { class
79 S3():a(0) { } in S3() function in S3
80 S3(S3 &s3):a(s3.a) { } in S3() function in S3
82 const S3 c;
83 const S3 ca[5];
100 S3 h;
Dthreadprivate_codegen.cpp85 struct S3 { struct
88 S3() in S3() argument
91 S3(int a) in S3() function
94 S3(const S3 &s) { in S3() function
97 ~S3() { in ~S3() argument
244 static S3 s;
Dtask_shared_messages.cpp23 class S3 { class
27 S3() : a(0) {} in S3() function in S3
28 S3(S3 &s3) : a(s3.a) {} in S3() function in S3
30 const S3 c;
31 const S3 ca[5];
50 S3 h;
/external/clang/test/OpenMP/
Dparallel_reduction_messages.cpp27 class S3 { class
32 S3() : a(0) {} in S3() function in S3
33 S3(const S3 &s3) : a(s3.a) {} in S3() function in S3
34 S3 operator+(const S3 &arg1) { return arg1; } in operator +()
36 int operator+(const S3 &arg1, const S3 &arg2) { return 5; } in operator +()
37 S3 c; // expected-note 3 {{'c' defined here}}
38 const S3 ca[5]; // expected-note 2 {{'ca' defined here}}
70 S3 h, k;
80 S3 &p = k; // expected-note 2 {{'p' defined here}} in tmain()
175 S3 &p = k; // expected-note 2 {{'p' defined here}} in main()
Dtarget_data_use_device_ptr_ast_print.cpp71 class S3 { class
74 S3():a(0) { } in S3() function in S3
75 S3(S3 &s3):a(s3.a) { } in S3() function in S3
77 const S3 c;
78 const S3 ca[5];
95 S3 h;
Dparallel_firstprivate_messages.cpp23 class S3 { class
26 S3():a(0) { } in S3() function in S3
27 S3(const S3 &s3):a(s3.a) { } in S3() function in S3
29 const S3 c;
30 const S3 ca[5];
47 S3 h;
Dparallel_shared_messages.cpp20 class S3 { class
23 S3():a(0) { } in S3() function in S3
24 S3(S3 &s3):a(s3.a) { } in S3() function in S3
26 const S3 c;
27 const S3 ca[5];
44 S3 h;
Dthreadprivate_codegen.cpp67 struct S3 { struct
70 S3() in S3() argument
73 S3(int a) in S3() argument
76 S3(const S3 &s) { in S3() argument
79 ~S3() { in ~S3() argument
187 static S3 s;
Dtask_shared_messages.cpp21 class S3 { class
25 S3() : a(0) {} in S3() function in S3
26 S3(S3 &s3) : a(s3.a) {} in S3() function in S3
28 const S3 c;
29 const S3 ca[5];
48 S3 h;
/external/llvm-project/polly/lib/External/isl/test_inputs/codegen/cloog/
Dfaber.c18 S3(c0, 0, 0);
21 S3(c0, 0, c2);
23 S3(c0, 0, c2);
27 S3(c0, 0, c2);
29 S3(c0, 0, c2);
33 S3(c0, 0, c2);
38 S3(c0, c1, c2);
40 S3(c0, 2, 7);
42 S3(c0, 1, 7);
44 S3(c0, 1, 7);
[all …]

12345678910>>...34