Searched defs:rho (Results 1 - 17 of 17) sorted by relevance

/external/dropbear/libtommath/
H A Dbn_mp_montgomery_setup.c20 mp_montgomery_setup (mp_int * n, mp_digit * rho) argument
50 /* rho = -1/m mod b */
51 *rho = (unsigned long)(((mp_word)1 << ((mp_word) DIGIT_BIT)) - x) & MP_MASK;
H A Dbn_fast_mp_montgomery_reduce.c26 int fast_mp_montgomery_reduce (mp_int * x, mp_int * n, mp_digit rho) argument
76 mu = (mp_digit) (((W[ix] & MP_MASK) * rho) & MP_MASK);
H A Dbn_mp_montgomery_reduce.c20 mp_montgomery_reduce (mp_int * x, mp_int * n, mp_digit rho) argument
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);
/external/iproute2/netem/
H A Dstats.c24 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));*/
H A Dmaketable.c51 arraystats(double *x, int limit, double *mu, double *sigma, double *rho) argument
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/opencv/cv/src/
H A D_cvlist.h367 float rho, theta; member in struct:__index
H A Dcvhough.cpp64 float rho; member in struct:CvLinePolar
78 rho and theta are discretization steps (in pixels and radians correspondingly).
81 array of (rho, theta) pairs. linesMax is the buffer size (number of pairs).
85 icvHoughLinesStandard( const CvMat* img, float rho, float theta, argument
104 float irho = 1 / rho;
115 numrho = cvRound(((width + height) * 2 + 1) / rho);
165 line.rho = (r - (numrho - 1)*0.5f) * rho;
192 float rho, float theta, int threshold,
211 int rn, tn; /* number of rho an
191 icvHoughLinesSDiv( const CvMat* img, float rho, float theta, int threshold, int srn, int stn, CvSeq* lines, int linesMax ) argument
483 icvHoughLinesProbabalistic( CvMat* image, float rho, float theta, int threshold, int lineLength, int lineGap, CvSeq *lines, int linesMax ) argument
740 cvHoughLines2( CvArr* src_image, void* lineStorage, int method, double rho, double theta, int threshold, double param1, double param2 ) argument
[all...]
H A Dcvimgwarp.cpp2178 int phi, rho; local
2182 for( rho = 0; rho < dst->width; rho++ )
2183 exp_tab[rho] = exp(rho/M);
2192 for( rho = 0; rho < dsize.width; rho++ )
2194 double r = exp_tab[rho];
2237 double rho = bufp.data.fl[x]*M; local
[all...]
/external/openssl/crypto/bn/
H A Dbn_gf2m.c942 BIGNUM *a, *z, *rho, *w, *w2, *tmp; local
982 rho = BN_CTX_get(ctx);
988 if (!BN_rand(rho, p[0], 0, 0)) goto err;
989 if (!BN_GF2m_mod_arr(rho, rho, p)) goto err;
991 if (!BN_copy(w, rho)) goto err;
998 if (!BN_GF2m_add(w, w2, rho)) goto err;
/external/opencv/ml/src/
H A Dmlsvm.cpp727 // calculate rho
728 (this->*calc_rho_func)( si.rho, si.r );
798 CvSVMSolver::calc_rho( double& rho, double& r ) argument
828 rho = nr_free > 0 ? sum_free/nr_free : (ub + lb)*0.5;
903 CvSVMSolver::calc_rho_nu_svm( double& rho, double& r ) argument
945 rho = (r1 - r2)*0.5;
1019 _si.rho *= inv_r;
1284 CvMemStorage* _storage, double* alpha, double& rho )
1295 si.rho = 0;
1308 rho
[all...]
/external/wpa_supplicant_6/wpa_supplicant/src/tls/
H A Dlibtommath.c2634 mp_montgomery_setup (mp_int * n, mp_digit * rho) argument
2664 /* rho = -1/m mod b */
2665 *rho = (unsigned long)(((mp_word)1 << ((mp_word) DIGIT_BIT)) - x) & MP_MASK;
2681 int fast_mp_montgomery_reduce (mp_int * x, mp_int * n, mp_digit rho) argument
2731 mu = (mp_digit) (((W[ix] & MP_MASK) * rho) & MP_MASK);
/external/wpa_supplicant_8/hostapd/src/tls/
H A Dlibtommath.c2642 mp_montgomery_setup (mp_int * n, mp_digit * rho) argument
2672 /* rho = -1/m mod b */
2673 *rho = (unsigned long)(((mp_word)1 << ((mp_word) DIGIT_BIT)) - x) & MP_MASK;
2689 static int fast_mp_montgomery_reduce (mp_int * x, mp_int * n, mp_digit rho) argument
2739 mu = (mp_digit) (((W[ix] & MP_MASK) * rho) & MP_MASK);
/external/wpa_supplicant_8/src/tls/
H A Dlibtommath.c2642 mp_montgomery_setup (mp_int * n, mp_digit * rho) argument
2672 /* rho = -1/m mod b */
2673 *rho = (unsigned long)(((mp_word)1 << ((mp_word) DIGIT_BIT)) - x) & MP_MASK;
2689 static int fast_mp_montgomery_reduce (mp_int * x, mp_int * n, mp_digit rho) argument
2739 mu = (mp_digit) (((W[ix] & MP_MASK) * rho) & MP_MASK);
/external/wpa_supplicant_8/wpa_supplicant/src/tls/
H A Dlibtommath.c2642 mp_montgomery_setup (mp_int * n, mp_digit * rho) argument
2672 /* rho = -1/m mod b */
2673 *rho = (unsigned long)(((mp_word)1 << ((mp_word) DIGIT_BIT)) - x) & MP_MASK;
2689 static int fast_mp_montgomery_reduce (mp_int * x, mp_int * n, mp_digit rho) argument
2739 mu = (mp_digit) (((W[ix] & MP_MASK) * rho) & MP_MASK);
/external/dropbear/libtommath/pre_gen/
H A Dmpi.c230 int fast_mp_montgomery_reduce (mp_int * x, mp_int * n, mp_digit rho) argument
280 mu = (mp_digit) (((W[ix] & MP_MASK) * rho) & MP_MASK);
4750 mp_montgomery_reduce (mp_int * x, mp_int * n, mp_digit rho) argument
4765 return fast_mp_montgomery_reduce (x, n, rho);
4777 /* mu = ai * rho mod b
4779 * The value of rho must be precalculated via
4785 mu = (mp_digit) (((mp_word)x->dp[ix]) * ((mp_word)rho) & MP_MASK);
4872 mp_montgomery_setup (mp_int * n, mp_digit * rho) argument
4902 /* rho = -1/m mod b */
4903 *rho
[all...]
/external/opencv/ml/include/
H A Dml.h382 double rho; member in struct:CvSVMSolutionInfo
393 typedef void (CvSVMSolver::*CalcRho)( double& rho, double& r );
463 virtual void calc_rho( double& rho, double& r );
464 virtual void calc_rho_nu_svm( double& rho, double& r );
474 double rho; member in struct:CvSVMDecisionFunc
532 CvMemStorage* _storage, double* alpha, double& rho );
/external/opencv/cv/include/
H A Dcvcompat.h503 CV_INLINE int cvHoughLines( CvArr* image, double rho, argument
509 rho, theta, threshold, 0, 0 );
515 CV_INLINE int cvHoughLinesP( CvArr* image, double rho, argument
522 rho, theta, threshold, lineLength, lineGap );
528 CV_INLINE int cvHoughLinesSDiv( CvArr* image, double rho, int srn, argument
534 rho, theta, threshold, srn, stn );

Completed in 599 milliseconds