/external/webrtc/pc/ |
D | stats_collector_unittest.cc | 166 const StatsReports& reports, in ExtractStatsValue() argument 168 for (const auto* r : reports) { in ExtractStatsValue() 203 const StatsReport* FindNthReportByType(const StatsReports& reports, in FindNthReportByType() argument 206 for (size_t i = 0; i < reports.size(); ++i) { in FindNthReportByType() 207 if (reports[i]->type() == type) { in FindNthReportByType() 210 return reports[i]; in FindNthReportByType() 222 const StatsReports& reports, in GetValueInNthReportByType() argument 226 const StatsReport* report = FindNthReportByType(reports, type, n); in GetValueInNthReportByType() 237 std::vector<const StatsReport*> GetReportsByType(const StatsReports& reports, in GetReportsByType() argument 240 for (const StatsReport* report : reports) { in GetReportsByType() [all …]
|
/external/google-benchmark/src/ |
D | statistics.cc | 78 const std::vector<BenchmarkReporter::Run>& reports) { in ComputeStats() argument 83 std::count_if(reports.begin(), reports.end(), in ComputeStats() 86 if (reports.size() - error_count < 2) { in ComputeStats() 95 real_accumulated_time_stat.reserve(reports.size()); in ComputeStats() 96 cpu_accumulated_time_stat.reserve(reports.size()); in ComputeStats() 100 const IterationCount run_iterations = reports.front().iterations; in ComputeStats() 107 for (Run const& r : reports) { in ComputeStats() 113 it->second.s.reserve(reports.size()); in ComputeStats() 121 for (Run const& run : reports) { in ComputeStats() 122 CHECK_EQ(reports[0].benchmark_name(), run.benchmark_name()); in ComputeStats() [all …]
|
D | complexity.cc | 159 const std::vector<BenchmarkReporter::Run>& reports) { in ComputeBigO() argument 163 if (reports.size() < 2) return results; in ComputeBigO() 171 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() 197 big_o.repetitions = reports[0].repetitions; in ComputeBigO() 199 big_o.threads = reports[0].threads; in ComputeBigO() [all …]
|
/external/llvm-project/libcxx/utils/google-benchmark/src/ |
D | statistics.cc | 78 const std::vector<BenchmarkReporter::Run>& reports) { in ComputeStats() argument 83 std::count_if(reports.begin(), reports.end(), in ComputeStats() 86 if (reports.size() - error_count < 2) { in ComputeStats() 95 real_accumulated_time_stat.reserve(reports.size()); in ComputeStats() 96 cpu_accumulated_time_stat.reserve(reports.size()); in ComputeStats() 100 int64_t const run_iterations = reports.front().iterations; in ComputeStats() 107 for (Run const& r : reports) { in ComputeStats() 113 it->second.s.reserve(reports.size()); in ComputeStats() 121 for (Run const& run : reports) { in ComputeStats() 122 CHECK_EQ(reports[0].benchmark_name(), run.benchmark_name()); in ComputeStats() [all …]
|
D | complexity.cc | 156 const std::vector<BenchmarkReporter::Run>& reports) { in ComputeBigO() argument 160 if (reports.size() < 2) return results; in ComputeBigO() 168 for (const Run& run : reports) { in ComputeBigO() 178 if (reports[0].complexity == oLambda) { in ComputeBigO() 179 result_cpu = MinimalLeastSq(n, cpu_time, reports[0].complexity_lambda); in ComputeBigO() 180 result_real = MinimalLeastSq(n, real_time, reports[0].complexity_lambda); in ComputeBigO() 182 result_cpu = MinimalLeastSq(n, cpu_time, reports[0].complexity); in ComputeBigO() 186 std::string run_name = reports[0].benchmark_name().substr( in ComputeBigO() 187 0, reports[0].benchmark_name().find('/')); in ComputeBigO() 205 double multiplier = GetTimeUnitMultiplier(reports[0].time_unit); in ComputeBigO() [all …]
|
/external/llvm-project/llvm/utils/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 …]
|
D | csv_reporter.cc | 45 void CSVReporter::ReportRuns(const std::vector<Run> & reports) { in ReportRuns() argument 50 for (const auto& run : reports) { in ReportRuns() 69 for (const auto& run : reports) { in ReportRuns() 80 for (const auto& run : reports) { in ReportRuns()
|
/external/libcxx/utils/google-benchmark/src/ |
D | statistics.cc | 78 const std::vector<BenchmarkReporter::Run>& reports) { in ComputeStats() argument 83 std::count_if(reports.begin(), reports.end(), in ComputeStats() 86 if (reports.size() - error_count < 2) { in ComputeStats() 95 real_accumulated_time_stat.reserve(reports.size()); in ComputeStats() 96 cpu_accumulated_time_stat.reserve(reports.size()); in ComputeStats() 100 int64_t const run_iterations = reports.front().iterations; in ComputeStats() 107 for (Run const& r : reports) { in ComputeStats() 113 it->second.s.reserve(reports.size()); in ComputeStats() 121 for (Run const& run : reports) { in ComputeStats() 122 CHECK_EQ(reports[0].benchmark_name(), run.benchmark_name()); in ComputeStats() [all …]
|
D | complexity.cc | 156 const std::vector<BenchmarkReporter::Run>& reports) { in ComputeBigO() argument 160 if (reports.size() < 2) return results; in ComputeBigO() 168 for (const Run& run : reports) { in ComputeBigO() 178 if (reports[0].complexity == oLambda) { in ComputeBigO() 179 result_cpu = MinimalLeastSq(n, cpu_time, reports[0].complexity_lambda); in ComputeBigO() 180 result_real = MinimalLeastSq(n, real_time, reports[0].complexity_lambda); in ComputeBigO() 182 result_cpu = MinimalLeastSq(n, cpu_time, reports[0].complexity); in ComputeBigO() 186 std::string run_name = reports[0].benchmark_name().substr( in ComputeBigO() 187 0, reports[0].benchmark_name().find('/')); in ComputeBigO() 205 double multiplier = GetTimeUnitMultiplier(reports[0].time_unit); in ComputeBigO() [all …]
|
/external/webrtc/video/ |
D | call_stats2.cc | 28 void RemoveOldReports(int64_t now, std::list<CallStats::RttTime>* reports) { in RemoveOldReports() argument 30 reports->remove_if( in RemoveOldReports() 34 int64_t GetMaxRttMs(const std::list<CallStats::RttTime>& reports) { in GetMaxRttMs() argument 36 for (const CallStats::RttTime& rtt_time : reports) in GetMaxRttMs() 41 int64_t GetAvgRttMs(const std::list<CallStats::RttTime>& reports) { in GetAvgRttMs() argument 42 RTC_DCHECK(!reports.empty()); in GetAvgRttMs() 44 for (std::list<CallStats::RttTime>::const_iterator it = reports.begin(); in GetAvgRttMs() 45 it != reports.end(); ++it) { in GetAvgRttMs() 48 return sum / reports.size(); in GetAvgRttMs() 51 int64_t GetNewAvgRttMs(const std::list<CallStats::RttTime>& reports, in GetNewAvgRttMs() argument [all …]
|
D | call_stats.cc | 26 void RemoveOldReports(int64_t now, std::list<CallStats::RttTime>* reports) { in RemoveOldReports() argument 28 reports->remove_if( in RemoveOldReports() 32 int64_t GetMaxRttMs(const std::list<CallStats::RttTime>& reports) { in GetMaxRttMs() argument 34 for (const CallStats::RttTime& rtt_time : reports) in GetMaxRttMs() 39 int64_t GetAvgRttMs(const std::list<CallStats::RttTime>& reports) { in GetAvgRttMs() argument 40 RTC_DCHECK(!reports.empty()); in GetAvgRttMs() 42 for (std::list<CallStats::RttTime>::const_iterator it = reports.begin(); in GetAvgRttMs() 43 it != reports.end(); ++it) { in GetAvgRttMs() 46 return sum / reports.size(); in GetAvgRttMs() 49 int64_t GetNewAvgRttMs(const std::list<CallStats::RttTime>& reports, in GetNewAvgRttMs() argument [all …]
|
/external/grpc-grpc/tools/run_tests/dockerize/ |
D | docker_run_tests.sh | 33 mkdir -p reports 41 cd reports 51 zip -r reports.zip reports 52 find . -name report.xml -print0 | xargs -0 -r zip reports.zip 53 find . -name sponge_log.xml -print0 | xargs -0 -r zip reports.zip 54 find . -name 'report_*.xml' -print0 | xargs -0 -r zip reports.zip
|
/external/rust/crates/grpcio-sys/grpc/tools/run_tests/dockerize/ |
D | docker_run_tests.sh | 33 mkdir -p reports 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
|
/external/tensorflow/tensorflow/lite/testing/ |
D | generate_examples_report.py | 32 def make_report_table(fp, title, reports): argument 44 reports.sort(key=lambda x: x[1]["converter"], reverse=False) 45 reports.sort(key=lambda x: x[1]["tf"], reverse=True) 81 ] for x in reports]) 94 for params, _ in reports: 108 for idx, (params, vals) in enumerate(reports):
|
/external/grpc-grpc/tools/internal_ci/linux/ |
D | grpc_coverage.sh | 33 zip -q -r coverage_report.zip reports || true 34 rm -rf reports || true 35 mkdir reports || true 36 mv coverage_report.zip reports || true
|
D | grpc_full_performance_release.sh | 30 --xml_report reports/8core/sponge_log.xml \ 34 git clean -fdxq -e reports 44 --xml_report reports/32core/sponge_log.xml \ 48 git clean -fdxq -e reports 56 --xml_report reports/windows/sponge_log.xml \
|
D | grpc_full_performance_master.sh | 30 --xml_report reports/8core/sponge_log.xml \ 34 git clean -fdxq -e reports 44 --xml_report reports/32core/sponge_log.xml \ 48 git clean -fdxq -e reports 56 --xml_report reports/windows/sponge_log.xml \
|
/external/tensorflow/tensorflow/core/profiler/convert/ |
D | xplane_to_kernel_stats_db_test.cc | 75 KernelReportMap reports; in TEST() local 76 ConvertDeviceTraceXPlaneToKernelReports(*device_trace, {}, &reports); in TEST() 78 CopyTopKDurationKernelReportsToDb(reports, &kernel_stats); in TEST() 83 const auto& kernel = kernel_stats.reports().at(2); in TEST() 101 const auto& kernel = kernel_stats.reports().at(1); in TEST() 119 const auto& kernel = kernel_stats.reports().at(0); in TEST()
|
/external/rust/crates/grpcio-sys/grpc/tools/internal_ci/linux/ |
D | grpc_coverage.sh | 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
|
/external/libabigail/doc/manuals/ |
D | libabigail-concepts.rst | 49 or any other relevant libabigail tool to avoid emitting reports for 53 ABI artifacts to avoid emitting change reports about. 59 Syntax`_. For instance, to specify that change reports on a type 66 If we want to ensure that only change reports about structures named 73 But we could also want to suppress change reports avoid typedefs named 80 Or, we could want to suppress change reports about all struct which 194 suppress ABI change reports for a particular kind of ABI artifact. 291 Suppresses change reports about ABI artifacts that are defined in a 301 Suppresses change reports about ABI artifacts that are defined in a 312 Suppresses change reports about ABI artifacts that are defined in a [all …]
|
/external/kotlinx.coroutines/reactive/kotlinx-coroutines-rx2/ |
D | build.gradle | 21 reports.html.destination = file("$buildDir/reports/testng") 35 reports.html.destination = file("$buildDir/reports/junit")
|
/external/jackson-databind/src/test/java/com/fasterxml/jackson/failing/ |
D | TestObjectIdDeserialization.java | 43 public void setReports(List<DefensiveEmployee> reports) in setReports() argument 45 this.reports = new ArrayList<Employee>(reports); in setReports() 118 assertEquals(1, firstEmployee.reports.size()); in assertEmployees() 119 …assertSame(secondEmployee, firstEmployee.reports.get(0)); // Ensure that forward reference was pro… in assertEmployees()
|
/external/kotlinx.coroutines/reactive/kotlinx-coroutines-rx3/ |
D | build.gradle | 30 reports.html.destination = file("$buildDir/reports/testng") 44 reports.html.destination = file("$buildDir/reports/junit")
|
/external/rust/crates/regex/ |
D | UNICODE.md | 4 [UTS#18](https://unicode.org/reports/tr18/) 13 [RL1.2a](https://unicode.org/reports/tr18/#RL1.2a) 28 [UTS#18 RL1.1](https://unicode.org/reports/tr18/#Hex_notation) 57 [UTS#18 RL1.2](https://unicode.org/reports/tr18/#Categories) 64 * [General categories](https://unicode.org/reports/tr18/#General_Category_Property) 65 * [Scripts and Script Extensions](https://unicode.org/reports/tr18/#Script_Property) 66 * [Age](https://unicode.org/reports/tr18/#Age) 68 [RL1.2](https://unicode.org/reports/tr18/#RL1.2) explicitly. 152 [UTS#18 RL1.2a](https://unicode.org/reports/tr18/#RL1.2a) 155 [compatibility properties documented in UTS#18 Annex C](https://unicode.org/reports/tr18/#Compatibi… [all …]
|