Home
last modified time | relevance | path

Searched refs:Run (Results 1 – 25 of 1055) sorted by relevance

12345678910>>...43

/netbsd-src/external/apache2/llvm/dist/libcxx/utils/google-benchmark/test/
H A Dregister_benchmark_test.cc13 virtual void ReportRuns(const std::vector<Run>& report) { in ReportRuns()
18 std::vector<Run> all_runs_;
29 typedef benchmark::BenchmarkReporter::Run Run; typedef
31 void CheckRun(Run const& run) const { in CheckRun()
139 typedef benchmark::BenchmarkReporter::Run Run; in RunTestOne() typedef
142 for (Run const& run : test_reporter.all_runs_) { in RunTestOne()
168 typedef benchmark::BenchmarkReporter::Run Run; in RunTestTwo() typedef
171 for (Run const& run : test_reporter.all_runs_) { in RunTestTwo()
H A Dskip_with_error_test.cc17 virtual void ReportRuns(const std::vector<Run>& report) { in ReportRuns()
25 mutable std::vector<Run> all_runs_;
33 typedef benchmark::BenchmarkReporter::Run Run; typedef
35 void CheckRun(Run const& run) const { in CheckRun()
178 typedef benchmark::BenchmarkReporter::Run Run; in main() typedef
181 for (Run const& run : test_reporter.all_runs_) { in main()
/netbsd-src/external/apache2/llvm/dist/llvm/utils/benchmark/test/
H A Dregister_benchmark_test.cc13 virtual void ReportRuns(const std::vector<Run>& report) { in ReportRuns()
18 std::vector<Run> all_runs_;
29 typedef benchmark::BenchmarkReporter::Run Run; typedef
31 void CheckRun(Run const& run) const { in CheckRun()
137 typedef benchmark::BenchmarkReporter::Run Run; in RunTestOne() typedef
140 for (Run const& run : test_reporter.all_runs_) { in RunTestOne()
166 typedef benchmark::BenchmarkReporter::Run Run; in RunTestTwo() typedef
169 for (Run const& run : test_reporter.all_runs_) { in RunTestTwo()
H A Dskip_with_error_test.cc17 virtual void ReportRuns(const std::vector<Run>& report) { in ReportRuns()
25 mutable std::vector<Run> all_runs_;
33 typedef benchmark::BenchmarkReporter::Run Run; typedef
35 void CheckRun(Run const& run) const { in CheckRun()
181 typedef benchmark::BenchmarkReporter::Run Run; in main() typedef
184 for (Run const& run : test_reporter.all_runs_) { in main()
/netbsd-src/external/apache2/llvm/dist/libcxx/utils/google-benchmark/src/
H A Dstatistics.cc77 std::vector<BenchmarkReporter::Run> ComputeStats( in ComputeStats()
78 const std::vector<BenchmarkReporter::Run>& reports) { in ComputeStats()
79 typedef BenchmarkReporter::Run Run; in ComputeStats() typedef
80 std::vector<Run> results; in ComputeStats()
84 [](Run const& run) { return run.error_occurred; }); in ComputeStats()
107 for (Run const& r : reports) { in ComputeStats()
121 for (Run const& run : reports) { in ComputeStats()
149 Run data; in ComputeStats()
151 data.run_type = BenchmarkReporter::Run::RT_Aggregate; in ComputeStats()
H A Dcomplexity.cc155 std::vector<BenchmarkReporter::Run> ComputeBigO( in ComputeBigO()
156 const std::vector<BenchmarkReporter::Run>& reports) { in ComputeBigO()
157 typedef BenchmarkReporter::Run Run; in ComputeBigO() typedef
158 std::vector<Run> results; in ComputeBigO()
168 for (const Run& run : reports) { in ComputeBigO()
190 Run big_o; in ComputeBigO()
192 big_o.run_type = BenchmarkReporter::Run::RT_Aggregate; in ComputeBigO()
208 Run rms; in ComputeBigO()
211 rms.run_type = BenchmarkReporter::Run::RT_Aggregate; in ComputeBigO()
H A Dbenchmark_runner.h36 std::vector<BenchmarkReporter::Run> non_aggregates;
37 std::vector<BenchmarkReporter::Run> aggregates_only;
45 std::vector<BenchmarkReporter::Run>* complexity_reports);
H A Dbenchmark_runner.cc64 BenchmarkReporter::Run CreateRunReport( in CreateRunReport()
69 BenchmarkReporter::Run report; in CreateRunReport()
111 State st = b->Run(iters, thread_id, &timer, manager); in RunInThread()
130 std::vector<BenchmarkReporter::Run>* complexity_reports_) in BenchmarkRunner()
176 std::vector<BenchmarkReporter::Run>& complexity_reports;
329 BenchmarkReporter::Run report = CreateRunReport( in DoOneRepetition()
343 std::vector<BenchmarkReporter::Run>* complexity_reports) { in RunBenchmark()
H A Djson_reporter.cc140 void JSONReporter::ReportRuns(std::vector<Run> const& reports) { in ReportRuns()
167 void JSONReporter::PrintRunData(Run const& run) { in PrintRunData()
174 case BenchmarkReporter::Run::RT_Iteration: in PrintRunData()
176 case BenchmarkReporter::Run::RT_Aggregate: in PrintRunData()
181 if (run.run_type == BenchmarkReporter::Run::RT_Aggregate) { in PrintRunData()
H A Dreporter.cc85 std::string BenchmarkReporter::Run::benchmark_name() const { in benchmark_name()
93 double BenchmarkReporter::Run::GetAdjustedRealTime() const { in GetAdjustedRealTime()
99 double BenchmarkReporter::Run::GetAdjustedCPUTime() const { in GetAdjustedCPUTime()
H A Dbenchmark_api_internal.cc6 State BenchmarkInstance::Run( in Run() function in benchmark::internal::BenchmarkInstance
10 benchmark->Run(st); in Run()
/netbsd-src/external/apache2/llvm/dist/llvm/utils/benchmark/src/
H A Dstatistics.cc78 std::vector<BenchmarkReporter::Run> ComputeStats( in ComputeStats()
79 const std::vector<BenchmarkReporter::Run>& reports) { in ComputeStats()
80 typedef BenchmarkReporter::Run Run; in ComputeStats() typedef
81 std::vector<Run> results; in ComputeStats()
85 [](Run const& run) { return run.error_occurred; }); in ComputeStats()
112 for(Run const& r : reports) { in ComputeStats()
126 for (Run const& run : reports) { in ComputeStats()
153 Run data; in ComputeStats()
H A Dcomplexity.cc152 std::vector<BenchmarkReporter::Run> ComputeBigO( in ComputeBigO()
153 const std::vector<BenchmarkReporter::Run>& reports) { in ComputeBigO()
154 typedef BenchmarkReporter::Run Run; in ComputeBigO() typedef
155 std::vector<Run> results; in ComputeBigO()
165 for (const Run& run : reports) { in ComputeBigO()
186 Run big_o; in ComputeBigO()
202 Run rms; in ComputeBigO()
H A Dbenchmark.cc116 BenchmarkReporter::Run CreateRunReport( in CreateRunReport()
121 BenchmarkReporter::Run report; in CreateRunReport()
166 b->benchmark->Run(st); in RunInThread()
184 std::vector<BenchmarkReporter::Run> RunBenchmark( in RunBenchmark()
186 std::vector<BenchmarkReporter::Run>* complexity_reports) { in RunBenchmark()
187 std::vector<BenchmarkReporter::Run> reports; // return value in RunBenchmark()
250 BenchmarkReporter::Run report = CreateRunReport(b, results, seconds); in RunBenchmark()
414 std::vector<BenchmarkReporter::Run> complexity_reports; in RunBenchmarks()
429 std::vector<BenchmarkReporter::Run> reports = in RunBenchmarks()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Format/
H A DTokenAnalyzer.cpp80 for (unsigned Run = 0, RunE = UnwrappedLines.size(); Run + 1 != RunE; ++Run) { in process() local
81 LLVM_DEBUG(llvm::dbgs() << "Run " << Run << "...\n"); in process()
85 for (unsigned i = 0, e = UnwrappedLines[Run].size(); i != e; ++i) { in process()
86 AnnotatedLines.push_back(new AnnotatedLine(UnwrappedLines[Run][i])); in process()
94 llvm::dbgs() << "Replacements for run " << Run << ":\n"; in process()
/netbsd-src/distrib/acorn32/stand/BtNetBSD/!BtNetBSD/
H A D!Run1 | $NetBSD: !Run,v 1.3 2004/06/10 07:42:47 abs Exp $
10 Set Alias$@RunType_1a9 Run <BtNetBSD$Dir>.!Run %%*0
15 Run <BtNetBSD$Dir>.checkro403
/netbsd-src/external/gpl3/gdb/dist/sim/testsuite/mips/
H A DChangeLog-202149 * basic.exp: Run the dsp2 test.
56 (mdmxmodels): Run mdmx tests only on mdmx capable configurations.
60 * mips32-dsp.s: Run DSP testcase only for release 2 architecture.
69 patterns. Run DSP test only for DSP-capable ISAs. Check also mips32r2
83 * basic.exp: Run the dsp test.
100 * basic.exp: Run new mdmx-ob and mdmx-ob-sb1 tests.
111 * basic.exp: Run fpu64-ps.s.
120 Run hilo-hazard-[123].s.
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-pdbutil/
H A DLinePrinter.cpp130 struct Run { struct
131 Run() = default;
132 explicit Run(uint32_t Block) : Block(Block) {} in Run() function
138 static std::vector<Run> computeBlockRuns(uint32_t BlockSize, in computeBlockRuns()
140 std::vector<Run> Runs; in computeBlockRuns()
150 Run *CurrentRun = &Runs.back(); in computeBlockRuns()
165 static std::pair<Run, uint32_t> findRun(uint32_t Offset, ArrayRef<Run> Runs) { in findRun()
224 Run FoundRun; in formatMsfStreamData()
/netbsd-src/external/mit/lua/dist/
H A DREADME.import6 2. Run lua2netbsd script inside that directory.
7 3. Run 'cvs import src/external/mit/lua/dist LUA LUA_<<x_y_z>>'.
10 5. Run 'cvs up -dP' to bring the new import to the tree.
11 6. Run 'cvs up -j LUA_<<previous_version>> -j LUA_<<x_y_z>>'.
/netbsd-src/external/gpl3/gdb/dist/gdb/testsuite/boards/
H A DREADME9 Run gdb with -readnow.
63 Run gdbserver on remote target.
65 Run gdbserver on remote target, using stdio connection.
70 Run gdb on remote host in pseudo-terminal with "set editing off".
72 Run gdb on remote host in pseudo-terminal.
77 Run gdb on remote host, run gdbserver on remote target, with
/netbsd-src/external/mpl/bind/dist/contrib/dlz/modules/sqlite3/testing/
H A DREADME
/netbsd-src/external/apache2/llvm/dist/llvm/utils/benchmark/include/benchmark/
H A Dbenchmark.h895 virtual void Run(State& state) = 0;
955 virtual void Run(State& st);
965 virtual void Run(State& st) { lambda_(st); } in Run() function
1016 virtual void Run(State& st) { in Run() function
1271 struct Run { struct
1272 Run() in Run() function
1351 virtual void ReportRuns(const std::vector<Run>& report) = 0; argument
1403 virtual void ReportRuns(const std::vector<Run>& reports);
1406 virtual void PrintRunData(const Run& report);
1407 virtual void PrintHeader(const Run& report);
[all …]
/netbsd-src/external/apache2/llvm/dist/libcxx/utils/google-benchmark/include/benchmark/
H A Dbenchmark.h934 virtual void Run(State& state) = 0;
991 virtual void Run(State& st);
1001 virtual void Run(State& st) { lambda_(st); } in Run() function
1053 virtual void Run(State& st) { in Run() function
1321 struct Run { struct
1324 Run() in Run() argument
1409 virtual void ReportRuns(const std::vector<Run>& report) = 0; argument
1463 virtual void ReportRuns(const std::vector<Run>& reports);
1466 virtual void PrintRunData(const Run& report);
1467 virtual void PrintHeader(const Run& report);
[all …]
/netbsd-src/external/gpl2/lvm2/dist/
H A DINSTALL6 Run the 'configure' script from the top directory.
18 Run 'make' from the top directory to build everything you configured.
19 Run 'make install' to build and install everything you configured.
/netbsd-src/external/gpl2/gmake/dist/tests/scripts/options/
H A Ddash-f41 # Run make to catch the default rule
47 # Run Make again with the rule from the second makefile: TWO
55 # Run Make again with the rule from the third makefile: THREE
65 # Run Make again with ALL three rules in the order 2 1 3 to make sure

12345678910>>...43