Searched refs:rho (Results 1 - 5 of 5) sorted by relevance

/freebsd-11-stable/lib/msun/src/
H A Ds_ctanh.c41 * rho = cosh(x)
55 * beta rho s + I t
78 double t, beta, s, rho, denom; local
133 rho = sqrt(1 + s * s); /* = cosh(x) */
135 return (CMPLX((beta * rho * s) / denom, t / denom));
H A Ds_ctanhf.c43 float t, beta, s, rho, denom; local
73 rho = sqrtf(1 + s * s);
75 return (CMPLXF((beta * rho * s) / denom, t / denom));
/freebsd-11-stable/contrib/groff/src/preproc/pic/
H A Dcommon.cpp103 double rho = sqrt(temp / a_4 / b_4 * temp / a_4 / b_4 * temp); local
110 position M0 = position(rho * cos(phi0), rho * sin(phi0)) + M;
111 position M1 = position(rho * cos(phi1), rho * sin(phi1)) + M;
115 solid_arc(M + cent, rho, phi0, phi1, lt);
/freebsd-11-stable/crypto/openssl/crypto/bn/
H A Dbn_gf2m.c1122 BIGNUM *a, *z, *rho, *w, *w2, *tmp; local
1163 rho = BN_CTX_get(ctx);
1169 if (!BN_rand(rho, p[0], 0, 0))
1171 if (!BN_GF2m_mod_arr(rho, rho, p))
1174 if (!BN_copy(w, rho))
1185 if (!BN_GF2m_add(w, w2, rho))
/freebsd-11-stable/contrib/wpa/src/tls/
H A Dlibtommath.c2654 mp_montgomery_setup (mp_int * n, mp_digit * rho) argument
2684 /* rho = -1/m mod b */
2685 *rho = (unsigned long)(((mp_word)1 << ((mp_word) DIGIT_BIT)) - x) & MP_MASK;
2701 static int fast_mp_montgomery_reduce (mp_int * x, mp_int * n, mp_digit rho) argument
2751 mu = (mp_digit) (((W[ix] & MP_MASK) * rho) & MP_MASK);

Completed in 143 milliseconds