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

/freebsd-13-stable/lib/msun/src/
H A Dcatrig.c131 * Function f(a, b, hypot_a_b) = (hypot(a, b) - b) / 2.
135 f(double a, double b, double hypot_a_b) argument
138 return ((hypot_a_b - b) / 2);
141 return (a * a / (hypot_a_b + b) / 2);
H A Dcatrigf.c80 f(float a, float b, float hypot_a_b) argument
83 return ((hypot_a_b - b) / 2);
86 return (a * a / (hypot_a_b + b) / 2);
H A Dcatrigl.c99 f(long double a, long double b, long double hypot_a_b) argument
102 return ((hypot_a_b - b) / 2);
105 return (a * a / (hypot_a_b + b) / 2);

Completed in 30 milliseconds