/third_party/boost/libs/math/test/ |
D | ooura_fourier_integral_test.cpp | 152 auto integrator = get_sin_integrator<Real>(); in test_sinc() local 174 auto integrator = get_sin_integrator<Real>(); in test_exp() local 194 auto integrator = get_sin_integrator<Real>(); in test_root() local 222 auto integrator = get_sin_integrator<Real>(); in test_double_osc() local 238 auto integrator = get_sin_integrator<Real>(); in test_zero_integrand() local 274 auto integrator = get_cos_integrator<Real>(); in test_cos_integral1() local 292 auto integrator = get_cos_integrator<Real>(); in test_cos_integral2() local
|
D | tanh_sinh_quadrature_test.cpp | 195 static const tanh_sinh<Real> integrator(15); in get_integrator() local 211 auto integrator = get_integrator<Real>(); in test_linear() local 234 auto integrator = get_integrator<Real>(); in test_quadratic() local 251 auto integrator = get_integrator<Real>(); in test_singular() local 271 auto integrator = get_integrator<Real>(); in test_ca() local 323 auto integrator = get_integrator<Real>(); in test_three_quadrature_schemes_examples() local 372 auto integrator = get_integrator<Real>(); in test_integration_over_real_line() local 411 auto integrator = get_integrator<Real>(); in test_right_limit_infinite() local 443 auto integrator = get_integrator<Real>(); in test_left_limit_infinite() local 465 auto integrator = get_integrator<Real>(); in test_horrible() local [all …]
|
D | exp_sinh_quadrature_test.cpp | 164 static const exp_sinh<Real> integrator(14); in get_integrator() local 183 auto integrator = get_integrator<Real>(); in test_right_limit_infinite() local 235 auto integrator = get_integrator<Real>(); in test_left_limit_infinite() local 270 auto integrator = get_integrator<Real>(); in test_nr_examples() local 360 auto integrator = get_integrator<Real>(); in test_crc() local 491 auto integrator = get_integrator<Real>(); in test_complex_modified_bessel() local 526 auto integrator = get_integrator<Real>(); in test_complex_exponential_integral_E1() local
|
D | sinh_sinh_quadrature_test.cpp | 148 sinh_sinh<Real> integrator(10); in test_nr_examples() local 204 sinh_sinh<Real> integrator(10); in test_crc() local 240 sinh_sinh<Real> integrator(10); in test_dirichlet_eta() local
|
D | test_1F1.hpp | 350 auto integrator = exp_sinh<double>(); in test_hypergeometric_mellin_transform() local 375 auto integrator = exp_sinh<double>(); in test_hypergeometric_laplace_transform() local
|
D | gauss_kronrod_quadrature_test.cpp | 447 boost::math::quadrature::gauss_kronrod<Real, 61> integrator; in test_complex_lambert_w() local
|
/third_party/boost/libs/math/test/compile_test/ |
D | sinh_sinh_incl_test.cpp | 19 boost::math::quadrature::sinh_sinh<double> integrator; in compile_and_link_test() local
|
D | sinh_sinh_concept_test.cpp | 13 boost::math::quadrature::sinh_sinh<boost::math::concepts::std_real_concept> integrator; in compile_and_link_test() local
|
D | exp_sinh_incl_test.cpp | 19 boost::math::quadrature::exp_sinh<double> integrator; in compile_and_link_test() local
|
D | exp_sinh_concept_test.cpp | 14 boost::math::quadrature::exp_sinh<boost::math::concepts::std_real_concept> integrator; in compile_and_link_test() local
|
D | tanh_sinh_incl_test.cpp | 21 boost::math::quadrature::tanh_sinh<double> integrator; in compile_and_link_test() local
|
D | tanh_sinh_concept_test.cpp | 15 boost::math::quadrature::tanh_sinh<boost::math::concepts::std_real_concept> integrator; in compile_and_link_test() local
|
D | gauss_kronrod_concept_test.cpp | 15 boost::math::quadrature::gauss_kronrod<boost::math::concepts::std_real_concept, 7> integrator; in compile_and_link_test() local
|
D | gauss_concept_test.cpp | 15 boost::math::quadrature::gauss<boost::math::concepts::std_real_concept, 7> integrator; in compile_and_link_test() local
|
/third_party/boost/libs/math/example/ |
D | ooura_fourier_integrals_cosine_example.cpp | 30 auto integrator = ooura_fourier_cos<double>(); in main() local
|
D | ooura_fourier_integrals_example.cpp | 33 ooura_fourier_sin<double>integrator = ooura_fourier_sin<double>(); in main() local
|
D | ooura_fourier_integrals_multiprecision_example.cpp | 43 auto integrator = ooura_fourier_cos<Real>(tol, 8); // Loops or gets worse for more than 8. in main() local
|
/third_party/ffmpeg/libavfilter/ |
D | f_ebur128.c | 80 struct integrator { struct 81 double *cache[MAX_CHANNELS]; ///< window of filtered samples (N ms) 82 int cache_pos; ///< focus on the last added bin in the cache array 83 double sum[MAX_CHANNELS]; ///< sum of the last N ms filtered samples (cache content) 84 int filled; ///< 1 if the cache is completely filled, 0 otherwise 85 double rel_threshold; ///< relative threshold 86 double sum_kept_powers; ///< sum of the powers (weighted sums) above absolute threshold 87 int nb_kept_powers; ///< number of sum above absolute threshold 88 struct hist_entry *histogram; ///< histogram of the powers, used to compute LRA and I
|