Searched refs:sum_squares (Results 1 - 4 of 4) sorted by relevance

/freebsd-13-stable/lib/msun/src/
H A Dcatrig.c504 * sum_squares(x,y) = x*x + y*y (or just x*x if y*y would underflow).
511 sum_squares(double x, double y) function
624 rx = log1p(4 * ax / sum_squares(ax - 1, ay)) / 4;
H A Dcatrigf.c306 sum_squares(float x, float y) function
377 rx = log1pf(4 * ax / sum_squares(ax - 1, ay)) / 4;
H A Dcatrigl.c326 sum_squares(long double x, long double y) function
398 rx = log1pl(4 * ax / sum_squares(ax - 1, ay)) / 4;
/freebsd-13-stable/contrib/bsnmp/tests/
H A Dcatch.hpp6979 double sum_squares, sum_cubes;
6980 std::tie(sum_squares, sum_cubes) = std::accumulate(jack.begin(), jack.end(), std::make_pair(0., 0.), [jack_mean](std::pair<double, double> sqcb, double x) -> std::pair<double, double> {
6987 double accel = sum_cubes / (6 * std::pow(sum_squares, 1.5));

Completed in 104 milliseconds