HomeSort by relevance Sort by last modified time
    Searched refs:rho (Results 1 - 8 of 8) sorted by null

  /external/dropbear/libtommath/
bn_mp_montgomery_setup.c 20 mp_montgomery_setup (mp_int * n, mp_digit * rho)
50 /* rho = -1/m mod b */
51 *rho = (unsigned long)(((mp_word)1 << ((mp_word) DIGIT_BIT)) - x) & MP_MASK;
bn_mp_montgomery_reduce.c 20 mp_montgomery_reduce (mp_int * x, mp_int * n, mp_digit rho)
35 return fast_mp_montgomery_reduce (x, n, rho);
47 /* mu = ai * rho mod b
49 * The value of rho must be precalculated via
55 mu = (mp_digit) (((mp_word)x->dp[ix]) * ((mp_word)rho) & MP_MASK);
bn_fast_mp_montgomery_reduce.c 26 int fast_mp_montgomery_reduce (mp_int * x, mp_int * n, mp_digit rho)
76 mu = (mp_digit) (((W[ix] & MP_MASK) * rho) & MP_MASK);
  /external/iproute2/netem/
stats.c 24 double mu=0.0, sigma=0.0, sumsquare=0.0, sum=0.0, top=0.0, rho=0.0; local
51 rho = top/sigma2;
55 printf("rho = %12.6f\n", rho);
57 /*printf("correlation rho = %10.6f\n", top/((double)(n-1)*sigma*sigma));*/
maketable.c 51 arraystats(double *x, int limit, double *mu, double *sigma, double *rho)
70 *rho = top/sigma2;
200 double mu, sigma, rho; local
219 arraystats(x, limit, &mu, &sigma, &rho);
221 fprintf(stderr, "%d values, mu %10.4f, sigma %10.4f, rho %10.4f\n",
222 limit, mu, sigma, rho);
  /external/openssl/crypto/bn/
bn_gf2m.c 927 BIGNUM *a, *z, *rho, *w, *w2, *tmp; local
967 rho = BN_CTX_get(ctx);
973 if (!BN_rand(rho, p[0], 0, 0)) goto err;
974 if (!BN_GF2m_mod_arr(rho, rho, p)) goto err;
976 if (!BN_copy(w, rho)) goto err;
983 if (!BN_GF2m_add(w, w2, rho)) goto err;
  /external/wpa_supplicant_6/wpa_supplicant/src/tls/
libtommath.c     [all...]
  /external/dropbear/libtommath/pre_gen/
mpi.c 230 int fast_mp_montgomery_reduce (mp_int * x, mp_int * n, mp_digit rho)
280 mu = (mp_digit) (((W[ix] & MP_MASK) * rho) & MP_MASK);
    [all...]

Completed in 806 milliseconds