Home
last modified time | relevance | path

Searched defs:eps (Results 1 – 25 of 103) sorted by relevance

12345

/third_party/json/benchmarks/thirdparty/benchmark/src/
Dcheck.h72 #define CHECK_FLOAT_EQ(a, b, eps) CHECK(std::fabs((a) - (b)) < (eps)) argument
73 #define CHECK_FLOAT_NE(a, b, eps) CHECK(std::fabs((a) - (b)) >= (eps)) argument
74 #define CHECK_FLOAT_GE(a, b, eps) CHECK((a) - (b) > -(eps)) argument
75 #define CHECK_FLOAT_LE(a, b, eps) CHECK((b) - (a) > -(eps)) argument
76 #define CHECK_FLOAT_GT(a, b, eps) CHECK((a) - (b) > (eps)) argument
77 #define CHECK_FLOAT_LT(a, b, eps) CHECK((b) - (a) > (eps)) argument
/third_party/benchmark/src/
Dcheck.h74 #define CHECK_FLOAT_EQ(a, b, eps) CHECK(std::fabs((a) - (b)) < (eps)) argument
75 #define CHECK_FLOAT_NE(a, b, eps) CHECK(std::fabs((a) - (b)) >= (eps)) argument
76 #define CHECK_FLOAT_GE(a, b, eps) CHECK((a) - (b) > -(eps)) argument
77 #define CHECK_FLOAT_LE(a, b, eps) CHECK((b) - (a) > -(eps)) argument
78 #define CHECK_FLOAT_GT(a, b, eps) CHECK((a) - (b) > (eps)) argument
79 #define CHECK_FLOAT_LT(a, b, eps) CHECK((b) - (a) > (eps)) argument
/third_party/boost/libs/math/test/
Dtest_tr1.cpp34 float eps = boost::math::tools::epsilon<float>(); in test_values() local
666 double eps = boost::math::tools::epsilon<double>(); in test_values() local
987 long double eps = boost::math::tools::epsilon<long double>(); in test_values() local
Dtest_autodiff_3.cpp12 const T eps = 3000 * test_constants_t<T>::pct_epsilon(); // percent in BOOST_AUTO_TEST_CASE_TEMPLATE() local
34 const auto eps = boost::math::tools::epsilon<T>(); in BOOST_AUTO_TEST_CASE_TEMPLATE() local
47 const T eps = 300 * 100 * boost::math::tools::epsilon<T>(); // percent in BOOST_AUTO_TEST_CASE_TEMPLATE() local
72 const T eps = 20000 * boost::math::tools::epsilon<T>(); // percent in BOOST_AUTO_TEST_CASE_TEMPLATE() local
100 const T eps = 300 * boost::math::tools::epsilon<T>(); // percent in BOOST_AUTO_TEST_CASE_TEMPLATE() local
154 const T eps = 800 * boost::math::tools::epsilon<T>(); // percent in BOOST_AUTO_TEST_CASE_TEMPLATE() local
211 const T eps = 1000 * boost::math::tools::epsilon<T>(); // percent in BOOST_AUTO_TEST_CASE_TEMPLATE() local
243 const T eps = 1000 * boost::math::tools::epsilon<T>(); // percent in BOOST_AUTO_TEST_CASE_TEMPLATE() local
268 const T eps = 1000 * boost::math::tools::epsilon<T>(); // percent in BOOST_AUTO_TEST_CASE_TEMPLATE() local
293 const T eps = 1000 * boost::math::tools::epsilon<T>(); // percent in BOOST_AUTO_TEST_CASE_TEMPLATE() local
[all …]
Dtest_autodiff_2.cpp41 const T eps = 201 * std::numeric_limits<T>::epsilon(); // percent in BOOST_AUTO_TEST_CASE_TEMPLATE() local
102 const T eps = 4000 * std::numeric_limits<T>::epsilon(); // percent in BOOST_AUTO_TEST_CASE_TEMPLATE() local
272 const T eps = 100 * std::numeric_limits<T>::epsilon(); // percent in BOOST_AUTO_TEST_CASE_TEMPLATE() local
339 const T eps = 200 * std::numeric_limits<T>::epsilon(); // percent in BOOST_AUTO_TEST_CASE_TEMPLATE() local
365 const T eps = 300 * std::numeric_limits<T>::epsilon(); // percent in BOOST_AUTO_TEST_CASE_TEMPLATE() local
386 const T eps = 300 * std::numeric_limits<T>::epsilon(); // percent in BOOST_AUTO_TEST_CASE_TEMPLATE() local
409 const T eps = 300 * std::numeric_limits<T>::epsilon(); // percent in BOOST_AUTO_TEST_CASE_TEMPLATE() local
430 const T eps = 100 * std::numeric_limits<T>::epsilon(); // percent in BOOST_AUTO_TEST_CASE_TEMPLATE() local
442 const T eps = 300 * std::numeric_limits<T>::epsilon(); // percent in BOOST_AUTO_TEST_CASE_TEMPLATE() local
474 const T eps = 300 * std::numeric_limits<T>::epsilon(); // percent in BOOST_AUTO_TEST_CASE_TEMPLATE() local
Dtest_tr1.c95 float eps = FLT_EPSILON; in test_values_f() local
417 double eps = DBL_EPSILON; in test_values() local
739 long double eps = LDBL_EPSILON; in test_valuesl() local
Dhandle_test_result.hpp126 T eps = boost::math::tools::epsilon<T>(); in handle_test_result() local
190 T eps = boost::math::tools::epsilon<T>(); in print_test_result() local
/third_party/boost/boost/geometry/util/
Dseries_expansion.hpp63 inline CT evaluate_A1(CT eps) in evaluate_A1()
108 inline CT evaluate_A2(CT const& eps) in evaluate_A2()
222 inline void evaluate_coeffs_C1(Coeffs &c, CT const& eps) in evaluate_coeffs_C1()
321 inline void evaluate_coeffs_C1p(Coeffs& c, CT const& eps) in evaluate_coeffs_C1p()
420 inline void evaluate_coeffs_C2(Coeffs& c, CT const& eps) in evaluate_coeffs_C2()
638 inline void evaluate_coeffs_C3(Coeffs1 &coeffs1, Coeffs2 &coeffs2, CT const& eps) in evaluate_coeffs_C3()
/third_party/boost/libs/math/example/
Dtest_cpp_float_close_fraction.cpp66 cpp_dec_float_50_noet eps = std::numeric_limits<cpp_dec_float_50_noet>::epsilon(); in BOOST_AUTO_TEST_CASE() local
88 cpp_dec_float_50_et eps = std::numeric_limits<cpp_dec_float_50_et>::epsilon(); in BOOST_AUTO_TEST_CASE() local
Dhandle_test_result.hpp126 T eps = boost::math::tools::epsilon<T>(); in handle_test_result() local
190 T eps = boost::math::tools::epsilon<T>(); in print_test_result() local
/third_party/boost/libs/test/test/writing-test-ts/
Dfp-multiprecision-comparison-test.cpp108 cpp_dec_float_50_noet eps = std::numeric_limits<cpp_dec_float_50_noet>::epsilon(); in BOOST_AUTO_TEST_CASE() local
136 cpp_dec_float_50_et eps = std::numeric_limits<cpp_dec_float_50_et>::epsilon(); in BOOST_AUTO_TEST_CASE() local
/third_party/boost/boost/math/differentiation/
Dfinite_difference.hpp97 const Real eps = (numeric_limits<Real>::epsilon)(); in finite_difference_derivative() local
126 const Real eps = (numeric_limits<Real>::epsilon)(); in finite_difference_derivative() local
154 const Real eps = (numeric_limits<Real>::epsilon)(); in finite_difference_derivative() local
186 const Real eps = (numeric_limits<Real>::epsilon)(); in finite_difference_derivative() local
218 const Real eps = (numeric_limits<Real>::epsilon)(); in finite_difference_derivative() local
/third_party/jerryscript/tests/jerry-test-suite/11/11.04/11.04.04/
D11.04.04-006.js16 var eps = 0.00000001; variable
/third_party/jerryscript/tests/jerry-test-suite/11/11.04/11.04.05/
D11.04.05-006.js15 var eps = 0.000000001; variable
/third_party/jerryscript/tests/jerry-test-suite/11/11.09/11.09.05/
D11.09.05-016.js15 var x = 123.00, y = 0.0123e+4, eps = .00001 variable
/third_party/jerryscript/tests/jerry-test-suite/11/11.09/11.09.04/
D11.09.04-016.js15 var x = 123.00, y = 0.0123e+4, eps = .00001 variable
/third_party/boost/libs/math/example/daubechies_wavelets/
Dfind_best_daubechies_interpolator.cpp356 Real eps = (y-k)/(1<<r); in find_best_interpolator() local
360 Real eps = (y-k-1)/(1<<r); in find_best_interpolator() local
421 Real eps = (y-k)/(1<<r); in find_best_interpolator() local
425 Real eps = (y-k-1)/(1<<r); in find_best_interpolator() local
470 Real eps = (y-k)/(1<<r); in find_best_interpolator() local
474 Real eps = (y-k-1)/(1<<r); in find_best_interpolator() local
/third_party/boost/libs/histogram/test/
Dis_close.hpp13 #define BOOST_TEST_IS_CLOSE(a, b, eps) BOOST_TEST(std::abs(a - b) < eps) argument
/third_party/boost/libs/phoenix/test/stdlib/
Dcmath.cpp18 double eps = 0.000001; in main() local
/third_party/boost/libs/geometry/test/util/
Dmath_equals.cpp28 T eps = std::numeric_limits<T>::epsilon(); in test_all() local
/third_party/boost/libs/numeric/odeint/test_external/mkl/
Dcheck_mkl.cpp33 const double eps = 1E-14; variable
/third_party/boost/libs/numeric/odeint/test_external/gmp/
Dcheck_gmp.cpp104 value_type eps( eps_ ); in operator ()() local
145 value_type eps( eps_ ); in operator ()() local
Dgmp_integrate.cpp101 value_type eps( eps_ ); in operator ()() local
150 value_type eps( eps_ ); in operator ()() local
/third_party/boost/libs/numeric/odeint/test/
Dimplicit_euler.cpp73 value_type eps = 1E-12; in BOOST_AUTO_TEST_CASE() local
/third_party/boost/libs/math/tools/
Dlambert_w_high_reference_values.cpp38 const long double eps = std::numeric_limits<long double>::epsilon(); variable

12345