/external/opencv/cv/src/ |
D | cvhough.cpp | 64 float rho; member 85 icvHoughLinesStandard( const CvMat* img, float rho, float theta, in CV_IMPLEMENT_QSORT_EX() 104 float irho = 1 / rho; in CV_IMPLEMENT_QSORT_EX() 115 numrho = cvRound(((width + height) * 2 + 1) / rho); in CV_IMPLEMENT_QSORT_EX() 165 line.rho = (r - (numrho - 1)*0.5f) * rho; in CV_IMPLEMENT_QSORT_EX() 192 float rho, float theta, int threshold, in IMPLEMENT_LIST() 238 CV_ASSERT( linesMax > 0 && rho > 0 && theta > 0 ); in IMPLEMENT_LIST() 247 irho = 1 / rho; in IMPLEMENT_LIST() 249 srho = rho / srn; in IMPLEMENT_LIST() 259 vi.rho = -1; in IMPLEMENT_LIST() [all …]
|
D | cvimgwarp.cpp | 2178 int phi, rho; in cvLogPolar() local 2182 for( rho = 0; rho < dst->width; rho++ ) in cvLogPolar() 2183 exp_tab[rho] = exp(rho/M); in cvLogPolar() 2192 for( rho = 0; rho < dsize.width; rho++ ) in cvLogPolar() 2194 double r = exp_tab[rho]; in cvLogPolar() 2198 mx[rho] = (float)x; in cvLogPolar() 2199 my[rho] = (float)y; in cvLogPolar() 2237 double rho = bufp.data.fl[x]*M; in cvLogPolar() local 2240 mx[x] = (float)rho; in cvLogPolar()
|
D | _cvlist.h | 367 float rho, theta; member
|
/external/iproute2/netem/ |
D | stats.c | 24 double mu=0.0, sigma=0.0, sumsquare=0.0, sum=0.0, top=0.0, rho=0.0; in stats() local 51 rho = top/sigma2; in stats() 55 printf("rho = %12.6f\n", rho); in stats()
|
D | maketable.c | 51 arraystats(double *x, int limit, double *mu, double *sigma, double *rho) in arraystats() argument 70 *rho = top/sigma2; in arraystats() 200 double mu, sigma, rho; in main() local 219 arraystats(x, limit, &mu, &sigma, &rho); in main() 222 limit, mu, sigma, rho); in main()
|
D | README.distribution | 96 and correlation coefficient (rho). You can then plug these values
|
/external/dropbear/libtommath/ |
D | bn_mp_montgomery_reduce.c | 20 mp_montgomery_reduce (mp_int * x, mp_int * n, mp_digit rho) in mp_montgomery_reduce() argument 35 return fast_mp_montgomery_reduce (x, n, rho); in mp_montgomery_reduce() 55 mu = (mp_digit) (((mp_word)x->dp[ix]) * ((mp_word)rho) & MP_MASK); in mp_montgomery_reduce()
|
D | bn_mp_montgomery_setup.c | 20 mp_montgomery_setup (mp_int * n, mp_digit * rho) in mp_montgomery_setup() argument 51 *rho = (unsigned long)(((mp_word)1 << ((mp_word) DIGIT_BIT)) - x) & MP_MASK; in mp_montgomery_setup()
|
D | bn_fast_mp_montgomery_reduce.c | 26 int fast_mp_montgomery_reduce (mp_int * x, mp_int * n, mp_digit rho) in fast_mp_montgomery_reduce() argument 76 mu = (mp_digit) (((W[ix] & MP_MASK) * rho) & MP_MASK); in fast_mp_montgomery_reduce()
|
/external/bouncycastle/src/main/java/org/bouncycastle/math/ec/ |
D | WTauNafMultiplier.java | 35 ZTauElement rho = Tnaf.partModReduction(k, m, a, s, mu, (byte)10); in multiply() local 37 return multiplyWTnaf(p, rho, preCompInfo, a, mu); in multiply()
|
D | Tnaf.java | 656 ZTauElement rho = partModReduction(k, m, a, s, mu, (byte)10); in multiplyRTnaf() local 658 return multiplyTnaf(p, rho); in multiplyRTnaf()
|
/external/opencv/ml/src/ |
D | mlsvm.cpp | 728 (this->*calc_rho_func)( si.rho, si.r ); in solve_generic() 798 CvSVMSolver::calc_rho( double& rho, double& r ) in calc_rho() argument 828 rho = nr_free > 0 ? sum_free/nr_free : (ub + lb)*0.5; in calc_rho() 903 CvSVMSolver::calc_rho_nu_svm( double& rho, double& r ) in calc_rho_nu_svm() argument 945 rho = (r1 - r2)*0.5; in calc_rho_nu_svm() 1019 _si.rho *= inv_r; in solve_nu_svc() 1284 CvMemStorage* _storage, double* alpha, double& rho ) in train1() argument 1295 si.rho = 0; in train1() 1308 rho = si.rho; in train1() 1336 df->rho = 0; in do_train() [all …]
|
/external/llvm/test/CodeGen/X86/ |
D | 2009-08-14-Win64MemoryIndirectArg.ll | 48 %rho = extractelement <4 x float> %4, i32 0 ; <float> [#uses=1] 49 ret float %rho
|
/external/openssl/crypto/bn/ |
D | bn_gf2m.c | 865 BIGNUM *a, *z, *rho, *w, *w2, *tmp; in BN_GF2m_mod_solve_quad_arr() local 905 rho = BN_CTX_get(ctx); in BN_GF2m_mod_solve_quad_arr() 911 if (!BN_rand(rho, p[0], 0, 0)) goto err; in BN_GF2m_mod_solve_quad_arr() 912 if (!BN_GF2m_mod_arr(rho, rho, p)) goto err; in BN_GF2m_mod_solve_quad_arr() 914 if (!BN_copy(w, rho)) goto err; in BN_GF2m_mod_solve_quad_arr() 921 if (!BN_GF2m_add(w, w2, rho)) goto err; in BN_GF2m_mod_solve_quad_arr()
|
/external/opencv/cv/include/ |
D | cvcompat.h | 503 CV_INLINE int cvHoughLines( CvArr* image, double rho, in cvHoughLines() argument 509 rho, theta, threshold, 0, 0 ); in cvHoughLines() 515 CV_INLINE int cvHoughLinesP( CvArr* image, double rho, in cvHoughLinesP() argument 522 rho, theta, threshold, lineLength, lineGap ); in cvHoughLinesP() 528 CV_INLINE int cvHoughLinesSDiv( CvArr* image, double rho, int srn, in cvHoughLinesSDiv() argument 534 rho, theta, threshold, srn, stn ); in cvHoughLinesSDiv()
|
D | cv.h | 1043 double rho, double theta, int threshold, in LOAD_CHDL()
|
/external/opencv/ml/include/ |
D | ml.h | 382 double rho; member 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 532 CvMemStorage* _storage, double* alpha, double& rho );
|
/external/apache-xml/src/main/java/org/apache/xml/serializer/ |
D | HTMLEntities.properties | 176 # rho 961
|
/external/iproute2/ |
D | README.distribution | 94 and correlation coefficient (rho). You can then plug these values
|
/external/wpa_supplicant_6/wpa_supplicant/src/tls/ |
D | libtommath.c | 2634 mp_montgomery_setup (mp_int * n, mp_digit * rho) in mp_montgomery_setup() argument 2665 *rho = (unsigned long)(((mp_word)1 << ((mp_word) DIGIT_BIT)) - x) & MP_MASK; in mp_montgomery_setup() 2681 int fast_mp_montgomery_reduce (mp_int * x, mp_int * n, mp_digit rho) in fast_mp_montgomery_reduce() argument 2731 mu = (mp_digit) (((W[ix] & MP_MASK) * rho) & MP_MASK); in fast_mp_montgomery_reduce()
|
/external/wpa_supplicant_8/src/tls/ |
D | libtommath.c | 2634 mp_montgomery_setup (mp_int * n, mp_digit * rho) in mp_montgomery_setup() argument 2665 *rho = (unsigned long)(((mp_word)1 << ((mp_word) DIGIT_BIT)) - x) & MP_MASK; in mp_montgomery_setup() 2681 int fast_mp_montgomery_reduce (mp_int * x, mp_int * n, mp_digit rho) in fast_mp_montgomery_reduce() argument 2731 mu = (mp_digit) (((W[ix] & MP_MASK) * rho) & MP_MASK); in fast_mp_montgomery_reduce()
|
/external/dropbear/libtommath/pre_gen/ |
D | mpi.c | 230 int fast_mp_montgomery_reduce (mp_int * x, mp_int * n, mp_digit rho) in fast_mp_montgomery_reduce() argument 280 mu = (mp_digit) (((W[ix] & MP_MASK) * rho) & MP_MASK); in fast_mp_montgomery_reduce() 4750 mp_montgomery_reduce (mp_int * x, mp_int * n, mp_digit rho) in mp_montgomery_reduce() argument 4765 return fast_mp_montgomery_reduce (x, n, rho); in mp_montgomery_reduce() 4785 mu = (mp_digit) (((mp_word)x->dp[ix]) * ((mp_word)rho) & MP_MASK); in mp_montgomery_reduce() 4872 mp_montgomery_setup (mp_int * n, mp_digit * rho) in mp_montgomery_setup() argument 4903 *rho = (unsigned long)(((mp_word)1 << ((mp_word) DIGIT_BIT)) - x) & MP_MASK; in mp_montgomery_setup()
|
/external/webkit/Source/WebCore/html/parser/ |
D | HTMLEntityNames.in | 1736 "rho;","U+003C1"
|
/external/webkit/PerformanceTests/Parser/resources/ |
D | final-url-en | 67376 http://www.rho.org/html/cxca_keyissues.htm 67377 http://www.rho.org/html/refugee_keyissues.htm
|