Home
last modified time | relevance | path

Searched defs:guess (Results 1 – 25 of 53) sorted by relevance

123

/third_party/boost/boost/math/tools/
Droots.hpp95 T& guess, in handle_zero_derivative()
236 T newton_raphson_iterate(F f, T guess, T min, T max, int digits, boost::uintmax_t& max_iter) BOOST_… in newton_raphson_iterate()
366 inline T newton_raphson_iterate(F f, T guess, T min, T max, int digits) BOOST_NOEXCEPT_IF(policies:… in newton_raphson_iterate()
402 …T bracket_root_towards_max(F f, T guess, const T& f0, T& min, T& max, boost::uintmax_t& count) BOO… in bracket_root_towards_max()
457 …T bracket_root_towards_min(F f, T guess, const T& f0, T& min, T& max, boost::uintmax_t& count) BOO… in bracket_root_towards_min()
513 …T second_order_root_finder(F f, T guess, T min, T max, int digits, boost::uintmax_t& max_iter) BOO… in second_order_root_finder()
708 T halley_iterate(F f, T guess, T min, T max, int digits, boost::uintmax_t& max_iter) BOOST_NOEXCEPT… in halley_iterate()
714 inline T halley_iterate(F f, T guess, T min, T max, int digits) BOOST_NOEXCEPT_IF(policies::is_noex… in halley_iterate()
746 T schroder_iterate(F f, T guess, T min, T max, int digits, boost::uintmax_t& max_iter) BOOST_NOEXCE… in schroder_iterate()
752 inline T schroder_iterate(F f, T guess, T min, T max, int digits) BOOST_NOEXCEPT_IF(policies::is_no… in schroder_iterate()
[all …]
/third_party/boost/boost/math/distributions/detail/
Dinv_discrete_quantile.hpp77 typename Dist::value_type guess, in do_inverse_discrete_quantile()
369 const typename Dist::value_type& guess, in inverse_discrete_quantile()
400 const typename Dist::value_type& guess, in inverse_discrete_quantile()
443 const typename Dist::value_type& guess, in inverse_discrete_quantile()
486 const typename Dist::value_type& guess, in inverse_discrete_quantile()
514 const typename Dist::value_type& guess, in inverse_discrete_quantile()
541 const typename Dist::value_type& guess, in inverse_discrete_quantile()
Dgeneric_mode.hpp32 typename Dist::value_type generic_find_mode(const Dist& dist, typename Dist::value_type guess, cons… in generic_find_mode()
97 typename Dist::value_type generic_find_mode_01(const Dist& dist, typename Dist::value_type guess, c… in generic_find_mode_01()
Dgeneric_quantile.hpp46 …le(const Dist& dist, const typename Dist::value_type& p, const typename Dist::value_type& guess, b… in generic_quantile()
/third_party/boost/libs/math/example/
Droot_finding_start_locations.cpp37 boost::uintmax_t cbrt_noderiv(T x, T guess) in cbrt_noderiv()
78 boost::uintmax_t cbrt_deriv(T x, T guess) in cbrt_deriv()
114 boost::uintmax_t cbrt_2deriv(T x, T guess) in cbrt_2deriv()
131 boost::uintmax_t cbrt_2deriv_s(T x, T guess) in cbrt_2deriv_s()
168 boost::uintmax_t elliptic_root_noderiv(T radius, T arc, T guess) in elliptic_root_noderiv()
218 boost::uintmax_t elliptic_root_1deriv(T radius, T arc, T guess) in elliptic_root_1deriv()
267 boost::uintmax_t elliptic_root_2deriv(T radius, T arc, T guess) in elliptic_root_2deriv()
289 boost::uintmax_t elliptic_root_2deriv_s(T radius, T arc, T guess) in elliptic_root_2deriv_s()
Droot_finding_example.cpp126 T guess = ldexp(1., exponent/3); // Rough guess is to divide the exponent by three. in cbrt_noderiv() local
231 …T guess = ldexp(1., exponent/3); // Rough guess is to divide the exponent by th… in cbrt_deriv() local
290 …T guess = ldexp(1., exponent/3); // Rough guess is to divide the exponent by th… in cbrt_2deriv() local
314 …T guess = ldexp(1., exponent / 3); // Rough guess is to divide the exponent by … in cbrt_2deriv_lambda() local
418 T guess = ldexp(1., exponent / 5); // Rough guess is to divide the exponent by five. in fifth_2deriv() local
Droot_finding_multiprecision_example.cpp60 T guess = pow_guess; in cbrt_2deriv() local
66 …T guess = ldexp(static_cast<guess_type>(1.), exponent / 3); // Rough guess is to divide the expone… in cbrt_2deriv() local
133 …T guess = ldexp(static_cast<T>(1.), exponent / n); // Rough guess is to divide the exponent by t… in nth_2deriv() local
Droot_finding_fifth.cpp169 T guess = ldexp(1., exponent / 5); // Rough guess is to divide the exponent by five. in fifth_noderiv() local
284 T guess = ldexp(1., exponent / 5); // Rough guess is to divide the exponent by three. in fifth_1deriv() local
355 T guess = ldexp(1., exponent / 5); // Rough guess is to divide the exponent by three. in fifth_2deriv() local
Droot_finding_algorithms.cpp205 T guess; in cbrt_noderiv() local
259 T guess; in cbrt_deriv() local
303 T guess; in cbrt_2deriv() local
330 T guess; in cbrt_2deriv_s() local
Droot_n_finding_algorithms.cpp203 …T guess = static_cast<T>(ldexp(static_cast<guess_type>(1.), exponent / N)); // Rough guess is to d… in nth_root_noderiv() local
258 …T guess = static_cast<T>(ldexp(static_cast<guess_type>(1.), exponent / N)); // Rough guess is to d… in nth_root_1deriv() local
310 …T guess = static_cast<T>(ldexp(static_cast<guess_type>(1.), exponent / N)); // Rough guess is to d… in nth_root_2deriv() local
339 …T guess = static_cast<T>(ldexp(static_cast<guess_type>(1.), exponent / N)); // Rough guess is to d… in nth_root_2deriv_s() local
Droot_finding_n_example.cpp102 …T guess = ldexp(static_cast<guess_type>(1.), exponent / N); // Rough guess is to divide the expo… in nth_2deriv() local
Droot_elliptic_finding.cpp204 T guess = sqrt(arc * arc / 16 - radius * radius); in elliptic_root_noderiv() local
265 T guess = sqrt(arc * arc / 16 - radius * radius); in elliptic_root_1deriv() local
323 T guess = sqrt(arc * arc / 16 - radius * radius); in elliptic_root_2deriv() local
350 T guess = sqrt(arc * arc / 16 - radius * radius); in elliptic_root_2deriv_s() local
/third_party/boost/boost/math/special_functions/detail/
Dairy_ai_bi_zero.hpp59 T guess; in initial_guess() local
110 T guess; in initial_guess() local
Dbessel_jy_zero.hpp252 T guess; in initial_guess() local
471 T guess; in initial_guess() local
/third_party/boost/libs/math/test/
Dtest_roots.cpp198 double guess = 0.5; in inverse_ibeta_newton() local
229 double guess = 0.5; in inverse_ibeta_newton_neg() local
260 double guess = 0.5; in inverse_ibeta_halley() local
291 double guess = -0.5; in inverse_ibeta_halley_neg() local
322 double guess = 0.5; in inverse_ibeta_schroder() local
455 Complex guess{1,1}; in test_complex_newton() local
527 std::complex<double> guess{1,1}; in test_daubechies_fails() local
/third_party/boost/libs/multiprecision/example/
Dmpfr_precision.cpp147 mpfr_float guess = ibeta_inv((double)a, (double)b, 0.5); in beta_distribution_median_method_2() local
185 mpfr_float guess = ibeta_inv((double)a_, (double)b_, 0.5); in beta_distribution_median_method_3() local
/third_party/flutter/skia/third_party/externals/icu/source/i18n/
Ddouble-conversion-strtod.cpp439 double* guess) { in ComputeGuess()
471 double guess; in Strtod() local
548 float guess = f1; in Strtof() local
/third_party/icu/icu4c/source/i18n/
Ddouble-conversion-strtod.cpp443 double* guess) { in ComputeGuess()
489 double guess; in StrtodTrimmed() local
600 float guess = f1; in Strtof() local
/third_party/skia/third_party/externals/icu/source/i18n/
Ddouble-conversion-strtod.cpp434 double* guess) { in ComputeGuess()
485 double guess; in StrtodTrimmed() local
602 float guess = f1; in StrtofTrimmed() local
/third_party/node/deps/icu-small/source/i18n/
Ddouble-conversion-strtod.cpp434 double* guess) { in ComputeGuess()
485 double guess; in StrtodTrimmed() local
602 float guess = f1; in StrtofTrimmed() local
/third_party/ffmpeg/libavutil/
Dfixed_dsp.h178 int retval, bit_mask, guess, square, i; in fixed_sqrt() local
/third_party/boost/boost/math/special_functions/
Dcbrt.hpp85 T guess = frexp(z, &i_exp); in cbrt_imp() local
/third_party/boost/libs/math/doc/graphs/
Ddist_graphs.cpp121 double guess = mod; in add() local
135 double guess = mod; in add() local
/third_party/boost/boost/math/distributions/
Dpoisson.hpp414 RealType guess, factor = 8; in quantile() local
484 RealType guess, factor = 8; in quantile() local
/third_party/icu/icu4c/source/test/perf/collationperf/
Dcollperf.cpp502 int guess = -1; in doBinarySearch() local
540 int guess = -1; in doBinarySearch() local
591 int guess = -1; in doBinarySearch() local
642 int guess = -1; in doBinarySearch() local

123