/third_party/benchmark/src/ |
D | statistics.cc | 88 const std::vector<BenchmarkReporter::Run>& reports) { in ComputeStats() argument 93 std::count_if(reports.begin(), reports.end(), in ComputeStats() 96 if (reports.size() - error_count < 2) { in ComputeStats() 105 real_accumulated_time_stat.reserve(reports.size()); in ComputeStats() 106 cpu_accumulated_time_stat.reserve(reports.size()); in ComputeStats() 110 const IterationCount run_iterations = reports.front().iterations; in ComputeStats() 117 for (Run const& r : reports) { in ComputeStats() 123 it->second.s.reserve(reports.size()); in ComputeStats() 131 for (Run const& run : reports) { in ComputeStats() 132 BM_CHECK_EQ(reports[0].benchmark_name(), run.benchmark_name()); in ComputeStats() [all …]
|
D | complexity.cc | 158 const std::vector<BenchmarkReporter::Run>& reports) { in ComputeBigO() argument 162 if (reports.size() < 2) return results; in ComputeBigO() 170 for (const Run& run : reports) { in ComputeBigO() 181 if (reports[0].complexity == oLambda) { in ComputeBigO() 182 result_cpu = MinimalLeastSq(n, cpu_time, reports[0].complexity_lambda); in ComputeBigO() 183 result_real = MinimalLeastSq(n, real_time, reports[0].complexity_lambda); in ComputeBigO() 185 result_cpu = MinimalLeastSq(n, cpu_time, reports[0].complexity); in ComputeBigO() 190 auto run_name = reports[0].run_name; in ComputeBigO() 196 big_o.family_index = reports[0].family_index; in ComputeBigO() 197 big_o.per_family_instance_index = reports[0].per_family_instance_index; in ComputeBigO() [all …]
|
/third_party/json/benchmarks/thirdparty/benchmark/src/ |
D | statistics.cc | 79 const std::vector<BenchmarkReporter::Run>& reports) { in ComputeStats() argument 84 std::count_if(reports.begin(), reports.end(), in ComputeStats() 87 if (reports.size() - error_count < 2) { in ComputeStats() 98 real_accumulated_time_stat.reserve(reports.size()); in ComputeStats() 99 cpu_accumulated_time_stat.reserve(reports.size()); in ComputeStats() 100 bytes_per_second_stat.reserve(reports.size()); in ComputeStats() 101 items_per_second_stat.reserve(reports.size()); in ComputeStats() 105 int64_t const run_iterations = reports.front().iterations; in ComputeStats() 112 for(Run const& r : reports) { in ComputeStats() 118 it->second.s.reserve(reports.size()); in ComputeStats() [all …]
|
D | complexity.cc | 153 const std::vector<BenchmarkReporter::Run>& reports) { in ComputeBigO() argument 157 if (reports.size() < 2) return results; in ComputeBigO() 165 for (const Run& run : reports) { in ComputeBigO() 175 if (reports[0].complexity == oLambda) { in ComputeBigO() 176 result_cpu = MinimalLeastSq(n, cpu_time, reports[0].complexity_lambda); in ComputeBigO() 177 result_real = MinimalLeastSq(n, real_time, reports[0].complexity_lambda); in ComputeBigO() 179 result_cpu = MinimalLeastSq(n, cpu_time, reports[0].complexity); in ComputeBigO() 183 reports[0].benchmark_name.substr(0, reports[0].benchmark_name.find('/')); in ComputeBigO() 199 double multiplier = GetTimeUnitMultiplier(reports[0].time_unit); in ComputeBigO() 203 big_o.report_label = reports[0].report_label; in ComputeBigO() [all …]
|
/third_party/node/test/report/ |
D | test-report-fatal-error.js | 41 const reports = helper.findReports(child.pid, tmpdir.path); constant 42 assert.strictEqual(reports.length, 1); 44 const report = reports[0]; 58 const reports = helper.findReports(child.pid, tmpdir.path); constant 59 assert.strictEqual(reports.length, 0); 71 const reports = helper.findReports(child.pid, tmpdir.path); constant 72 assert.strictEqual(reports.length, 1); 74 const report = reports[0]; 88 const reports = helper.findReports(child.pid, tmpdir.path); constant 89 assert.strictEqual(reports.length, 1); [all …]
|
/third_party/typescript/tests/baselines/reference/ |
D | memberVariableDeclarations1.symbols | 20 public reports: Employee[] = []; 21 >reports : Symbol(Employee.reports, Decl(memberVariableDeclarations1.ts, 6, 36)) 41 public reports: Employee[]; 42 >reports : Symbol(Employee2.reports, Decl(memberVariableDeclarations1.ts, 14, 29)) 56 this.reports = []; 57 >this.reports : Symbol(Employee2.reports, Decl(memberVariableDeclarations1.ts, 14, 29)) 59 >reports : Symbol(Employee2.reports, Decl(memberVariableDeclarations1.ts, 14, 29))
|
D | memberVariableDeclarations1.types | 21 public reports: Employee[] = []; 22 >reports : Employee[] 41 public reports: Employee[]; 42 >reports : Employee[] 59 this.reports = []; 60 >this.reports = [] : undefined[] 61 >this.reports : Employee[] 63 >reports : Employee[]
|
D | memberVariableDeclarations1.js | 9 public reports: Employee[] = []; 17 public reports: Employee[]; 21 this.reports = []; 36 this.reports = []; 44 this.reports = [];
|
/third_party/boost/libs/spirit/doc/karma/ |
D | binary.qbk | 90 output stream reports an error).]] 95 reports an error).]] 100 reports an error).]] 105 reports an error).]] 109 output stream reports an error).]] 113 output stream reports an error).]] 117 output stream reports an error).]] 122 reports an error).]] 127 reports an error).]] 132 reports an error).]] [all …]
|
D | char.qbk | 167 reports an error).]] 170 reports an error).]] 174 underlying output stream reports an error).]] 180 output stream reports an error). Otherwise this 187 output stream reports an error). Otherwise this 193 (unless the underlying output stream reports an 200 (unless the underlying output stream reports an 366 reports an error). This generator fails otherwise 372 reports an error). This generator fails otherwise 378 reports an error). This generator fails otherwise [all …]
|
/third_party/grpc/tools/run_tests/dockerize/ |
D | docker_run_tests.sh | 33 mkdir -p reports 41 # The easiest way to copy all the reports files from inside of 43 zip -r reports.zip reports 44 find . -name report.xml -print0 | xargs -0 -r zip reports.zip 45 find . -name sponge_log.xml -print0 | xargs -0 -r zip reports.zip 46 find . -name 'report_*.xml' -print0 | xargs -0 -r zip reports.zip
|
/third_party/boost/libs/math/test/ |
D | test_print_info_on_type.cpp | 30 std::numeric_limits<float>::digits reports that the precision is 32 boost::math::policies::precision<float, Policy> reports that the compile time precision is 40 std::numeric_limits<double>::digits reports that the precision is 42 boost::math::policies::precision<double, Policy> reports that the compile time precision is 50 std::numeric_limits<long double>::digits reports that the precision is 52 boost::math::policies::precision<long double, Policy> reports that the compile time precision is 61 reports that there is no compile type precision available. 63 reports that the current runtime precision is
|
/third_party/boost/libs/test/example/ |
D | unit_test_example_10.cpp | 61 … // reports 'error in "account_test::test_init": test m_account.balance() >= 0.0 failed' on error in test_init() 65 …// reports 'error in "account_test::test_init": Initial balance should be more then 1, was actual_… in test_init() 70 …// reports 'error in "account_test::test_init": test m_account.balance() == 5.0 failed [actual_val… in test_init() 74 …// reports 'error in "account_test::test_init": test m_account.balance() (==) 10.0 failed [actual_… in test_init() 93 // reports "test m_account.balance() == curr_ballance + deposit_value failed" on error in test_deposit() 98 …// reports 'fatal error in "account_test::test_deposit": test m_account.balance() >= 100.0 failed'… in test_deposit() 101 …// reports 'fatal error in "account_test::test_deposit": Balance should be more than 500.1, was ac… in test_deposit() 105 …// reports 'fatal error in "account_test::test_deposit": test std::not_equal_to<double>()(m_accoun… in test_deposit() 109 …// reports 'fatal error in "account_test::test_deposit": test close_at_tolerance<double>( 1e-9 )( … in test_deposit() 122 // reports "test m_account.balance() == curr_ballance - 2.5 failed" on error in test_withdraw() [all …]
|
/third_party/grpc/tools/internal_ci/linux/ |
D | grpc_coverage.sh | 39 # HTML reports can't be easily displayed in GCS, so create a zip archive 40 # and put it under reports directory to get it uploaded as an artifact. 41 zip -q -r coverage_report.zip reports || true 42 rm -rf reports || true 43 mkdir reports || true 44 mv coverage_report.zip reports || true
|
/third_party/flutter/flutter/packages/flutter_test/lib/src/ |
D | window.dart | 60 /// Hides the real device pixel ratio and reports the given [devicePixelRatio] 76 /// Hides the real physical size and reports the given [physicalSizeTestValue] 92 /// Hides the real physical depth and reports the given 108 /// Hides the real view insets and reports the given [viewInsetsTestValue] 124 /// Hides the real view padding and reports the given [paddingTestValue] 140 /// Hides the real padding and reports the given [paddingTestValue] instead. 161 /// Hides the real locale and reports the given [localeTestValue] instead. 175 /// Hides the real locales and reports the given [localesTestValue] instead. 204 /// Hides the real text scale factor and reports the given 226 /// Hides the real text scale factor and reports the given [all …]
|
/third_party/skia/third_party/externals/libpng/contrib/powerpc-vsx/ |
D | README | 42 BUG REPORTS: an email address to which to send reports of problems 53 BUG REPORTS 74 You must also be prepared to handle bug reports from users of the code, either 76 "BUG REPORTS" entry or both. Please make sure that the header of the file 77 contains the STATUS and BUG REPORTS fields as above.
|
/third_party/libpng/contrib/powerpc-vsx/ |
D | README | 42 BUG REPORTS: an email address to which to send reports of problems 53 BUG REPORTS 74 You must also be prepared to handle bug reports from users of the code, either 76 "BUG REPORTS" entry or both. Please make sure that the header of the file 77 contains the STATUS and BUG REPORTS fields as above.
|
/third_party/flutter/skia/third_party/externals/libpng/contrib/powerpc-vsx/ |
D | README | 42 BUG REPORTS: an email address to which to send reports of problems 53 BUG REPORTS 74 You must also be prepared to handle bug reports from users of the code, either 76 "BUG REPORTS" entry or both. Please make sure that the header of the file 77 contains the STATUS and BUG REPORTS fields as above.
|
/third_party/boost/boost/math/constants/ |
D | info.hpp | 62 …"std::numeric_limits<" << nameof<T>() << ">::digits reports that the radix is " << std::numeric_li… in print_info_on_type() 66 …"std::numeric_limits<" << nameof<T>() << ">::digits reports that the precision is \n" << std::nume… in print_info_on_type() 71 …"std::numeric_limits<" << nameof<T>() << ">::digits reports that the precision is \n" << std::nume… in print_info_on_type() 73 "std::numeric_limits<" << nameof<T>() << ">::digits reports that the precision is \n" in print_info_on_type() 87 …"boost::math::policies::precision<" << nameof<T>() << ", " << nameof<Policy>() << " reports that t… in print_info_on_type() 92 …h::policies::precision<" << nameof<T>() << ", " << nameof<Policy>() << " reports that the compile … in print_info_on_type() 103 "reports that there is no compile type precision available.\n" in print_info_on_type() 105 "reports that the current runtime precision is \n" << in print_info_on_type()
|
/third_party/grpc/test/cpp/qps/ |
D | report.h | 49 /** Reports QPS for the given \a result. */ 52 /** Reports QPS per core as (YYY/server core). */ 55 /** Reports latencies for the 50, 90, 95, 99 and 99.9 percentiles, in ms. */ 58 /** Reports system and user time for client and server systems. */ 61 /** Reports server cpu usage. */ 64 /** Reports client and server poll usage inside completion queue. */ 67 /** Reports queries per cpu-sec. */
|
/third_party/libpng/contrib/arm-neon/ |
D | README | 44 BUG REPORTS: an email address to which to send reports of problems 55 BUG REPORTS 76 You must also be prepared to handle bug reports from users of the code, either 78 "BUG REPORTS" entry or both. Please make sure that the header of the file 79 contains the STATUS and BUG REPORTS fields as above.
|
/third_party/skia/third_party/externals/libpng/contrib/mips-msa/ |
D | README | 44 BUG REPORTS: an email address to which to send reports of problems 55 BUG REPORTS 76 You must also be prepared to handle bug reports from users of the code, either 78 "BUG REPORTS" entry or both. Please make sure that the header of the file 79 contains the STATUS and BUG REPORTS fields as above.
|
/third_party/flutter/skia/third_party/externals/libpng/contrib/arm-neon/ |
D | README | 44 BUG REPORTS: an email address to which to send reports of problems 55 BUG REPORTS 76 You must also be prepared to handle bug reports from users of the code, either 78 "BUG REPORTS" entry or both. Please make sure that the header of the file 79 contains the STATUS and BUG REPORTS fields as above.
|
/third_party/flutter/skia/third_party/externals/libpng/contrib/mips-msa/ |
D | README | 44 BUG REPORTS: an email address to which to send reports of problems 55 BUG REPORTS 76 You must also be prepared to handle bug reports from users of the code, either 78 "BUG REPORTS" entry or both. Please make sure that the header of the file 79 contains the STATUS and BUG REPORTS fields as above.
|
/third_party/libpng/contrib/mips-msa/ |
D | README | 44 BUG REPORTS: an email address to which to send reports of problems 55 BUG REPORTS 76 You must also be prepared to handle bug reports from users of the code, either 78 "BUG REPORTS" entry or both. Please make sure that the header of the file 79 contains the STATUS and BUG REPORTS fields as above.
|