Home
last modified time | relevance | path

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

/freebsd-11-stable/lib/msun/src/
HDcatrigl.c99 f(long double a, long double b, long double hypot_a_b) in f() argument
102 return ((hypot_a_b - b) / 2); in f()
105 return (a * a / (hypot_a_b + b) / 2); in f()
HDcatrig.c133 f(double a, double b, double hypot_a_b) in f() argument
136 return ((hypot_a_b - b) / 2); in f()
139 return (a * a / (hypot_a_b + b) / 2); in f()
HDcatrigf.c78 f(float a, float b, float hypot_a_b) in f() argument
81 return ((hypot_a_b - b) / 2); in f()
84 return (a * a / (hypot_a_b + b) / 2); in f()