Home
last modified time | relevance | path

Searched refs:x0_ (Results 1 – 7 of 7) sorted by relevance

/third_party/boost/boost/math/interpolators/detail/
Dcubic_hermite_detail.hpp174 : y_{std::move(y)}, dy_{std::move(dydx)}, x0_{x0}, inv_dx_{1/dx} in cardinal_cubic_hermite_detail()
203 const Real xf = x0_ + (y_.size()-1)/inv_dx_; in operator ()()
204 if (x < x0_ || x > xf) in operator ()()
209 << x0_ << ", " << xf << "]"; in operator ()()
222 Real s = (x-x0_)*inv_dx_; in unchecked_evaluation()
238 const Real xf = x0_ + (y_.size()-1)/inv_dx_; in prime()
239 if (x < x0_ || x > xf) in prime()
244 << x0_ << ", " << xf << "]"; in prime()
257 Real s = (x-x0_)*inv_dx_; in unchecked_prime()
283 Real xf = x0_ + (y_.size()-1)/inv_dx_; in domain()
[all …]
Dquintic_hermite_detail.hpp215 : y_{std::move(y)}, dy_{std::move(dydx)}, d2y_{std::move(d2ydx2)}, x0_{x0}, inv_dx_{1/dx} in cardinal_quintic_hermite_detail()
248 const Real xf = x0_ + (y_.size()-1)/inv_dx_; in operator ()()
249 if (x < x0_ || x > xf) in operator ()()
254 << x0_ << ", " << xf << "]"; in operator ()()
267 Real s = (x-x0_)*inv_dx_; in unchecked_evaluation()
294 const Real xf = x0_ + (y_.size()-1)/inv_dx_; in prime()
295 if (x < x0_ || x > xf) in prime()
300 << x0_ << ", " << xf << "]"; in prime()
314 Real s = (x-x0_)*inv_dx_; in unchecked_prime()
338 const Real xf = x0_ + (y_.size()-1)/inv_dx_; in double_prime()
[all …]
Dseptic_hermite_detail.hpp211 …: y_{std::move(y)}, dy_{std::move(dydx)}, d2y_{std::move(d2ydx2)}, d3y_{std::move(d3ydx3)}, x0_{x0… in cardinal_septic_hermite_detail()
252 Real xf = x0_ + (y_.size()-1)/inv_dx_; in operator ()()
253 if (x < x0_ || x > xf) in operator ()()
258 << x0_ << ", " << xf << "]"; in operator ()()
270 Real s3 = (x-x0_)*inv_dx_; in unchecked_evaluation()
307 Real xf = x0_ + (y_.size()-1)/inv_dx_; in prime()
308 if (x < x0_ || x > xf) in prime()
313 << x0_ << ", " << xf << "]"; in prime()
327 Real s3 = (x-x0_)*inv_dx_; in unchecked_prime()
363 Real xf = x0_ + (y_.size()-1)/inv_dx_; in double_prime()
[all …]
/third_party/boost/boost/math/special_functions/
Ddaubechies_scaling.hpp96 …iner && y, RandomAccessContainer && dydx, int grid_refinements, Real x0) : x0_{x0}, y_{std::move(y… in matched_holder()
114 Real s = (x-x0_)*inv_h_; in operator ()()
129 Real x0_; member in boost::math::detail::matched_holder
141 …matched_holder_aos(RandomAccessContainer && data, int grid_refinements, Real x0) : x0_{x0}, data_{… in matched_holder_aos()
155 Real s = (x-x0_)*inv_h_; in operator ()()
172 Real x0_; member in boost::math::detail::matched_holder_aos
227 …linear_interpolation_aos(RandomAccessContainer && data, int grid_refinements, Real x0) : x0_{x0}, … in linear_interpolation_aos()
235 Real y = (x-x0_)*s_; in operator ()()
246 Real y = (x-x0_)*s_; in prime()
260 Real x0_; member in boost::math::detail::linear_interpolation_aos
/third_party/mindspore/mindspore/ccsrc/backend/optimizer/ascend/ir_fusion/
Dmatmul_biasadd_fusion.h27 x0_ = std::make_shared<Var>();
38 VarPtr x0_;
Dmatmul_biasadd_fusion.cc27 VectorRef matmul({matmul_var_, x0_, x1_}); in DefinePattern()
53 inputs.emplace_back(GetAnfNodeByVar(equiv, x0_)); in Process()
/third_party/boost/boost/random/
Dlinear_congruential.hpp127 BOOST_RANDOM_DETAIL_ARITHMETIC_SEED(linear_congruential_engine, IntType, x0_) in BOOST_RANDOM_DETAIL_ARITHMETIC_SEED() argument
132 IntType x0 = x0_; in BOOST_RANDOM_DETAIL_ARITHMETIC_SEED()