/third_party/protobuf/src/google/protobuf/stubs/ |
D | common_unittest.cc | 166 void SetA123Method() { a_ = 123; } in SetA123Method() 167 static void SetA123Function() { current_instance_->a_ = 123; } in SetA123Function() 169 void SetAMethod(int a) { a_ = a; } in SetAMethod() 172 static void SetAFunction(int a) { current_instance_->a_ = a; } in SetAFunction() 175 void SetABMethod(int a, const char* b) { a_ = a; b_ = b; } in SetABMethod() 177 current_instance_->a_ = a; in SetABFunction() 183 a_ = 0; in SetUp() 193 int a_; member in google::protobuf::__anon12d4ac260111::ClosureTest 205 EXPECT_NE(123, a_); in TEST_F() 207 EXPECT_EQ(123, a_); in TEST_F() [all …]
|
/third_party/boost/libs/thread/test/sync/mutual_exclusion/with_lock_guard/ |
D | with_lock_guard_move.cpp | 18 explicit Foo(int a) : a_(a) { in Foo() 21 Foo(BOOST_RV_REF(Foo) foo) : a_(foo.a_) { in Foo() 23 foo.a_ = 0; in Foo() 28 a_ = foo.a_; in operator =() 29 foo.a_ = 0; in operator =() 34 return a_; in get() 40 int a_; 70 Boo(int a) : a_(a) { in Boo() 73 Boo(Boo&& boo) : a_(boo.a_) { in Boo() 75 boo.a_ = 0; in Boo() [all …]
|
/third_party/uboot/u-boot-2020.01/arch/x86/include/asm/acpi/ |
D | irq_helper.h | 37 #define RP_IRQ_ROUTES(prefix_, func_, a_, b_, c_, d_) \ argument 40 ACPI_DEV_IRQ(0x0000, 0, a_), \ 54 #define RP_IRQ_ROUTES(prefix_, func_, a_, b_, c_, d_) \ argument 57 ACPI_DEV_IRQ(0x0000, 0, a_), \ 75 #define PCI_DEV_PIRQ_ROUTE(dev_, a_, b_, c_, d_) \ argument 76 ACPI_DEV_IRQ(dev_, 0, a_), \ 81 #define PCIE_BRIDGE_DEV(prefix_, dev_, a_, b_, c_, d_) \ argument 82 ROOTPORT_IRQ_ROUTES(prefix_, a_, b_, c_, d_) \ 85 #define ROOTPORT_IRQ_ROUTES(prefix_, a_, b_, c_, d_) \ argument 86 RP_IRQ_ROUTES(prefix_, 0, a_, b_, c_, d_) \ [all …]
|
/third_party/gn/src/gn/ |
D | header_checker_unittest.cc | 21 : a_(setup_.settings(), Label(SourceDir("//a/"), "a")), in HeaderCheckerTest() 25 a_.set_output_type(Target::SOURCE_SET); in HeaderCheckerTest() 31 a_.SetToolchain(setup_.toolchain(), &err); in HeaderCheckerTest() 36 a_.public_deps().push_back(LabelTargetPair(&b_)); in HeaderCheckerTest() 40 a_.visibility().SetPublic(); in HeaderCheckerTest() 48 a_.OnResolved(&err); in HeaderCheckerTest() 50 targets_.push_back(&a_); in HeaderCheckerTest() 68 Target a_; member in __anonb03483760111::HeaderCheckerTest 96 a_.public_deps().push_back(LabelTargetPair(&p)); in TEST_F() 101 EXPECT_FALSE(checker->IsDependencyOf(&a_, &a_, &chain, &is_permitted)); in TEST_F() [all …]
|
/third_party/libinput/test/ |
D | litest.h | 137 #define litest_assert_comparison_int_(a_, op_, b_) \ argument 139 __typeof__(a_) _a = a_; \ 146 #a_, #b_); \ 149 #define litest_assert_int_eq(a_, b_) \ argument 150 litest_assert_comparison_int_(a_, ==, b_) 152 #define litest_assert_int_ne(a_, b_) \ argument 153 litest_assert_comparison_int_(a_, !=, b_) 155 #define litest_assert_int_lt(a_, b_) \ argument 156 litest_assert_comparison_int_(a_, <, b_) 158 #define litest_assert_int_le(a_, b_) \ argument [all …]
|
/third_party/boost/boost/container/detail/ |
D | destroyers.hpp | 249 : pv_(pv), a_(a) in scoped_destructor() 255 AllocTraits::destroy(a_, pv_); in ~scoped_destructor() 269 Allocator &a_; member in boost::container::dtl::scoped_destructor 280 : rv_(rv), a_(a) in value_destructor() 285 AllocTraits::destroy(a_, &rv_); in ~value_destructor() 290 Allocator &a_; member in boost::container::dtl::value_destructor 304 Allocator & a_; member in boost::container::dtl::allocator_destroyer 308 { AllocTraits::deallocate(a_,p, 1); } in priv_deallocate() 311 { a_.deallocate_one(p); } in priv_deallocate() 315 : a_(a) in allocator_destroyer() [all …]
|
/third_party/boost/libs/python/test/ |
D | keywords.cpp | 15 a_(a) in Foo() 22 a_ = a; in set() 27 int geta() const { return a_; } in geta() 34 int a_; member 46 a_(a) in Bar() 53 a_ = a; in set() 60 a_ = a; in seta() 63 int geta() const { return a_; } in geta() 70 int a_; member
|
/third_party/flutter/skia/third_party/externals/freetype/src/base/ |
D | ftcalc.c | 174 FT_MulDiv( FT_Long a_, in FT_MulDiv() argument 183 a = (FT_UInt64)a_; in FT_MulDiv() 187 FT_MOVE_SIGN( a_, a, s ); in FT_MulDiv() 203 FT_MulDiv_No_Round( FT_Long a_, in FT_MulDiv_No_Round() argument 212 a = (FT_UInt64)a_; in FT_MulDiv_No_Round() 216 FT_MOVE_SIGN( a_, a, s ); in FT_MulDiv_No_Round() 232 FT_MulFix( FT_Long a_, in FT_MulFix() argument 237 return FT_MULFIX_ASSEMBLER( (FT_Int32)a_, (FT_Int32)b_ ); in FT_MulFix() 241 FT_Int64 ab = (FT_Int64)a_ * (FT_Int64)b_; in FT_MulFix() 253 FT_DivFix( FT_Long a_, in FT_DivFix() argument [all …]
|
/third_party/skia/third_party/externals/freetype/src/base/ |
D | ftcalc.c | 173 FT_MulDiv( FT_Long a_, in FT_MulDiv() argument 182 a = (FT_UInt64)a_; in FT_MulDiv() 186 FT_MOVE_SIGN( a_, a, s ); in FT_MulDiv() 202 FT_MulDiv_No_Round( FT_Long a_, in FT_MulDiv_No_Round() argument 211 a = (FT_UInt64)a_; in FT_MulDiv_No_Round() 215 FT_MOVE_SIGN( a_, a, s ); in FT_MulDiv_No_Round() 231 FT_MulFix( FT_Long a_, in FT_MulFix() argument 236 return FT_MULFIX_ASSEMBLER( (FT_Int32)a_, (FT_Int32)b_ ); in FT_MulFix() 240 FT_Int64 ab = (FT_Int64)a_ * (FT_Int64)b_; in FT_MulFix() 252 FT_DivFix( FT_Long a_, in FT_DivFix() argument [all …]
|
/third_party/freetype/src/base/ |
D | ftcalc.c | 173 FT_MulDiv( FT_Long a_, in FT_MulDiv() argument 182 a = (FT_UInt64)a_; in FT_MulDiv() 186 FT_MOVE_SIGN( a_, a, s ); in FT_MulDiv() 202 FT_MulDiv_No_Round( FT_Long a_, in FT_MulDiv_No_Round() argument 211 a = (FT_UInt64)a_; in FT_MulDiv_No_Round() 215 FT_MOVE_SIGN( a_, a, s ); in FT_MulDiv_No_Round() 231 FT_MulFix( FT_Long a_, in FT_MulFix() argument 236 return FT_MULFIX_ASSEMBLER( (FT_Int32)a_, (FT_Int32)b_ ); in FT_MulFix() 240 FT_Int64 ab = (FT_Int64)a_ * (FT_Int64)b_; in FT_MulFix() 252 FT_DivFix( FT_Long a_, in FT_DivFix() argument [all …]
|
/third_party/boost/libs/proto/test/ |
D | flatten.cpp | 83 boost::proto::terminal<char>::type a_ = {'a'}; in test1() local 97 boost::fusion::for_each(flatten(!!!!(a_ >> b_)), to_string(sout)); in test1() 102 boost::fusion::for_each(flatten(a_ >> b_ >> c_), to_string(sout)); in test1() 106 boost::fusion::for_each(flatten(a_ | b_ | c_), to_string(sout)); in test1() 110 boost::fusion::for_each(flatten(a_ >> b_ | c_ >> d_), to_string(sout)); in test1() 114 boost::fusion::for_each(flatten(a_ | b_ >> c_ | d_), to_string(sout)); in test1() 118 boost::fusion::for_each(flatten(a_ >> b_ | c_ >> d_ | e_ >> f_ >> g_), to_string(sout)); in test1() 122 boost::fusion::for_each(flatten(a_ >> b_ | c_ >> d_ | e_ >> (f_ | g_) >> h_), to_string(sout)); in test1() 127 boost::fusion::for_each(flatten(a_(b_(c_ >> d_, e_ | f_), g_ >> h_)(i_)), to_string(sout)); in test1() 151 My<boost::proto::terminal<char>::type> a_ = {{'a'}}; in test2() local [all …]
|
/third_party/skia/third_party/externals/abseil-cpp/absl/random/ |
D | beta_distribution.h | 71 a_ = beta; in param_type() 75 a_ = alpha; in param_type() 78 if (a_ <= 1 && b_ >= ThresholdForLargeA()) { in param_type() 86 if ((b_ < 1.0 && a_ + b_ <= 1.2) || a_ <= ThresholdForSmallA()) { in param_type() 90 a_ = result_type(1) / alpha_; in param_type() 92 if (std::isinf(a_) || std::isinf(b_)) { in param_type() 98 if (a_ >= ThresholdForLargeA()) { in param_type() 102 result_type r = a_ / b_; in param_type() 106 x_ = a_ + b_; in param_type() 108 if (a_ <= 1) { in param_type() [all …]
|
/third_party/abseil-cpp/absl/random/ |
D | beta_distribution.h | 71 a_ = beta; in param_type() 75 a_ = alpha; in param_type() 78 if (a_ <= 1 && b_ >= ThresholdForLargeA()) { in param_type() 86 if ((b_ < 1.0 && a_ + b_ <= 1.2) || a_ <= ThresholdForSmallA()) { in param_type() 90 a_ = result_type(1) / alpha_; in param_type() 92 if (std::isinf(a_) || std::isinf(b_)) { in param_type() 98 if (a_ >= ThresholdForLargeA()) { in param_type() 102 result_type r = a_ / b_; in param_type() 106 x_ = a_ + b_; in param_type() 108 if (a_ <= 1) { in param_type() [all …]
|
/third_party/boost/libs/math/test/ |
D | test_expint_hooks.hpp | 58 double r, a_(a); in expint() local 60 calcei_(&a_, &r, &v); in expint() 65 double r, a_(a); in expint() local 67 calcei_(&a_, &r, &v); in expint() 72 double r, a_(a); in expint() local 74 calcei_(&a_, &r, &v); in expint()
|
D | test_beta_hooks.hpp | 77 double a_ = a; in ibeta() local 83 bratio_(&a_, &b_, &x_, &y_, &w, &w1, &ierr); in ibeta() 88 double a_ = a; in ibeta() local 94 bratio_(&a_, &b_, &x_, &y_, &w, &w1, &ierr); in ibeta() 99 double a_ = a; in ibeta() local 105 bratio_(&a_, &b_, &x_, &y_, &w, &w1, &ierr); in ibeta()
|
/third_party/googletest/googletest/test/ |
D | googletest-tuple-test.cc | 263 a_(1, 0, 0, 0, 0, 0, 0, 0, 0, 2), in BigTupleTest() 266 BigTuple a_, b_; member in __anon71bcf7230111::BigTupleTest 277 EXPECT_EQ(1, get<0>(a_)); in TEST_F() 278 EXPECT_EQ(2, get<9>(a_)); in TEST_F() 281 const BigTuple a(a_); in TEST_F() 288 EXPECT_TRUE(a_ == a_); in TEST_F() 289 EXPECT_FALSE(a_ != a_); in TEST_F() 291 EXPECT_TRUE(a_ != b_); in TEST_F() 292 EXPECT_FALSE(a_ == b_); in TEST_F()
|
/third_party/boost/boost/spirit/home/classic/phoenix/ |
D | actor.hpp | 353 actor<BaseT>::operator()(A& a_) const in operator ()() 355 return BaseT::eval(tuple<A&>(a_)); in operator ()() 362 actor<BaseT>::operator()(A& a_, B& b_) const in operator ()() argument 364 return BaseT::eval(tuple<A&, B&>(a_, b_)); in operator ()() 371 actor<BaseT>::operator()(A& a_, B& b_, C& c_) const in operator ()() argument 373 return BaseT::eval(tuple<A&, B&, C&>(a_, b_, c_)); in operator ()() 381 actor<BaseT>::operator()(A& a_, B& b_, C& c_, D& d_) const in operator ()() argument 383 return BaseT::eval(tuple<A&, B&, C&, D&>(a_, b_, c_, d_)); in operator ()() 390 actor<BaseT>::operator()(A& a_, B& b_, C& c_, D& d_, E& e_) const in operator ()() argument 392 return BaseT::eval(tuple<A&, B&, C&, D&, E&>(a_, b_, c_, d_, e_)); in operator ()() [all …]
|
D | tuples.hpp | 552 typename call_traits<A>::param_type a_ in tuple() 553 ): a(a_) {} in tuple() 592 typename call_traits<A>::param_type a_, in tuple() 594 ): a(a_), b(b_) {} in tuple() 634 typename call_traits<A>::param_type a_, in tuple() 637 ): a(a_), b(b_), c(c_) {} in tuple() 676 typename call_traits<A>::param_type a_, in tuple() 680 ): a(a_), b(b_), c(c_), d(d_) {} in tuple() 719 typename call_traits<A>::param_type a_, in tuple() 724 ): a(a_), b(b_), c(c_), d(d_), e(e_) {} in tuple() [all …]
|
/third_party/iowow/src/ |
D | basedefs.h | 150 #define MIN(a_, b_) ((a_) < (b_) ? (a_) : (b_)) argument 154 #define MAX(a_, b_) ((a_) > (b_) ? (a_) : (b_)) argument
|
/third_party/boost/libs/multiprecision/example/ |
D | mpfr_precision.cpp | 116 mpfr_float beta_distribution_median_method_1(mpfr_float const& a_, mpfr_float const& b_, unsigned d… in beta_distribution_median_method_1() argument 119 mpfr_float half(0.5), a(a_, digits10), b(b_, digits10); in beta_distribution_median_method_1() 143 mpfr_float beta_distribution_median_method_2(mpfr_float const& a_, mpfr_float const& b_, unsigned d… in beta_distribution_median_method_2() argument 146 mpfr_float half(0.5), a(a_, digits10), b(b_, digits10); in beta_distribution_median_method_2() 183 mpfr_float beta_distribution_median_method_3(mpfr_float const& a_, mpfr_float const& b_, unsigned d… in beta_distribution_median_method_3() argument 185 mpfr_float guess = ibeta_inv((double)a_, (double)b_, 0.5); in beta_distribution_median_method_3() 192 mpfr_float a(a_, mpfr_float::default_precision()), b(b_, mpfr_float::default_precision()); in beta_distribution_median_method_3()
|
/third_party/boost/boost/math/special_functions/detail/ |
D | hypergeometric_1F1_addition_theorems_on_z.hpp | 41 : term(1), b_minus_a_plus_n(b - a), a_(a), b_(b), z_(z), n(0), k(k_) in hypergeometric_1f1_recurrence_on_z_minus_zero_series() 64 T M2 = -((2 * (a_ - n) - b_ + z_) * M_next - (a_ - n) * M) / (b_ - (a_ - n)); in operator ()() 72 T term, b_minus_a_plus_n, M, M_next, a_, b_, z_; member 139 … : term(1), b_pochhammer(1 - b), x_k_power(-k_ / z), b_minus_n(b), a_(a), z_(z), b_(b), n(0), k(k_) 151 …T M2 = (M_next * b_minus_n * (1 - b_minus_n - z_) + z_ * (b_minus_n - a_) * M) / (-b_minus_n * (b_… 156 T term, b_pochhammer, x_k_power, M, M_next, b_minus_n, a_, z_, b_; 178 : term(1), a_pochhammer(a), z_plus_k(z + k_), b_(b), a_(a), z_(z), n(0), k(k_) 194 T term, a_pochhammer, z_plus_k, M, M_next, b_minus_n, a_, b_, z_; 217 : term(1), b_minus_a_plus_n(b - a), b_plus_n(b), a_(a), z_(z), n(0), k(k_) 234 T term, b_minus_a_plus_n, M, M_next, b_minus_n, a_, b_plus_n, z_; [all …]
|
/third_party/protobuf/csharp/src/Google.Protobuf.Test/ |
D | LegacyGeneratedCodeTest.cs | 216 private LegacyGeneratedCodeMessageA a_; field in Google.Protobuf.LegacyGeneratedCodeTest.ParseContextEnabledMessageB 218 get { return a_; } 220 a_ = value; 240 if (a_ != null) in IBufferMessage.InternalWriteTo() 258 if (a_ != null) { in CalculateSize() 281 if (a_ == null) { in IBufferMessage.InternalMergeFrom()
|
/third_party/boost/libs/smart_ptr/extras/test/ |
D | sp_atomic_mt_test.cpp | 36 unsigned a_; member 39 X(): v_( 0 ), a_( 1 ), b_( 1 ) in X() 45 return a_ * 7 + b_ * 11; in get() 52 b_ = a_; in set() 53 a_ = tmp; in set()
|
/third_party/boost/boost/smart_ptr/ |
D | make_local_shared_object.hpp | 51 A a_; member in boost::detail::lsp_ms_deleter 64 std::allocator_traits<A>::destroy( a_, p ); in destroy() 78 explicit lsp_ms_deleter( A const & a ) BOOST_SP_NOEXCEPT : a_( a ), initialized_( false ) in lsp_ms_deleter() 83 lsp_ms_deleter( lsp_ms_deleter const & r ) BOOST_SP_NOEXCEPT : a_( r.a_), initialized_( false ) in lsp_ms_deleter()
|
/third_party/boost/libs/interprocess/test/ |
D | emplace_test.hpp | 33 : a_(0), b_(0), c_(0), d_(0), e_(0) in EmplaceInt() 36 : a_(a), b_(b), c_(c), d_(d), e_(e) in EmplaceInt() 40 : a_(o.a_), b_(o.b_), c_(o.c_), d_(o.d_), e_(o.e_) in EmplaceInt() 45 this->a_ = o.a_; in operator =() 55 return l.a_ == r.a_ && in operator ==() 73 os << "EmplaceInt: " << v.a_ << ' ' << v.b_ << ' ' << v.c_ << ' ' << v.d_ << ' ' << v.e_; in operator <<() 79 { return this->a_ + this->b_ + this->c_ + this->d_ + this->e_; } in sum() 81 int a_, b_, c_, d_, e_; member in boost::interprocess::test::EmplaceInt
|