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

/freebsd-13-stable/lib/msun/src/
H A Ds_ctanh.c43 * rho = cosh(x)
57 * beta rho s + I t
80 double t, beta, s, rho, denom; local
137 rho = sqrt(1 + s * s); /* = cosh(x) */
139 return (CMPLX((beta * rho * s) / denom, t / denom));
H A Ds_ctanhf.c45 float t, beta, s, rho, denom; local
75 rho = sqrtf(1 + s * s);
77 return (CMPLXF((beta * rho * s) / denom, t / denom));
/freebsd-13-stable/crypto/openssl/crypto/bn/
H A Dbn_gf2m.c987 BIGNUM *a, *z, *rho, *w, *w2, *tmp; local
1028 rho = BN_CTX_get(ctx);
1034 if (!BN_priv_rand(rho, p[0], BN_RAND_TOP_ONE, BN_RAND_BOTTOM_ANY))
1036 if (!BN_GF2m_mod_arr(rho, rho, p))
1039 if (!BN_copy(w, rho))
1050 if (!BN_GF2m_add(w, w2, rho))
/freebsd-13-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 56 milliseconds