Searched refs:sqrt (Results 1 - 25 of 88) sorted by relevance

1234

/freebsd-10-stable/lib/msun/sparc64/
H A De_sqrt.S30 ENTRY(sqrt) function
33 END(sqrt)
/freebsd-10-stable/lib/msun/amd64/
H A De_sqrt.S30 ENTRY(sqrt) function
33 END(sqrt)
/freebsd-10-stable/lib/msun/i387/
H A De_sqrt.S39 ENTRY(sqrt) function
43 END(sqrt)
/freebsd-10-stable/contrib/groff/src/libs/libgroff/
H A Dprime.cpp11 unsigned lim = unsigned(sqrt((double)n));
/freebsd-10-stable/contrib/ntp/scripts/stats/
H A Dloop.awk39 loop_time_rms = sqrt(loop_time_rms / loop_count - loop_time * loop_time)
41 loop_freq_rms = sqrt(loop_freq_rms / loop_count - loop_freq * loop_freq)
H A Dclock.awk318 arb_rms = sqrt(arb_rms / arbn - arb_mean * arb_mean)
319 arb_var = sqrt(arb_var / (2 * (arbn - 1)))
337 ensemble_rms = sqrt(ensemble_rms / ensemble_count - ensemble_mean * ensemble_mean) * 1e9
394 itf_rms = sqrt(itf_rms / itf_count - itf_mean * itf_mean) * 1e9
395 itf_var = sqrt(itf_var / (2 * (itf_count - 1)))
410 etf_rms = sqrt(etf_rms / etf_count - etf_mean * etf_mean)
411 etf_var = sqrt(etf_var / (2 * (etf_count - 1)))
H A Dpsummary.awk79 peer_var[i] = sqrt(peer_var[i] / peer_count[i])
H A Detf.S7 std<-sqrt(var(r$residuals))
H A Dpeer.awk59 peer_time_rms[i] = sqrt(peer_time_rms[i] / peer_count[i] - peer_time[i] * peer_time[i])
/freebsd-10-stable/lib/msun/src/
H A De_acosh.c21 * acosh(x) = log [ x + sqrt(x*x-1) ]
24 * acosh(x) := log(2x-1/(sqrt(x*x-1)+x)) if x>2; else
25 * acosh(x) := log1p(t+sqrt(2.0*t+t*t)); where t=x-1.
59 return __ieee754_log(2.0*x-one/(x+sqrt(t-one)));
62 return log1p(t+sqrt(2.0*t+t*t));
H A Ds_csqrtf.c82 t = sqrt((a + hypot(a, b)) * 0.5);
85 t = sqrt((-a + hypot(a, b)) * 0.5);
H A Ds_csqrt.c45 /* We risk spurious overflow for components >= DBL_MAX / (1 + sqrt(2)). */
96 t = sqrt((a + hypot(a, b)) * 0.5);
99 t = sqrt((-a + hypot(a, b)) * 0.5);
H A Dcatrig.c48 FOUR_SQRT_MIN = 0x1p-509, /* >= 4 * sqrt(DBL_MIN) */
49 QUARTER_SQRT_MAX = 0x1p509, /* <= sqrt(DBL_MAX) / 4 */
56 SQRT_MIN = 0x1p-511; /* >= sqrt(DBL_MIN) */
93 * casinh(z) = sign(x)*log(A+sqrt(A*A-1)) + I*asin(B)
108 * log(A + sqrt(A*A-1)) = log1p((A-1) + sqrt((A-1)*(A+1)))
111 * asin(B) = atan2(y, sqrt(A*A - y*y)) = atan2(y, sqrt((A+y)*(A-y)))
148 * If B_is_usable is set to 0, sqrt_A2my2 = sqrt(A*A - y*y), and new_y = y.
175 * rx = log1p(Am1 + sqrt(Am
[all...]
H A De_acos.c24 * acos(x) = pi/2 - (pi/2 - 2asin(sqrt((1-x)/2)))
25 * = 2asin(sqrt((1-x)/2))
26 * = 2s + 2s*z*R(z) ...z=(1-x)/2, s=sqrt(z)
29 * for f so that f+c ~ sqrt(z).
31 * acos(x) = pi - 2asin(sqrt((1-|x|)/2))
32 * = pi - 0.5*(s+s*z*R(z)), where z=(1-|x|)/2,s=sqrt(z)
38 * Function needed: sqrt
91 s = sqrt(z);
97 s = sqrt(z);
H A De_hypot.c21 * has error less than sqrt(2)/2 ulp, than
22 * sqrt(z) has error less than 1 ulp (exercise).
24 * So, compute sqrt(x*x+y*y) with some care as
45 * hypot(x,y) returns sqrt(x^2+y^2) with error less
109 w = sqrt(t1*t1-(b*(-b)-t2*(a+t1)));
118 w = sqrt(t1*y1-(w*(-w)-(t1*y2+t2*b)));
H A De_asinf.c61 s = sqrt(t);
H A Ds_ctanh.c133 rho = sqrt(1 + s * s); /* = cosh(x) */
/freebsd-10-stable/gnu/usr.bin/groff/src/preproc/eqn/
H A DMakefile6 script.cpp mark.cpp other.cpp delim.cpp sqrt.cpp pile.cpp special.cpp
/freebsd-10-stable/contrib/netbsd-tests/lib/libm/
H A Dt_sqrt.c40 * sqrt(3)
45 atf_tc_set_md_var(tc, "descr", "Test sqrt(NaN) == NaN");
53 ATF_CHECK(isnan(sqrt(x)) != 0);
59 atf_tc_set_md_var(tc, "descr", "Test sqrt(3) vs. pow(3)");
75 y = sqrt(x[i]);
79 atf_tc_fail_nonfatal("sqrt(%0.03f) != "
87 atf_tc_set_md_var(tc, "descr", "Test sqrt(-Inf) == NaN");
93 double y = sqrt(x);
101 atf_tc_set_md_var(tc, "descr", "Test sqrt(+Inf) == +Inf");
107 double y = sqrt(
[all...]
/freebsd-10-stable/sys/tools/sound/
H A Dfeeder_eq_mkfilter.awk92 A = sqrt(pow(10, gain / 20.0));
102 alpha = sin(w0) * 0.5 * sqrt(A + ((1.0 / A) * \
141 b0 = A*((A+1.0)+((A-1.0)*cos(w0))+(2.0*sqrt(A)*alpha));
143 b2 = A*((A+1.0)+((A-1.0)*cos(w0))-(2.0*sqrt(A)*alpha));
144 a0 = (A+1.0)-((A-1.0)*cos(w0))+(2.0*sqrt(A)*alpha );
146 a2 = (A+1.0)-((A-1.0)*cos(w0))-(2.0*sqrt(A)*alpha );
175 b0 = A*((A+1.0)-((A-1.0)*cos(w0))+(2.0*sqrt(A)*alpha));
177 b2 = A*((A+1.0)-((A-1.0)*cos(w0))-(2.0*sqrt(A)*alpha));
178 a0 = (A+1.0)+((A-1.0)*cos(w0))+(2.0*sqrt(A)*alpha );
180 a2 = (A+1.0)+((A-1.0)*cos(w0))-(2.0*sqrt(
[all...]
/freebsd-10-stable/contrib/libstdc++/libmath/
H A Dstubs.c245 return (float) sqrt(x);
253 return sqrt((double) x);
279 return s * sqrt(x * x + y * y);
/freebsd-10-stable/contrib/libstdc++/include/c_compatibility/
H A Dmath.h53 using std::sqrt;
/freebsd-10-stable/games/primes/
H A Dprimes.c279 fact_lim = sqrt(start+1.0+TABSIZE+TABSIZE);
282 fact_lim = sqrt(stop+1.0);
/freebsd-10-stable/usr.bin/bc/
H A Dbc.library112 x = sqrt(x)
119 x = sqrt(x)
210 x = -(1 - sqrt(1. + x*x))/x
215 x = -(1 - sqrt(1. + x*x))/x
H A Dscan.l144 "sqrt" return SQRT;

Completed in 166 milliseconds

1234