/external/pcre/dist2/src/sljit/ |
D | sljitNativeSPARC_32.c | 30 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/swiftshader/third_party/llvm-7.0/llvm/unittests/ADT/ |
D | StatisticTest.cpp | 25 OptionalStatistic &S1, OptionalStatistic &S2) { in extractCounters() argument 28 S1 = S; in extractCounters() 79 OptionalStatistic S1; in TEST() local 81 extractCounters(Range1, S1, S2); in TEST() 83 EXPECT_EQ(S1.hasValue(), true); in TEST() 95 OptionalStatistic S1; in TEST() local 97 extractCounters(Range, S1, S2); in TEST() 99 EXPECT_EQ(S1.hasValue(), true); in TEST() 102 EXPECT_EQ(S1->first, "Counter"); in TEST() 103 EXPECT_EQ(S1->second, 2u); in TEST() [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ADT/ |
D | StringSwitch.h | 94 StringSwitch &Cases(StringLiteral S0, StringLiteral S1, T Value) { in Cases() argument 95 return Case(S0, Value).Case(S1, Value); in Cases() 99 StringSwitch &Cases(StringLiteral S0, StringLiteral S1, StringLiteral S2, in Cases() argument 101 return Case(S0, Value).Cases(S1, S2, Value); in Cases() 105 StringSwitch &Cases(StringLiteral S0, StringLiteral S1, StringLiteral S2, in Cases() argument 107 return Case(S0, Value).Cases(S1, S2, S3, Value); in Cases() 111 StringSwitch &Cases(StringLiteral S0, StringLiteral S1, StringLiteral S2, in Cases() argument 113 return Case(S0, Value).Cases(S1, S2, S3, S4, Value); in Cases() 117 StringSwitch &Cases(StringLiteral S0, StringLiteral S1, StringLiteral S2, in Cases() argument 120 return Case(S0, Value).Cases(S1, S2, S3, S4, S5, Value); in Cases() [all …]
|
D | SetOperations.h | 23 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/SemaCXX/ |
D | out-of-line-def-mismatch.cpp | 4 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 …]
|
D | warn-unused-variables.cpp | 77 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/swiftshader/third_party/llvm-subzero/include/llvm/ADT/ |
D | StringSwitch.h | 107 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/ |
D | set.h | 76 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/ |
D | auto-release-result-assert.mm | 3 // 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/ |
D | SetOperations.h | 23 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/ |
D | SetOperations.h | 23 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/ |
D | p5.cpp | 25 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/llvm/test/CodeGen/Mips/ |
D | o32_cc_byval.ll | 4 %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 …]
|
D | largeimmprinting.ll | 7 %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/libopus/silk/float/ |
D | apply_sine_window_FLP.c | 46 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/clang/test/OpenMP/ |
D | parallel_ast_print.cpp | 11 struct S1 { struct 12 S1(): a(0) {} in S1() function 13 S1(int v) : a(v) {} in S1() argument 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/unittests/Support/ |
D | AlignOfTest.cpp | 47 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/llvm/test/CodeGen/X86/ |
D | peephole-fold-movsd.ll | 7 %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/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/X86/ |
D | peephole-fold-movsd.ll | 7 %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
|
D | gep-expanded-vector.ll | 3 %struct.S1 = type { %struct.S1*, %struct.S1* } 5 define %struct.S1** @malloc_init_state(<64 x %struct.S1**> %tmp, i32 %ind) { 7 %Vec = getelementptr inbounds %struct.S1*, <64 x %struct.S1**> %tmp , i64 2 8 %ptr = extractelement <64 x %struct.S1**> %Vec, i32 %ind 9 ret %struct.S1** %ptr
|
/external/clang/test/CXX/dcl.decl/dcl.fct.def/dcl.fct.def.default/ |
D | p2.cpp | 5 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/ |
D | gcd.pass.cpp | 55 using S1 = std::make_signed_t<Input1>; in do_test() typedef 62 using Output = std::common_type_t<S1, S2>; in do_test() 63 accumulate &= test0<S1, S2, Output>(TC.x, TC.y, TC.expect); in do_test() 64 accumulate &= test0<S1, S2, Output>(-TC.x, TC.y, TC.expect); in do_test() 65 accumulate &= test0<S1, S2, Output>(TC.x, -TC.y, TC.expect); in do_test() 66 accumulate &= test0<S1, S2, Output>(-TC.x, -TC.y, TC.expect); in do_test() 67 accumulate &= test0<S2, S1, Output>(TC.x, TC.y, TC.expect); in do_test() 68 accumulate &= test0<S2, S1, Output>(-TC.x, TC.y, TC.expect); in do_test() 69 accumulate &= test0<S2, S1, Output>(TC.x, -TC.y, TC.expect); in do_test() 70 accumulate &= test0<S2, S1, Output>(-TC.x, -TC.y, TC.expect); in do_test() [all …]
|
/external/libcxx/test/std/numerics/numeric.ops/numeric.ops.lcm/ |
D | lcm.pass.cpp | 54 using S1 = std::make_signed_t<Input1>; in do_test() typedef 61 using Output = std::common_type_t<S1, S2>; in do_test() 62 accumulate &= test0<S1, S2, Output>(TC.x, TC.y, TC.expect); in do_test() 63 accumulate &= test0<S1, S2, Output>(-TC.x, TC.y, TC.expect); in do_test() 64 accumulate &= test0<S1, S2, Output>(TC.x, -TC.y, TC.expect); in do_test() 65 accumulate &= test0<S1, S2, Output>(-TC.x, -TC.y, TC.expect); in do_test() 66 accumulate &= test0<S2, S1, Output>(TC.x, TC.y, TC.expect); in do_test() 67 accumulate &= test0<S2, S1, Output>(-TC.x, TC.y, TC.expect); in do_test() 68 accumulate &= test0<S2, S1, Output>(TC.x, -TC.y, TC.expect); in do_test() 69 accumulate &= test0<S2, S1, Output>(-TC.x, -TC.y, TC.expect); in do_test() [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-pdbutil/ |
D | PrettyTypeDumper.cpp | 34 typedef bool (*CompareFunc)(const LayoutPtr &S1, const LayoutPtr &S2); 36 static bool CompareNames(const LayoutPtr &S1, const LayoutPtr &S2) { in CompareNames() argument 37 return S1->getName() < S2->getName(); in CompareNames() 40 static bool CompareSizes(const LayoutPtr &S1, const LayoutPtr &S2) { in CompareSizes() argument 41 return S1->getSize() < S2->getSize(); in CompareSizes() 44 static bool ComparePadding(const LayoutPtr &S1, const LayoutPtr &S2) { in ComparePadding() argument 45 return S1->deepPaddingSize() < S2->deepPaddingSize(); in ComparePadding() 48 static bool ComparePaddingPct(const LayoutPtr &S1, const LayoutPtr &S2) { in ComparePaddingPct() argument 49 double Pct1 = (double)S1->deepPaddingSize() / (double)S1->getSize(); in ComparePaddingPct() 54 static bool ComparePaddingImmediate(const LayoutPtr &S1, const LayoutPtr &S2) { in ComparePaddingImmediate() argument [all …]
|
/external/clang/test/CXX/expr/expr.unary/expr.unary.noexcept/ |
D | sema.cpp | 57 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 …]
|