Searched refs:cov (Results 1 - 24 of 24) sorted by relevance

/external/swiftshader/third_party/LLVM/tools/llvm-cov/
H A DMakefile1 ##===- tools/llvm-cov/Makefile -----------------------------*- Makefile -*-===##
12 TOOLNAME = llvm-cov
/external/v8/tools/release/
H A Dscript_test.py40 cov = coverage.coverage(include=([os.path.join(script_path, '*.py')]))
41 cov.start()
49 cov.stop()
50 print cov.report()
/external/skia/tools/
H A Dparse_llvm_coverage.py21 The file paths printed by llvm-cov take the form:
89 cov, linenum, code = line.split('|', 2)
90 cov = cov.strip()
91 if cov:
92 cov = int(cov)
94 cov = None # We don't care about coverage for this line.
97 file_lines.append((linenum, cov, code.decode('utf-8', 'replace')))
157 for _, cov,
[all...]
/external/opencv/ml/src/
H A Dmltestset.cpp66 CvMat* cov = NULL; local
109 CV_CALL( cov = cvCreateMat( num_features, num_features, CV_32FC1 ) );
110 CV_CALL( cvSetIdentity( cov ) );
114 CV_CALL( cvRandMVNormal( mean, cov, *samples ) );
166 cvReleaseMat( &cov );
H A Dmlnbayes.cpp116 CvMat* cov = 0; local
193 CV_CALL( cov = cvCreateMat( _var_count, _var_count, CV_64FC1 ));
241 double* cov_data = cov->data.db + i*_var_count;
255 CV_CALL( cvCompleteSymm( cov, 1 ));
256 CV_CALL( cvSVD( cov, w, cov_rotate_mats[cls], 0, CV_SVD_U_T ));
272 cvReleaseMat( &cov );
348 // cov = u w u' --> cov^(-1) = u w^(-1) u'
H A Dmlem.cpp193 const CvMat* cov = params.covs[k]; local
194 if( !CV_IS_MAT(cov) ||
195 CV_MAT_TYPE(cov->type) != CV_32FC1 &&
196 CV_MAT_TYPE(cov->type) != CV_64FC1 ||
197 cov->rows != cov->cols || cov->cols != train_data.dims )
250 // cov = u w u' --> cov^(-1) = u w^(-1) u'
982 CvMat* cov local
[all...]
H A Dml_inner_functions.cpp157 average row vector, <cov> - symmetric covariation matrix */
158 CV_IMPL void cvRandMVNormal( CvMat* mean, CvMat* cov, CvMat* sample, CvRNG* rng ) argument
169 cvChol(cov, utmat);
332 CvMat *cov, sample; local
349 cov = cvCreateMat (dim, dim, CV_32FC1);
350 cvSetIdentity (cov);
351 cvRandMVNormal (center, cov, desired_matrix, &rng_local);
/external/opencv/cv/src/
H A Dcvcorner.cpp47 icvCalcMinEigenVal( const float* cov, int cov_step, float* dst, argument
52 cov_step /= sizeof(cov[0]);
56 for( ; size.height--; cov += cov_step, dst += dst_step )
60 double a = cov[j*3]*0.5;
61 double b = cov[j*3+1];
62 double c = cov[j*3+2]*0.5;
77 icvCalcHarris( const float* cov, int cov_step, float* dst, argument
81 cov_step /= sizeof(cov[0]);
84 for( ; size.height--; cov += cov_step, dst += dst_step )
88 double a = cov[
98 icvCalcEigenValsVecs( const float* cov, int cov_step, float* dst, int dst_step, CvSize size, CvMat* buffer ) argument
209 CvMat *Dx = 0, *Dy = 0, *cov = 0; local
[all...]
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/correlation/
H A DCovariance.java37 * <code>cov(X, Y) = &Sigma;[(x<sub>i</sub> - E(X))(y<sub>i</sub> - E(Y))] / (n - 1)</code>
166 double cov = covariance(matrix.getColumn(i), matrix.getColumn(j), biasCorrected);
167 outMatrix.setEntry(i, j, cov);
168 outMatrix.setEntry(j, i, cov);
/external/swiftshader/third_party/LLVM/tools/
H A DMakefile29 llvm-rtdyld llvm-dwarfdump llvm-cov \
/external/fonttools/Lib/fontTools/ttLib/tables/
H A DotTables.py192 cov = Coverage()
195 cov.glyphs = input
196 rawTable["Coverage"] = cov
360 cov = Coverage()
361 cov.glyphs = [ item[1] for item in items]
374 return {"Coverage": cov, "AlternateSet": alternates}
427 cov = Coverage()
428 cov.glyphs = [ item[1] for item in items]
442 return {"Coverage": cov, "LigatureSet": ligSets}
/external/fonttools/Tools/fontTools/ttLib/tables/
H A DotTables.py192 cov = Coverage()
195 cov.glyphs = input
196 rawTable["Coverage"] = cov
360 cov = Coverage()
361 cov.glyphs = [ item[1] for item in items]
374 return {"Coverage": cov, "AlternateSet": alternates}
427 cov = Coverage()
428 cov.glyphs = [ item[1] for item in items]
442 return {"Coverage": cov, "LigatureSet": ligSets}
/external/tcpdump/
H A Dprint-dccp.c192 u_int cov; local
196 cov = (dh->dccph_doff + DCCPH_CSCOV(dh) - 1) * sizeof(uint32_t);
197 return (cov > len)? len : cov;
/external/zlib/src/contrib/puff/
H A DMakefile16 cov: puft
/external/clang/
H A DAndroid.mk34 llvm-cov \
/external/opencv/cxcore/src/
H A Dcxmatmul.cpp2466 CvMat covstub, *cov = (CvMat*)covarr;
2486 CV_CALL( cov = cvGetMat( cov, &covstub ));
2489 if( !CV_ARE_TYPES_EQ( cov, avg ))
2493 dsttype = CV_MAT_TYPE( cov->type );
2497 if( cov->rows != cov->cols )
2534 cvMulTransposed( vecmat, cov, ((flags & CV_COVAR_ROWS)!=0) ^ ((flags & CV_COVAR_NORMAL)==0), avg, scale );
2545 if( cov->rows != contsize.width )
2551 else if( count != cov
[all...]
/external/python/cpython2/Lib/test/
H A Dtest_trace.py328 lines, cov, module = line.split()[:3]
329 coverage[module] = (int(lines), int(cov[:-1]))
/external/eigen/unsupported/test/
H A DNonLinearOptimization.cpp236 MatrixXd cov; local
237 cov = covfac*lm.fjac.topLeftCorner<n,n>();
238 VERIFY_IS_APPROX( cov, cov_ref);
627 MatrixXd cov; local
628 cov = covfac*lm.fjac.topLeftCorner<n,n>();
629 VERIFY_IS_APPROX( cov, cov_ref);
H A Dlevenberg_marquardt.cpp134 MatrixXd cov; local
135 cov = covfac*lm.matrixR().topLeftCorner<n,n>();
136 VERIFY_IS_APPROX( cov, cov_ref);
237 MatrixXd cov; local
238 cov = covfac*lm.matrixR().topLeftCorner<n,n>();
239 VERIFY_IS_APPROX( cov, cov_ref);
/external/llvm/tools/sancov/
H A Dsancov.cc563 OS << "cov-edges: " << Stats.CovPoints << "\n";
565 OS << "cov-functions: " << Stats.CovFns << "\n";
/external/harfbuzz_ng/src/
H A Dhb-ot-layout-gsubgpos-private.hh1250 const Coverage &cov = (this+coverage); local
1259 if (cov.intersects_coverage (c->glyphs, i)) {
1806 const Coverage &cov = (this+coverage); local
1815 if (cov.intersects_coverage (c->glyphs, i)) {
/external/libxml2/
H A DMakefile.am1267 cov: clean-cov
1281 clean-cov:
/external/toolchain-utils/cros_utils/
H A Dstats.py1093 cov = 0 variable
1095 cov = cov + (a[i] - x1) * (b[i] - x2) variable
1097 cov = cov / float(df) variable
1098 sd = math.sqrt((v1 + v2 - 2.0 * cov) / float(n))
/external/opencv/ml/include/
H A Dml.h1536 average row vector, <cov> - symmetric covariation matrix */
1537 CVAPI(void) cvRandMVNormal( CvMat* mean, CvMat* cov, CvMat* sample,

Completed in 760 milliseconds