Home
last modified time | relevance | path

Searched refs:S1 (Results 1 – 25 of 1904) sorted by relevance

12345678910>>...77

/external/llvm-project/polly/lib/External/isl/test_inputs/codegen/cloog/
Dunroll.c1 S1(0);
2 S1(1);
3 S1(2);
4 S1(3);
5 S1(4);
6 S1(5);
7 S1(6);
8 S1(7);
9 S1(8);
10 S1(9);
[all …]
/external/llvm-project/llvm/include/llvm/ADT/
DSetOperations.h22 bool set_union(S1Ty &S1, const S2Ty &S2) { in set_union() argument
27 if (S1.insert(*SI).second) in set_union()
39 void set_intersect(S1Ty &S1, const S2Ty &S2) { in set_intersect() argument
40 for (typename S1Ty::iterator I = S1.begin(); I != S1.end();) { in set_intersect()
43 if (!S2.count(E)) S1.erase(E); // Erase element if not in S2 in set_intersect()
50 S1Ty set_difference(const S1Ty &S1, const S2Ty &S2) { in set_difference() argument
52 for (typename S1Ty::const_iterator SI = S1.begin(), SE = S1.end(); in set_difference()
62 void set_subtract(S1Ty &S1, const S2Ty &S2) { in set_subtract() argument
65 S1.erase(*SI); in set_subtract()
71 bool set_is_subset(const S1Ty &S1, const S2Ty &S2) { in set_is_subset() argument
[all …]
DStringSwitch.h88 StringSwitch &Cases(StringLiteral S0, StringLiteral S1, T Value) { in Cases() argument
89 return Case(S0, Value).Case(S1, Value); in Cases()
92 StringSwitch &Cases(StringLiteral S0, StringLiteral S1, StringLiteral S2, in Cases() argument
94 return Case(S0, Value).Cases(S1, S2, Value); in Cases()
97 StringSwitch &Cases(StringLiteral S0, StringLiteral S1, StringLiteral S2, in Cases() argument
99 return Case(S0, Value).Cases(S1, S2, S3, Value); in Cases()
102 StringSwitch &Cases(StringLiteral S0, StringLiteral S1, StringLiteral S2, in Cases() argument
104 return Case(S0, Value).Cases(S1, S2, S3, S4, Value); in Cases()
107 StringSwitch &Cases(StringLiteral S0, StringLiteral S1, StringLiteral S2, in Cases() argument
110 return Case(S0, Value).Cases(S1, S2, S3, S4, S5, Value); in Cases()
[all …]
/external/llvm-project/clang/test/OpenMP/
Dtaskgroup_ast_print.cpp15 struct S1 { struct
16 S1(): a(0) {} in S1() function
17 S1(int v) : a(v) {} in S1() argument
20 S1& operator +(const S1&); argument
21 S1& operator *(const S1&);
22 S1& operator &&(const S1&);
23 S1& operator ^(const S1&);
51 class S8 : public S7<S1> {
55 S8(int v) : S7<S1>(v){ in S8()
56 #pragma omp taskgroup task_reduction(^ : S7 < S1 > ::a) task_reduction(+ : S7 < S1 > ::b[ : S7 < S1 in S8()
Dparallel_ast_print.cpp15 struct S1 { struct
16 S1(): a(0) {} in S1() function
17 S1(int v) : a(v) {} in S1() argument
20 S1& operator +(const S1&); argument
21 S1& operator *(const S1&);
22 S1& operator &&(const S1&);
23 S1& operator ^(const S1&);
78 class S8 : public S7<S1> {
82 S8(int v) : S7<S1>(v){ in S8()
83 #pragma omp parallel private(a) private(this->a) private(S7 < S1 > ::a) in S8()
[all …]
/external/pcre/dist2/src/sljit/
DsljitNativeSPARC_32.c30 return push_inst(compiler, OR | D(dst) | S1(0) | IMM(imm), DR(dst)); in load_immediate()
33 …return (imm & 0x3ff) ? push_inst(compiler, OR | D(dst) | S1(dst) | IMM_ARG | (imm & 0x3ff), DR(dst… in load_immediate()
50 return push_inst(compiler, OR | D(dst) | S1(0) | S2(src2), DR(dst)); in emit_single_op()
58 return push_inst(compiler, AND | D(dst) | S1(src2) | IMM(0xff), DR(dst)); in emit_single_op()
59 FAIL_IF(push_inst(compiler, SLL | D(dst) | S1(src2) | IMM(24), DR(dst))); in emit_single_op()
60 return push_inst(compiler, SRA | D(dst) | S1(dst) | IMM(24), DR(dst)); in emit_single_op()
70 FAIL_IF(push_inst(compiler, SLL | D(dst) | S1(src2) | IMM(16), DR(dst))); in emit_single_op()
71 …return push_inst(compiler, (op == SLJIT_MOV_S16 ? SRA : SRL) | D(dst) | S1(dst) | IMM(16), DR(dst)… in emit_single_op()
79 …return push_inst(compiler, XNOR | (flags & SET_FLAGS) | D(dst) | S1(0) | S2(src2), DR(dst) | (flag… in emit_single_op()
83 FAIL_IF(push_inst(compiler, SUB | SET_FLAGS | D(0) | S1(src2) | S2(0), SET_FLAGS)); in emit_single_op()
[all …]
/external/llvm-project/llvm/test/Transforms/CanonicalizeAliases/
Dcanonicalize.ll22 %struct.S1 = type { i32, i32, i32 }
24 ; CHECK-DAG: @S = global %struct.S1 { i32 31, i32 32, i32 33 }
25 ; CHECK-DAG: @Salias = alias i32, getelementptr inbounds (%struct.S1, %struct.S1* @S, i32 0, i32 1)
26 ; CHECK-DAG: @Salias2 = alias i32, getelementptr inbounds (%struct.S1, %struct.S1* @S, i32 0, i32 1)
27 ; CHECK-DAG: @Salias3 = alias i32, getelementptr inbounds (%struct.S1, %struct.S1* @S, i32 0, i32 1)
29 @S = global %struct.S1 { i32 31, i32 32, i32 33 }, align 4
30 @Salias = alias i32, getelementptr inbounds (%struct.S1, %struct.S1* @S, i32 0, i32 1)
34 ; CHECK-DAG: @Salias4 = alias %struct.S1, %struct.S1* @S
35 ; CHECK-DAG: @Salias5 = alias i32, getelementptr inbounds (%struct.S1, %struct.S1* @S, i32 0, i32 1)
37 @Salias4 = alias %struct.S1, %struct.S1* @S
[all …]
/external/clang/test/SemaCXX/
Dout-of-line-def-mismatch.cpp4 struct S1;
10 …void func(S1*); // expected-note {{type of 1st parameter of member declaration does not match defi…
11 …void func(C1&, unsigned, const S1*); // expected-note {{type of 3rd parameter of member declaratio…
12 …void func(const S1*, unsigned); //expected-note {{type of 1st parameter of member declaration does…
13 …void func(unsigned, const S1*); // expected-note {{type of 1st parameter of member declaration doe…
16 struct S1 {}; struct
20 void N2::N1::S2::func(S1*) {} // expected-error {{out-of-line definition of 'func' does not match a… in func() argument
21 void N2::N1::S2::func(C1&, unsigned, const S1*) {} // expected-error {{out-of-line definition of 'f… in func() argument
22 void N2::N1::S2::func(S1*, double) {} // expected-error {{out-of-line definition of 'func' does not… in func() argument
23 void N2::N1::S2::func(S1, unsigned) {} // expected-error {{out-of-line definition of 'func' does no… in func() argument
[all …]
Dwarn-unused-variables.cpp77 struct S1 { struct
78 S1();
80 S1 makeS1();
81 void testS1(S1 a) { in testS1()
83 S1 x = makeS1(); // expected-warning {{unused variable 'x'}} in testS1()
86 S1 y; in testS1()
89 S1 z = a; // expected-warning {{unused variable 'z'}} in testS1()
108 S1 m;
141 struct S1 { struct
142 ~S1();
[all …]
/external/llvm-project/clang/test/SemaCXX/
Dout-of-line-def-mismatch.cpp4 struct S1;
10 …void func(S1*); // expected-note {{type of 1st parameter of member declaration does not match defi…
11 …void func(C1&, unsigned, const S1*); // expected-note {{type of 3rd parameter of member declaratio…
12 …void func(const S1*, unsigned); //expected-note {{type of 1st parameter of member declaration does…
13 …void func(unsigned, const S1*); // expected-note {{type of 1st parameter of member declaration doe…
16 struct S1 {}; struct
20 void N2::N1::S2::func(S1*) {} // expected-error {{out-of-line definition of 'func' does not match a… in func() argument
21 void N2::N1::S2::func(C1&, unsigned, const S1*) {} // expected-error {{out-of-line definition of 'f… in func() argument
22 void N2::N1::S2::func(S1*, double) {} // expected-error {{out-of-line definition of 'func' does not… in func() argument
23 void N2::N1::S2::func(S1, unsigned) {} // expected-error {{out-of-line definition of 'func' does no… in func() argument
[all …]
/external/llvm-project/llvm/unittests/ADT/
DStatisticTest.cpp25 OptionalStatistic &S1, OptionalStatistic &S2) { in extractCounters() argument
28 S1 = S; in extractCounters()
90 OptionalStatistic S1; in TEST() local
92 extractCounters(Range1, S1, S2); in TEST()
94 EXPECT_EQ(S1.hasValue(), true); in TEST()
106 OptionalStatistic S1; in TEST() local
108 extractCounters(Range, S1, S2); in TEST()
110 EXPECT_EQ(S1.hasValue(), true); in TEST()
113 EXPECT_EQ(S1->first, "Counter"); in TEST()
114 EXPECT_EQ(S1->second, 2u); in TEST()
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
DStringSwitch.h88 StringSwitch &Cases(StringLiteral S0, StringLiteral S1, T Value) { in Cases() argument
89 return Case(S0, Value).Case(S1, Value); in Cases()
92 StringSwitch &Cases(StringLiteral S0, StringLiteral S1, StringLiteral S2, in Cases() argument
94 return Case(S0, Value).Cases(S1, S2, Value); in Cases()
97 StringSwitch &Cases(StringLiteral S0, StringLiteral S1, StringLiteral S2, in Cases() argument
99 return Case(S0, Value).Cases(S1, S2, S3, Value); in Cases()
102 StringSwitch &Cases(StringLiteral S0, StringLiteral S1, StringLiteral S2, in Cases() argument
104 return Case(S0, Value).Cases(S1, S2, S3, S4, Value); in Cases()
107 StringSwitch &Cases(StringLiteral S0, StringLiteral S1, StringLiteral S2, in Cases() argument
110 return Case(S0, Value).Cases(S1, S2, S3, S4, S5, Value); in Cases()
[all …]
DSetOperations.h22 bool set_union(S1Ty &S1, const S2Ty &S2) { in set_union() argument
27 if (S1.insert(*SI).second) in set_union()
39 void set_intersect(S1Ty &S1, const S2Ty &S2) { in set_intersect() argument
40 for (typename S1Ty::iterator I = S1.begin(); I != S1.end();) { in set_intersect()
43 if (!S2.count(E)) S1.erase(E); // Erase element if not in S2 in set_intersect()
50 S1Ty set_difference(const S1Ty &S1, const S2Ty &S2) { in set_difference() argument
52 for (typename S1Ty::const_iterator SI = S1.begin(), SE = S1.end(); in set_difference()
62 void set_subtract(S1Ty &S1, const S2Ty &S2) { in set_subtract() argument
65 S1.erase(*SI); in set_subtract()
/external/llvm-project/clang/test/ASTMerge/exprs-cpp/Inputs/
Dexprs3.cpp47 struct S1 { struct
54 S1 d; argument
73 S1 &testConstCast(const S1 &x) { in testConstCast()
74 return const_cast<S1&>(x); in testConstCast()
77 S1 &testStaticCast(S1 &x) { in testStaticCast()
78 return static_cast<S1&>(x); in testStaticCast()
81 S1 &testReinterpretCast(S1 &x) { in testReinterpretCast()
82 return reinterpret_cast<S1&>(x); in testReinterpretCast()
85 S1 &testDynamicCast(S1 &x) { in testDynamicCast()
86 return dynamic_cast<S1&>(x); in testDynamicCast()
/external/llvm-project/clang/test/CodeGenCXX/
Dtype-metadata-memfun.cpp3 struct S1 { struct
4 S1();
5 ~S1();
18 S1::S1() {} in S1() function in S1
19 S1::~S1() {} in ~S1()
20 void S1::vf() {} in vf()
22 void S1::f() { in f()
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
DStringSwitch.h107 StringSwitch &Cases(const char (&S0)[N0], const char (&S1)[N1], in Cases()
109 return Case(S0, Value).Case(S1, Value); in Cases()
114 StringSwitch &Cases(const char (&S0)[N0], const char (&S1)[N1], in Cases()
116 return Case(S0, Value).Cases(S1, S2, Value); in Cases()
121 StringSwitch &Cases(const char (&S0)[N0], const char (&S1)[N1], in Cases()
124 return Case(S0, Value).Cases(S1, S2, S3, Value); in Cases()
129 StringSwitch &Cases(const char (&S0)[N0], const char (&S1)[N1], in Cases()
132 return Case(S0, Value).Cases(S1, S2, S3, S4, Value); in Cases()
138 StringSwitch &Cases(const char (&S0)[N0], const char (&S1)[N1], in Cases()
142 return Case(S0, Value).Cases(S1, S2, S3, S4, S5, Value); in Cases()
[all …]
/external/google-fruit/include/fruit/impl/meta/
Dset.h76 template <typename S1, typename S2>
85 using type = FoldVector(S1, Helper, Bool<true>);
91 template <typename S1, typename S2>
100 using type = Not(FoldVector(S1, Helper, Bool<false>));
122 template <typename S1, typename S2>
131 using type = FoldSet(S1, Helper, EmptySet);
136 template <typename S1, typename S2>
145 …using type = If(GreaterThan(SetSize(S1), SetSize(S2)), SetIntersection(S2, S1), FoldSet(S1, Helper…
150 template <typename S1, typename S2>
152 using type = If(GreaterThan(SetSize(S1), SetSize(S2)), SetUnion(S2, S1),
[all …]
/external/clang/test/CodeGenObjCXX/
Dauto-release-result-assert.mm3 // CHECK-LABEL: define %struct.S1* @_Z4foo1i(
4 // CHECK: %[[CALL:[a-z0-9]+]] = call %struct.S1* @_Z4foo0i
5 // CHECK: ret %struct.S1* %[[CALL]]
7 // CHECK-LABEL: define %struct.S1* @_ZN2S22m1Ev(
8 // CHECK: %[[CALL:[a-z0-9]+]] = call %struct.S1* @_Z4foo0i
9 // CHECK: ret %struct.S1* %[[CALL]]
11 // CHECK-LABEL: define internal %struct.S1* @Block1_block_invoke(
12 // CHECK: %[[CALL:[a-z0-9]+]] = call %struct.S1* @_Z4foo0i
13 // CHECK: ret %struct.S1* %[[CALL]]
15 struct S1; struct
[all …]
/external/llvm-project/clang/test/CodeGenObjCXX/
Dauto-release-result-assert.mm3 // CHECK-LABEL: define %struct.S1* @_Z4foo1i(
4 // CHECK: %[[CALL:[a-z0-9]+]] = call %struct.S1* @_Z4foo0i
5 // CHECK: ret %struct.S1* %[[CALL]]
7 // CHECK-LABEL: define %struct.S1* @_ZN2S22m1Ev(
8 // CHECK: %[[CALL:[a-z0-9]+]] = call %struct.S1* @_Z4foo0i
9 // CHECK: ret %struct.S1* %[[CALL]]
11 // CHECK-LABEL: define internal %struct.S1* @Block1_block_invoke(
12 // CHECK: %[[CALL:[a-z0-9]+]] = call %struct.S1* @_Z4foo0i
13 // CHECK: ret %struct.S1* %[[CALL]]
15 struct S1; struct
[all …]
/external/llvm/include/llvm/ADT/
DSetOperations.h23 bool set_union(S1Ty &S1, const S2Ty &S2) { in set_union() argument
28 if (S1.insert(*SI).second) in set_union()
40 void set_intersect(S1Ty &S1, const S2Ty &S2) { in set_intersect() argument
41 for (typename S1Ty::iterator I = S1.begin(); I != S1.end();) { in set_intersect()
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
53 for (typename S1Ty::const_iterator SI = S1.begin(), SE = S1.end(); in set_difference()
63 void set_subtract(S1Ty &S1, const S2Ty &S2) { in set_subtract() argument
66 S1.erase(*SI); in set_subtract()
/external/llvm-project/clang/test/CXX/dcl.dcl/dcl.attr/dcl.align/
Dp5.cpp25 struct S1 { struct
32 S1 s1; argument
34 struct alignas(2) S4 : S1 { // expected-error {{requested alignment is less than minimum alignment …
36 struct S5 : S1 {
37 …alignas(2) S1 s1; // expected-error {{requested alignment is less than minimum alignment of 8 for …
40 S1 s1;
42 struct S7 : S1 {
44 struct alignas(2) alignas(8) alignas(1) S8 : S1 {
47 S1 s1 alignas(4); // expected-error {{requested alignment is less than minimum alignment of 8 for t…
62 template struct X<16, 8, S1>;
[all …]
/external/clang/test/CXX/dcl.dcl/dcl.attr/dcl.align/
Dp5.cpp25 struct S1 { struct
32 S1 s1; argument
34 struct alignas(2) S4 : S1 { // expected-error {{requested alignment is less than minimum alignment …
36 struct S5 : S1 {
37 …alignas(2) S1 s1; // expected-error {{requested alignment is less than minimum alignment of 8 for …
40 S1 s1;
42 struct S7 : S1 {
44 struct alignas(2) alignas(8) alignas(1) S8 : S1 {
47 S1 s1 alignas(4); // expected-error {{requested alignment is less than minimum alignment of 8 for t…
62 template struct X<16, 8, S1>;
[all …]
/external/libopus/silk/float/
Dapply_sine_window_FLP.c46 silk_float freq, c, S0, S1; in silk_apply_sine_window_FLP() local
63 S1 = freq; in silk_apply_sine_window_FLP()
68 S1 = 0.5f * c; in silk_apply_sine_window_FLP()
74 px_win[ k + 0 ] = px[ k + 0 ] * 0.5f * ( S0 + S1 ); in silk_apply_sine_window_FLP()
75 px_win[ k + 1 ] = px[ k + 1 ] * S1; in silk_apply_sine_window_FLP()
76 S0 = c * S1 - S0; in silk_apply_sine_window_FLP()
77 px_win[ k + 2 ] = px[ k + 2 ] * 0.5f * ( S1 + S0 ); in silk_apply_sine_window_FLP()
79 S1 = c * S0 - S1; in silk_apply_sine_window_FLP()
/external/llvm/test/CodeGen/Mips/
Do32_cc_byval.ll4 %struct.S1 = type { i8, i16, i32, i64, double, i32 }
31 …call void @callee1(float 2.000000e+01, %struct.S1* byval bitcast (%0* @f1.s1 to %struct.S1*)) noun…
35 …at 2.100000e+01, %struct.S3* byval %agg.tmp10, %struct.S1* byval bitcast (%0* @f1.s1 to %struct.S1
39 declare void @callee1(float, %struct.S1* byval)
43 declare void @callee3(float, %struct.S3* byval, %struct.S1* byval)
45 define void @f2(float %f, %struct.S1* nocapture byval %s1) nounwind {
64 %i2 = getelementptr inbounds %struct.S1, %struct.S1* %s1, i32 0, i32 5
66 %d = getelementptr inbounds %struct.S1, %struct.S1* %s1, i32 0, i32 4
68 %ll = getelementptr inbounds %struct.S1, %struct.S1* %s1, i32 0, i32 3
70 %i = getelementptr inbounds %struct.S1, %struct.S1* %s1, i32 0, i32 2
[all …]
/external/llvm-project/llvm/test/CodeGen/Mips/
Dlargeimmprinting.ll7 %struct.S1 = type { [65536 x i8] }
9 @s1 = external global %struct.S1
27 %agg.tmp = alloca %struct.S1, align 1
28 %tmp = getelementptr inbounds %struct.S1, %struct.S1* %agg.tmp, i32 0, i32 0, i32 0
29 …i8.i32(i8* align 1 %tmp, i8* align 1 getelementptr inbounds (%struct.S1, %struct.S1* @s1, i32 0, i…
30 call void @f2(%struct.S1* byval(%struct.S1) %agg.tmp) nounwind
34 declare void @f2(%struct.S1* byval(%struct.S1))

12345678910>>...77