Searched refs:hypot_a_b (Results 1 - 2 of 2) sorted by relevance

/bionic/libm/upstream-freebsd/lib/msun/src/
H A Dcatrig.c129 * Function f(a, b, hypot_a_b) = (hypot(a, b) - b) / 2.
133 f(double a, double b, double hypot_a_b) argument
136 return ((hypot_a_b - b) / 2);
139 return (a * a / (hypot_a_b + b) / 2);
H A Dcatrigf.c78 f(float a, float b, float hypot_a_b) argument
81 return ((hypot_a_b - b) / 2);
84 return (a * a / (hypot_a_b + b) / 2);

Completed in 458 milliseconds