/third_party/boost/boost/math/interpolators/detail/ |
D | cubic_hermite_detail.hpp | 24 : x_{std::move(x)}, y_{std::move(y)}, dydx_{std::move(dydx)} in cubic_hermite_detail() 28 if (x_.size() != y_.size()) 65 y_.push_back(y); in push_back() 83 return y_.back(); in operator ()() 90 Real y0 = y_[i]; in operator ()() 91 Real y1 = y_[i+1]; in operator ()() 122 Real y0 = y_[i]; in prime() 123 Real y1 = y_[i+1]; in prime() 141 os << "(" << m.x_[i] << ", " << m.y_[i] << ", " << m.dydx_[i] << "), "; in operator <<() 144 os << "(" << m.x_[n] << ", " << m.y_[n] << ", " << m.dydx_[n] << ")}"; in operator <<() [all …]
|
D | quintic_hermite_detail.hpp | 20 …essContainer && dydx, RandomAccessContainer && d2ydx2) : x_{std::move(x)}, y_{std::move(y)}, dydx_… in quintic_hermite_detail() 22 if (x_.size() != y_.size()) 59 y_.push_back(y); in push_back() 78 return y_.back(); in operator ()() 85 Real y0 = y_[i]; in operator ()() 86 Real y1 = y_[i+1]; in operator ()() 128 Real y0 = y_[i]; in prime() 129 Real y1 = y_[i+1]; in prime() 164 Real y0 = y_[i]; in double_prime() 165 Real y1 = y_[i+1]; in double_prime() [all …]
|
D | septic_hermite_detail.hpp | 21 …: x_{std::move(x)}, y_{std::move(y)}, dydx_{std::move(dydx)}, d2ydx2_{std::move(d2ydx2)}, d3ydx3_{… in septic_hermite_detail() 23 if (x_.size() != y_.size()) 64 y_.push_back(y); in push_back() 83 return y_.back(); in operator ()() 111 Real y0 = y_[i]; in operator ()() 112 Real y1 = y_[i+1]; in operator ()() 145 Real y0 = y_[i]; in prime() 146 Real y1 = y_[i+1]; in prime() 181 …os << "(" << m.x_[i] << ", " << m.y_[i] << ", " << m.dydx_[i] << ", " << m.d2ydx2_[i] << ", " << … in operator <<() 184 …os << "(" << m.x_[n] << ", " << m.y_[n] << ", " << m.dydx_[n] << ", " << m.d2ydx2_[n] << m.d3ydx3_… in operator <<() [all …]
|
D | vector_barycentric_rational_detail.hpp | 39 SpaceContainer y_; member in boost::math::detail::vector_barycentric_rational_imp 48 y_ = std::move(y); in vector_barycentric_rational_imp() 50 …BOOST_ASSERT_MSG(t_.size() == y_.size(), "There must be the same number of time points as space po… in vector_barycentric_rational_imp() 51 BOOST_ASSERT_MSG(approximation_order < y_.size(), "Approximation order must be < data length."); in vector_barycentric_rational_imp() 116 p = y_[i]; in operator ()() 122 p[j] += x*y_[i][j]; in operator ()() 163 sum[k] += w_[j]*(y_[i][k] - y_[j][k])/(t_[i] - t_[j]); in eval_with_prime() 176 diff[j] = (x[j] - y_[i][j])/(t-t_[i]); in eval_with_prime()
|
/third_party/boost/boost/math/interpolators/ |
D | makima.hpp | 131 impl_->y_.push_back(y); in push_back() 136 Real mim2 = (impl_->y_[i-1]-impl_->y_[i-2])/(impl_->x_[i-1]-impl_->x_[i-2]); in push_back() 137 Real mim1 = (impl_->y_[i ]-impl_->y_[i-1])/(impl_->x_[i ]-impl_->x_[i-1]); in push_back() 138 Real mi = (impl_->y_[i+1]-impl_->y_[i ])/(impl_->x_[i+1]-impl_->x_[i ]); in push_back() 139 Real mip1 = (impl_->y_[i+2]-impl_->y_[i+1])/(impl_->x_[i+2]-impl_->x_[i+1]); in push_back() 147 Real mnm4 = (impl_->y_[n-3]-impl_->y_[n-4])/(impl_->x_[n-3]-impl_->x_[n-4]); in push_back() 148 Real mnm3 = (impl_->y_[n-2]-impl_->y_[n-3])/(impl_->x_[n-2]-impl_->x_[n-3]); in push_back() 149 Real mnm2 = (impl_->y_[n-1]-impl_->y_[n-2])/(impl_->x_[n-1]-impl_->x_[n-2]); in push_back()
|
D | pchip.hpp | 91 impl_->y_.push_back(y); in push_back() 94 impl_->dydx_[n-1] = (impl_->y_[n-1]-impl_->y_[n-2])/(impl_->x_[n-1] - impl_->x_[n-2]); in push_back() 98 Real dkm1 = (impl_->y_[k] - impl_->y_[k-1])/hkm1; in push_back() 101 Real dk = (impl_->y_[k+1] - impl_->y_[k])/hk; in push_back()
|
/third_party/boost/libs/function/test/ |
D | mem_fun_portable.cpp | 18 Y(int y = 0) : y_(y) {} in Y() 19 bool operator==(const Y& rhs) { return y_ == rhs.y_; } in operator ==() 21 int y_; member
|
D | mem_fun_cxx98.cpp | 18 Y(int y = 0) : y_(y) {} in Y() 19 bool operator==(const Y& rhs) { return y_ == rhs.y_; } in operator ==() 21 int y_; member
|
/third_party/skia/third_party/externals/tint/src/ast/ |
D | workgroup_decoration.cc | 29 const ast::Expression* y_, in WorkgroupDecoration() argument 31 : Base(pid, src), x(x_), y(y_), z(z_) {} in WorkgroupDecoration() 43 auto* y_ = ctx->Clone(y); in Clone() local 45 return ctx->dst->create<WorkgroupDecoration>(src, x_, y_, z_); in Clone()
|
/third_party/boost/libs/math/test/ |
D | test_beta_hooks.hpp | 80 double y_ = 1-x_; in ibeta() local 83 bratio_(&a_, &b_, &x_, &y_, &w, &w1, &ierr); in ibeta() 91 double y_ = 1-x_; in ibeta() local 94 bratio_(&a_, &b_, &x_, &y_, &w, &w1, &ierr); in ibeta() 102 double y_ = 1-x_; in ibeta() local 105 bratio_(&a_, &b_, &x_, &y_, &w, &w1, &ierr); in ibeta()
|
/third_party/boost/boost/math/special_functions/ |
D | daubechies_scaling.hpp | 96 …, RandomAccessContainer && dydx, int grid_refinements, Real x0) : x0_{x0}, y_{std::move(y)}, dy_{s… in matched_holder() 116 auto i = static_cast<decltype(y_.size())>(ii); in operator ()() 119 Real diff = y_[i+1] - y_[i]; in operator ()() 120 return y_[i] + (2*dphi - diff)*t + 2*sqrt(t)*(diff-dphi); in operator ()() 125 return 2*y_.size()*sizeof(Real) + sizeof(this); in bytes() 131 RandomAccessContainer y_; member in boost::math::detail::matched_holder 183 …cessContainer && y, RandomAccessContainer && dydx, int grid_refinements) : y_{std::move(y)}, dydx_… in linear_interpolation() 196 return (1-t)*y_[kk] + t*y_[kk+1]; in operator ()() 212 return (1 + y_.size() + dydx_.size())*sizeof(Real) + sizeof(y_) + sizeof(dydx_); in bytes() 217 RandomAccessContainer y_; member in boost::math::detail::linear_interpolation
|
/third_party/boost/libs/utility/test/ |
D | base_from_member_test.cpp | 112 base_or_member *x_, *y_, *z_; member in base_class 435 : x_( &x ), y_( y ), z_( z ) in base_class() 445 if ( y_ ) in base_class() 448 std::cout << ", my y-factor is " << y_; in base_class() 451 PRIVATE_REGISTER_USE( *this, *y_ ); in base_class() 481 if ( y_ ) in ~base_class() 484 std::cout << ", my y-factor was " << y_; in ~base_class() 487 PRIVATE_UNREGISTER_USE( *this, *y_ ); in ~base_class()
|
/third_party/boost/boost/thread/detail/ |
D | counter.hpp | 96 not_equal(std::size_t& x, std::size_t& y) : x_(x), y_(y) {} in not_equal() 97 bool operator()() const { return x_ != y_; } in operator ()() 99 std::size_t& y_; member
|
/third_party/boost/libs/phoenix/test/bind/ |
D | bind_member_function_tests.cpp | 66 test::y y_; in main() local 71 BOOST_TEST(bind(&test::y::negate, y_, arg1)(a) == -a); in main() 74 BOOST_TEST(bind(&test::y::negate, &y_, 777)(a) == -777); in main()
|
/third_party/boost/boost/polygon/detail/ |
D | voronoi_structures.hpp | 32 y_(y) {} in point_2d() 35 return (this->x_ == that.x()) && (this->y_ == that.y()); in operator ==() 39 return (this->x_ != that.x()) || (this->y_ != that.y()); in operator !=() 47 return y_; in y() 56 y_ = y; in y() 62 coordinate_type y_; member in boost::polygon::detail::point_2d
|
D | property_merge.hpp | 15 coordinate_type x_, y_; member in boost::polygon::property_merge_point 17 inline property_merge_point() : x_(), y_() {} in property_merge_point() 18 inline property_merge_point(coordinate_type x, coordinate_type y) : x_(x), y_(y) {} in property_merge_point() 20 … bool operator==(const property_merge_point& that) const { return x_ == that.x_ && y_ == that.y_; } in operator ==() 25 return y_ < that.y_; in operator <() 28 inline coordinate_type y() const { return y_; } in y() 30 inline void y(coordinate_type value) { y_ = value; } in y()
|
/third_party/boost/libs/config/test/ |
D | boost_no_unified_init.ipp | 25 AltStruct(int x, double y) : x_{x}, y_{y} {} 27 double Y() const { return y_; } 30 double y_;
|
D | boost_no_mem_tem_pnts.ipp | 20 pair(int x_,int y_) 21 : x(x_), y(y_)
|
/third_party/boost/libs/fusion/test/sequence/ |
D | adapt_tpl_adt.cpp | 43 point(X x_, Y y_, int z_) : x(x_), y(y_), z(z_) {} in point() argument 49 void set_y(Y y_) { y = y_; } in set_y() argument
|
/third_party/boost/libs/yap/perf/ |
D | arithmetic_perf.cpp | 55 user::number eval_as_yap_expr(user::number a_, user::number x_, user::number y_) in eval_as_yap_expr() argument 59 term<user::number> y{{y_}}; in eval_as_yap_expr() 77 eval_as_yap_expr_4x(user::number a_, user::number x_, user::number y_) in eval_as_yap_expr_4x() argument 81 term<user::number> y{{y_}}; in eval_as_yap_expr_4x()
|
/third_party/boost/boost/random/ |
D | lagged_fibonacci.hpp | 167 BOOST_RANDOM_DETAIL_EQUALITY_OPERATOR(lagged_fibonacci_engine, x_, y_) in BOOST_RANDOM_DETAIL_EQUALITY_OPERATOR() argument 168 { return x_.i == y_.i && std::equal(x_.x, x_.x+long_lag, y_.x); } in BOOST_RANDOM_DETAIL_EQUALITY_OPERATOR() 382 BOOST_RANDOM_DETAIL_EQUALITY_OPERATOR(lagged_fibonacci_01_engine, x_, y_) in BOOST_RANDOM_DETAIL_EQUALITY_OPERATOR() argument 383 { return x_.i == y_.i && std::equal(x_.x, x_.x+long_lag, y_.x); } in BOOST_RANDOM_DETAIL_EQUALITY_OPERATOR()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/random/ |
D | beta_distribution.h | 110 y_ = result_type(1) / a_; in param_type() 116 y_ = std::sqrt((1 + r) / (b_ * r * 2 - r + 1)); in param_type() 117 gamma_ = a_ + result_type(1) / y_; in param_type() 188 result_type y_; // "beta" in Cheng variable 358 v = p.y_ * std::log(u1 / (1 - u1)); in AlgorithmCheng()
|
/third_party/abseil-cpp/absl/random/ |
D | beta_distribution.h | 110 y_ = result_type(1) / a_; in param_type() 116 y_ = std::sqrt((1 + r) / (b_ * r * 2 - r + 1)); in param_type() 117 gamma_ = a_ + result_type(1) / y_; in param_type() 188 result_type y_; // "beta" in Cheng variable 358 v = p.y_ * std::log(u1 / (1 - u1)); in AlgorithmCheng()
|
/third_party/flutter/skia/third_party/externals/libwebp/src/enc/ |
D | iterator_enc.c | 24 (it->y_ > 0) ? 129 : 127; in InitLeft() 47 it->y_ = y; in VP8IteratorSetRow() 133 const int x = it->x_, y = it->y_; in VP8IteratorImport() 191 const int x = it->x_, y = it->y_; in VP8IteratorExport() 292 const int x = it->x_, y = it->y_; in VP8IteratorSaveBoundary() 317 VP8IteratorSetRow(it, ++it->y_); in VP8IteratorNext()
|
/third_party/skia/third_party/externals/libwebp/src/enc/ |
D | iterator_enc.c | 24 (it->y_ > 0) ? 129 : 127; in InitLeft() 47 it->y_ = y; in VP8IteratorSetRow() 133 const int x = it->x_, y = it->y_; in VP8IteratorImport() 191 const int x = it->x_, y = it->y_; in VP8IteratorExport() 292 const int x = it->x_, y = it->y_; in VP8IteratorSaveBoundary() 317 VP8IteratorSetRow(it, ++it->y_); in VP8IteratorNext()
|