/src/lib/libm/complex/ |
cabs.c | 16 return hypot(__real__ z, __imag__ z);
|
catrig.c | 129 * f(a, b) = (hypot(a, b) - b) / 2 = a*a / (hypot(a, b) + b) / 2 152 * Function f(a, b, hypot_a_b) = (hypot(a, b) - b) / 2. 153 * Pass hypot(a, b) as the third argument. 182 R = hypot(x, y + 1); /* |z+I| */ 183 S = hypot(x, y - 1); /* |z-I| */ 494 * Avoid overflow in hypot() when x and y are both very large. 501 return (CMPLX(log(hypot(x / m_e, y / m_e)) + 1, atan2(y, x))); 508 return (CMPLX(log(hypot(x, y)), atan2(y, x)));
|
/src/lib/libm/src/ |
w_hypot.c | 19 * wrapper hypot(x,y) 27 __weak_alias(hypot, _hypot) 31 hypot(double x, double y)/* wrapper hypot */ 40 return __kernel_standard(x,y,4); /* hypot overflow */
|
namespace.h | 61 #define hypot _hypot macro
|
e_hypotl.c | 13 /* long double version of hypot(). See e_hypot.c for most comments. */ 141 return hypot(x, y);
|
/src/tests/lib/libm/ |
t_hypot.c | 33 #define CHECK_EQ(i, hypot, a, b, c) \ 34 ATF_CHECK_MSG(hypot(a, b) == (c), \ 36 (i), #hypot, (a), (b), hypot(a, b), (c)) 38 #define CHECKL_EQ(i, hypot, a, b, c) \ 39 ATF_CHECK_MSG(hypot(a, b) == (c), \ 41 (i), #hypot, (long double)(a), (long double)(b), hypot(a, b), \ 44 #define CHECK_NAN(i, hypot, a, b) \ 45 ATF_CHECK_MSG(isnan(hypot(a, b)), [all...] |
/src/lib/libm/compat/ |
compat_cabs.c | 2 * cabs() wrapper for hypot(). 28 return hypot(z.x, z.y);
|
/src/lib/libm/noieee_src/ |
n_cabs.c | 35 /* HYPOT(X,Y) 50 * 2. Hypot(x,y) is computed by: 54 * hypot = x + ----------------------------- 60 * hypot = x + -------------------------------------------------- 70 * hypot(x,y) is INF if x or y is +INF or -INF; else 71 * hypot(x,y) is NAN if x or y is NAN. 74 * hypot(x,y) returns the sqrt(x^2+y^2) with error less than 1 ulps (units 105 hypot(double x, double y) 164 * hypot(x,y) 167 * cabs(z) = hypot(x,y) [all...] |
/src/tests/lib/lua/libm/ |
h_lualibm.c | 59 TEST(hypot(3.0, 4.0));
|
lualibm.lua | 65 test("hypot(3.0, 4.0)", lm.hypot(3.0, 4.0))
|
/src/include/ |
tgmath.h | 164 #define hypot(a,b) __TG_FN2(hypot, (a), (b)) macro
|
math.h | 270 double hypot(double, double);
|
/src/lib/lua/libm/ |
libm.c | 132 DFUNC_DBL_DBL(hypot) 269 { "hypot", libm_hypot },
|
/src/lib/libm/arch/vax/ |
n_cabs.S | 41 * argument for cabs and hypot (C fcns) by value, 4(%ap) 45 /* entry for c functions cabs and hypot */ 58 WEAK_ALIAS(hypot, _hypot)
|
/src/lib/libm/ |
Makefile | 449 fabs.3 finite.3 fma.3 fmod.3 frexp.3 hypot.3 \ 513 MLINKS+=hypot.3 hypotf.3 \ 514 hypot.3 hypotl.3
|