Home
last modified time | relevance | path

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

12345678910>>...22

/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/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()
84 FAIL_IF(push_inst(compiler, SUB | SET_FLAGS | D(0) | S1(src2) | S2(0), SET_FLAGS)); in emit_single_op()
[all …]
/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/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/swiftshader/third_party/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/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 …]
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 …call void @llvm.memcpy.p0i8.p0i8.i32(i8* %tmp, i8* getelementptr inbounds (%struct.S1, %struct.S1*…
30 call void @f2(%struct.S1* byval %agg.tmp) nounwind
34 declare void @f2(%struct.S1* byval)
/external/clang/test/OpenMP/
Dparallel_ast_print.cpp11 struct S1 { struct
12 S1(): a(0) {} in S1() argument
13 S1(int v) : a(v) {} in S1() function
16 S1& operator +(const S1&); argument
17 S1& operator *(const S1&);
18 S1& operator &&(const S1&);
19 S1& operator ^(const S1&);
74 class S8 : public S7<S1> {
78 S8(int v) : S7<S1>(v){ in S8()
79 #pragma omp parallel private(a) private(this->a) private(S7 < S1 > ::a) in S8()
[all …]
/external/llvm/test/CodeGen/X86/
Dpeephole-fold-movsd.ll7 %struct.S1 = type { double, double }
9 @g = common global %struct.S1 zeroinitializer, align 8
11 declare void @foo3(%struct.S1*)
18 %tmpcast = bitcast <2 x double>* %1 to %struct.S1*
19 call void @foo3(%struct.S1* %tmpcast) #2
20 %p2 = getelementptr inbounds %struct.S1, %struct.S1* %tmpcast, i64 0, i32 0
22 %p3 = getelementptr inbounds %struct.S1, %struct.S1* %tmpcast, i64 0, i32 1
29 store <2 x double> %8, <2 x double>* bitcast (%struct.S1* @g to <2 x double>*), align 16
/external/clang/test/CXX/dcl.decl/dcl.fct.def/dcl.fct.def.default/
Dp2.cpp5 struct S1 { struct
6 …constexpr S1() = default; // expected-error {{defaulted definition of default constructor is not c…
7 constexpr S1(const S1&) = default;
8 constexpr S1(S1&&) = default;
9 …constexpr S1 &operator=(const S1&) const = default; // expected-error {{explicitly-defaulted copy …
10 …constexpr S1 &operator=(S1&&) const = default; // expected-error {{explicitly-defaulted move assig…
11 constexpr ~S1() = default; // expected-error {{destructor cannot be marked constexpr}}
/external/libcxx/test/std/numerics/numeric.ops/numeric.ops.gcd/
Dgcd.pass.cpp50 using S1 = typename std::make_signed<Input1>::type; in do_test() typedef
57 using Output = std::common_type_t<S1, S2>; in do_test()
58 accumulate &= test0<S1, S2, Output>(TC.x, TC.y, TC.expect); in do_test()
59 accumulate &= test0<S1, S2, Output>(-TC.x, TC.y, TC.expect); in do_test()
60 accumulate &= test0<S1, S2, Output>(TC.x, -TC.y, TC.expect); in do_test()
61 accumulate &= test0<S1, S2, Output>(-TC.x, -TC.y, TC.expect); in do_test()
62 accumulate &= test0<S2, S1, Output>(TC.x, TC.y, TC.expect); in do_test()
63 accumulate &= test0<S2, S1, Output>(-TC.x, TC.y, TC.expect); in do_test()
64 accumulate &= test0<S2, S1, Output>(TC.x, -TC.y, TC.expect); in do_test()
65 accumulate &= test0<S2, S1, Output>(-TC.x, -TC.y, TC.expect); in do_test()
[all …]
/external/llvm/unittests/Support/
DAlignOfTest.cpp47 struct S1 {}; struct
53 struct D1 : S1 {};
59 struct D7 : S1, S3 {};
60 struct D8 : S1, D4, D5 { double x[2]; };
61 struct D9 : S1, D1 { S1 s1; };
73 struct V6 : S1 { virtual ~V6(); };
128 [AlignOf<S1>::Alignment > 0]
170 EXPECT_LE(alignOf<char>(), alignOf<S1>()); in TEST()
171 EXPECT_LE(alignOf<S1>(), alignOf<S2>()); in TEST()
172 EXPECT_LE(alignOf<S1>(), alignOf<S3>()); in TEST()
[all …]
/external/libcxx/test/std/numerics/numeric.ops/numeric.ops.lcm/
Dlcm.pass.cpp48 using S1 = typename std::make_signed<Input1>::type; in do_test() typedef
55 using Output = std::common_type_t<S1, S2>; in do_test()
56 accumulate &= test0<S1, S2, Output>(TC.x, TC.y, TC.expect); in do_test()
57 accumulate &= test0<S1, S2, Output>(-TC.x, TC.y, TC.expect); in do_test()
58 accumulate &= test0<S1, S2, Output>(TC.x, -TC.y, TC.expect); in do_test()
59 accumulate &= test0<S1, S2, Output>(-TC.x, -TC.y, TC.expect); in do_test()
60 accumulate &= test0<S2, S1, Output>(TC.x, TC.y, TC.expect); in do_test()
61 accumulate &= test0<S2, S1, Output>(-TC.x, TC.y, TC.expect); in do_test()
62 accumulate &= test0<S2, S1, Output>(TC.x, -TC.y, TC.expect); in do_test()
63 accumulate &= test0<S2, S1, Output>(-TC.x, -TC.y, TC.expect); in do_test()
[all …]
/external/libcxx/test/std/experimental/numeric/numeric.ops/numeric.ops.gcd/
Dgcd.pass.cpp49 using S1 = typename std::make_signed<Input1>::type; in do_test() typedef
56 using Output = std::common_type_t<S1, S2>; in do_test()
57 accumulate &= test0<S1, S2, Output>(TC.x, TC.y, TC.expect); in do_test()
58 accumulate &= test0<S1, S2, Output>(-TC.x, TC.y, TC.expect); in do_test()
59 accumulate &= test0<S1, S2, Output>(TC.x, -TC.y, TC.expect); in do_test()
60 accumulate &= test0<S1, S2, Output>(-TC.x, -TC.y, TC.expect); in do_test()
61 accumulate &= test0<S2, S1, Output>(TC.x, TC.y, TC.expect); in do_test()
62 accumulate &= test0<S2, S1, Output>(-TC.x, TC.y, TC.expect); in do_test()
63 accumulate &= test0<S2, S1, Output>(TC.x, -TC.y, TC.expect); in do_test()
64 accumulate &= test0<S2, S1, Output>(-TC.x, -TC.y, TC.expect); in do_test()
[all …]
/external/libcxx/test/std/experimental/numeric/numeric.ops/numeric.ops.lcm/
Dlcm.pass.cpp48 using S1 = typename std::make_signed<Input1>::type; in do_test() typedef
55 using Output = std::common_type_t<S1, S2>; in do_test()
56 accumulate &= test0<S1, S2, Output>(TC.x, TC.y, TC.expect); in do_test()
57 accumulate &= test0<S1, S2, Output>(-TC.x, TC.y, TC.expect); in do_test()
58 accumulate &= test0<S1, S2, Output>(TC.x, -TC.y, TC.expect); in do_test()
59 accumulate &= test0<S1, S2, Output>(-TC.x, -TC.y, TC.expect); in do_test()
60 accumulate &= test0<S2, S1, Output>(TC.x, TC.y, TC.expect); in do_test()
61 accumulate &= test0<S2, S1, Output>(-TC.x, TC.y, TC.expect); in do_test()
62 accumulate &= test0<S2, S1, Output>(TC.x, -TC.y, TC.expect); in do_test()
63 accumulate &= test0<S2, S1, Output>(-TC.x, -TC.y, TC.expect); in do_test()
[all …]
/external/clang/test/CXX/expr/expr.unary/expr.unary.noexcept/
Dsema.cpp57 struct S1 { struct
65 S1 s; in callmem()
72 void (S1::*mpnospec)();
73 void (S1::*mpallspec)() throw(...);
74 void (S1::*mpintspec)() throw(int);
75 void (S1::*mpemptyspec)() throw();
78 S1 s; in callmemptr()
150 P(typeid(*(S1*)0)); in idtype()
175 B(b, S1() + T()); in late()
191 void operator +(const S1&, float) throw();
[all …]
/external/llvm/test/DebugInfo/X86/
Ddbg-value-inlined-parameter.ll42 %struct.S1 = type { float*, i32 }
44 @p = common global %struct.S1 zeroinitializer, align 8
46 define i32 @foo(%struct.S1* nocapture %sp, i32 %nums) nounwind optsize ssp !dbg !0 {
48 …tail call void @llvm.dbg.value(metadata %struct.S1* %sp, i64 0, metadata !9, metadata !DIExpressio…
50 %tmp2 = getelementptr inbounds %struct.S1, %struct.S1* %sp, i64 0, i32 1, !dbg !22
53 %tmp5 = getelementptr inbounds %struct.S1, %struct.S1* %sp, i64 0, i32 0, !dbg !27
64 …tail call void @llvm.dbg.value(metadata %struct.S1* @p, i64 0, metadata !9, metadata !DIExpression…
66 …store i32 1, i32* getelementptr inbounds (%struct.S1, %struct.S1* @p, i64 0, i32 1), align 8, !dbg…
68 …store float* %call.i, float** getelementptr inbounds (%struct.S1, %struct.S1* @p, i64 0, i32 0), a…
88 !11 = !DIDerivedType(tag: DW_TAG_typedef, name: "S1", line: 4, file: !42, scope: !2, baseType: !12)
[all …]
/external/swiftshader/third_party/LLVM/test/CodeGen/Mips/
Do32_cc_byval.ll4 %struct.S1 = type { i8, i16, i32, i64, double, i32 }
30 …call void @callee1(float 2.000000e+01, %struct.S1* byval bitcast (%0* @f1.s1 to %struct.S1*)) noun…
34 …at 2.100000e+01, %struct.S3* byval %agg.tmp10, %struct.S1* byval bitcast (%0* @f1.s1 to %struct.S1
38 declare void @callee1(float, %struct.S1* byval)
42 declare void @callee3(float, %struct.S3* byval, %struct.S1* byval)
44 define void @f2(float %f, %struct.S1* nocapture byval %s1) nounwind {
63 %i2 = getelementptr inbounds %struct.S1* %s1, i32 0, i32 5
65 %d = getelementptr inbounds %struct.S1* %s1, i32 0, i32 4
67 %ll = getelementptr inbounds %struct.S1* %s1, i32 0, i32 3
69 %i = getelementptr inbounds %struct.S1* %s1, i32 0, i32 2
[all …]
Dlargeimmprinting.ll7 %struct.S1 = type { [65536 x i8] }
9 @s1 = external global %struct.S1
18 %agg.tmp = alloca %struct.S1, align 1
19 %tmp = getelementptr inbounds %struct.S1* %agg.tmp, i32 0, i32 0, i32 0
20 …call void @llvm.memcpy.p0i8.p0i8.i32(i8* %tmp, i8* getelementptr inbounds (%struct.S1* @s1, i32 0,…
21 call void @f2(%struct.S1* byval %agg.tmp) nounwind
25 declare void @f2(%struct.S1* byval)
/external/clang/test/CodeGenCXX/
Dfastcall.cpp10 struct S1 { struct
12 S1(const S1 &y); argument
15 void __attribute__((fastcall)) foo2(S1 a, int b);
16 void bar2(S1 a, int b) { in bar2()
Dmicrosoft-uuidof.cpp20 struct __declspec(uuid("12345678-1234-1234-1234-1234567890aB")) S1 { } s1; struct
34 GUID g = __uuidof(S1);
41 const GUID& gr = __uuidof(S1);
44 const GUID* gp = &__uuidof(S1);
78 GUID s1_1 = __uuidof(S1); in fun()
84 GUID s1_2 = __uuidof(S1); in fun()

12345678910>>...22