/external/llvm/test/tools/llvm-cov/ |
D | llvm-cov.test | 1 # Tests for compatibility between llvm-cov and gcov. These work by 2 # comparing llvm-cov against reference outputs generated by gcov 4.2. 13 RUN: llvm-cov test.c | diff -u test_no_options.output - 20 RUN: llvm-cov -o objdir test.c | diff -u test_no_options.output - 25 RUN: llvm-cov -o objdir/test.o test.c | diff -u test_no_options.output - 30 RUN: llvm-cov -o objdir/test test.c | diff -u test_no_options.output - 35 RUN: llvm-cov -n test.c | diff -u test_no_output.output - 39 RUN: llvm-cov test_paths.cpp 2>/dev/null | diff -u test_missing.output - 46 RUN: llvm-cov -p test_paths.cpp | diff -u test_preserve_paths.output - 51 RUN: llvm-cov test_paths.cpp | diff -u test_no_preserve_paths.output - [all …]
|
D | copy_block_helper.m | 2 // crash llvm-cov. 12 // RUN: llvm-cov copy_block_helper.m | FileCheck %s --check-prefix=STDOUT 31 // llvm-cov doesn't work on big endian yet
|
/external/opencv/cv/src/ |
D | cvcorner.cpp | 47 icvCalcMinEigenVal( const float* cov, int cov_step, float* dst, in icvCalcMinEigenVal() argument 52 cov_step /= sizeof(cov[0]); in icvCalcMinEigenVal() 56 for( ; size.height--; cov += cov_step, dst += dst_step ) in icvCalcMinEigenVal() 60 double a = cov[j*3]*0.5; in icvCalcMinEigenVal() 61 double b = cov[j*3+1]; in icvCalcMinEigenVal() 62 double c = cov[j*3+2]*0.5; in icvCalcMinEigenVal() 77 icvCalcHarris( const float* cov, int cov_step, float* dst, in icvCalcHarris() argument 81 cov_step /= sizeof(cov[0]); in icvCalcHarris() 84 for( ; size.height--; cov += cov_step, dst += dst_step ) in icvCalcHarris() 88 double a = cov[j*3]; in icvCalcHarris() [all …]
|
/external/chromium_org/tools/code_coverage/ |
D | croc.py | 85 exe = instr = cov = 0 91 cov += 1 96 lines_covered=cov, 100 if cov: 664 cov = Coverage() 669 cov.AddRoot(*root_opt.split('=')) 671 cov.AddRoot(root_opt) 675 cov.ParseConfig(config_file, lcov_queue=options.inputs, 680 cov.ParseLcovFile(input_filename) 684 cov.AddFiles(add_path) [all …]
|
D | croc_test.py | 200 self.cov = croc.Coverage() 220 c = self.cov 228 c = self.cov 279 c = self.cov 433 c = self.cov 500 c = self.cov 506 c = self.cov
|
D | croc_html.py | 116 def __init__(self, cov, output_root, base_url=None): argument 118 self.cov = cov 436 todo = [self.cov.tree]
|
/external/chromium_org/v8/tools/push-to-trunk/ |
D | script_test.py | 40 cov = coverage.coverage(include=([os.path.join(script_path, '*.py')])) 41 cov.start() 49 cov.stop() 50 print cov.report()
|
/external/opencv/ml/src/ |
D | mltestset.cpp | 66 CvMat* cov = NULL; in cvCreateTestSet() local 109 CV_CALL( cov = cvCreateMat( num_features, num_features, CV_32FC1 ) ); in cvCreateTestSet() 110 CV_CALL( cvSetIdentity( cov ) ); in cvCreateTestSet() 114 CV_CALL( cvRandMVNormal( mean, cov, *samples ) ); in cvCreateTestSet() 166 cvReleaseMat( &cov ); in cvCreateTestSet()
|
D | mlem.cpp | 193 const CvMat* cov = params.covs[k]; in set_params() local 194 if( !CV_IS_MAT(cov) || in set_params() 195 CV_MAT_TYPE(cov->type) != CV_32FC1 && in set_params() 196 CV_MAT_TYPE(cov->type) != CV_64FC1 || in set_params() 197 cov->rows != cov->cols || cov->cols != train_data.dims ) in set_params() 982 CvMat* cov = covs[k], _mean, _sample; in run_em() local 996 cvZero( cov ); in run_em() 1007 cvScaleAdd( covs_item, cvRealScalar(p), cov, cov ); in run_em() 1027 cvSVD( cov, w, cov_rotate_mats[k], 0, CV_SVD_U_T ); in run_em()
|
D | mlnbayes.cpp | 116 CvMat* cov = 0; in train() local 193 CV_CALL( cov = cvCreateMat( _var_count, _var_count, CV_64FC1 )); in train() 241 double* cov_data = cov->data.db + i*_var_count; in train() 255 CV_CALL( cvCompleteSymm( cov, 1 )); in train() 256 CV_CALL( cvSVD( cov, w, cov_rotate_mats[cls], 0, CV_SVD_U_T )); in train() 272 cvReleaseMat( &cov ); in train()
|
/external/llvm/docs/CommandGuide/ |
D | llvm-cov.rst | 1 llvm-cov - emit coverage information 7 :program:`llvm-cov` [options] SOURCEFILE 12 The :program:`llvm-cov` tool reads code coverage data files and displays the 17 To use llvm-cov, you must first build an instrumented version of your 42 where llvm-cov expects to find them. 44 Once you have generated the coverage data files, run llvm-cov for each main 51 The basic content of an llvm-cov output file is a copy of the source file with 64 source code, this option causes llvm-cov to show the count for each block 120 Display the version of llvm-cov. 125 :program:`llvm-cov` returns 1 if it cannot read input files. Otherwise, it
|
D | index.rst | 27 llvm-cov
|
/external/llvm/tools/llvm-cov/ |
D | CMakeLists.txt | 3 add_llvm_tool(llvm-cov 4 llvm-cov.cpp
|
D | Android.mk | 11 llvm-cov.cpp 19 LOCAL_MODULE := llvm-cov
|
D | LLVMBuild.txt | 1 ;===- ./tools/llvm-cov/LLVMBuild.txt ---------------------------*- Conf -*--===; 20 name = llvm-cov
|
D | Makefile | 11 TOOLNAME := llvm-cov
|
/external/eigen/doc/ |
D | FunctionsTakingEigenTypes.dox | 96 void cov(const Ref<const MatrixXf> x, const Ref<const MatrixXf> y, Ref<MatrixXf> C) 104 and here are two examples calling cov without any copy: 107 cov(m1, m2, m3); 108 cov(m1.leftCols<3>(), m2.leftCols<3>(), m3.topLeftCorner<3,3>()); 114 …nctions, and without the Ref class, a naive implementation of the previous cov function might look… 116 MatrixXf cov(const MatrixXf& x, const MatrixXf& y) 127 MatrixXf C = cov(x,y+z); 139 void cov(const MatrixXf& x, const MatrixXf& y, MatrixXf& C) 150 cov(x,y, C.block(0,0,3,3)); 157 void cov(const MatrixBase<Derived>& x, const MatrixBase<Derived>& y, MatrixBase<OtherDerived> const… [all …]
|
/external/fonttools/Lib/fontTools/ttLib/tables/ |
D | otTables.py | 192 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/ |
D | print-dccp.c | 65 u_int cov; in dccp_csum_coverage() local 69 cov = (dh->dccph_doff + DCCPH_CSCOV(dh) - 1) * sizeof(u_int32_t); in dccp_csum_coverage() 70 return (cov > len)? len : cov; in dccp_csum_coverage()
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/ |
D | html.py | 44 def __init__(self, cov, ignore_errors=False): argument 45 super(HtmlReporter, self).__init__(cov, ignore_errors) 56 self.coverage = cov
|
/external/llvm/test/tools/llvm-cov/Inputs/ |
D | README | 1 These inputs were pre-generated to allow for easier testing of llvm-cov.
|
/external/ceres-solver/internal/ceres/ |
D | covariance_impl.cc | 171 ConstMatrixRef cov(covariance_matrix_->values() + rows[row_begin], in GetCovarianceBlock() local 179 cov.block(0, offset, block1_size, block2_size).transpose(); in GetCovarianceBlock() 182 cov.block(0, offset, block1_size, block2_size); in GetCovarianceBlock() 226 cov.block(0, offset, block1_local_size, block2_local_size).transpose() * in GetCovarianceBlock() 231 cov.block(0, offset, block1_local_size, block2_local_size) * in GetCovarianceBlock()
|
/external/chromium-trace/trace-viewer/third_party/gl-matrix/tasks/test/ |
D | coverage.rake | 56 output = base_path.join('tmp/coverage/lib-cov').to_s 84 path = coverage_path.join('lib-cov').join(part.pathname.basename)
|
/external/llvm/tools/ |
D | LLVMBuild.txt | 19 subdirectories = bugpoint llc lli llvm-ar llvm-as llvm-bcanalyzer llvm-cov llvm-diff llvm-dis llvm-…
|
D | Makefile | 33 llvm-dwarfdump llvm-cov llvm-size llvm-stress llvm-mcmarkup \
|