HomeSort by: relevance | last modified time | path
    Searched defs:Run (Results 1 - 25 of 34) sorted by relevancy

1 2

  /src/external/apache2/llvm/dist/libcxx/utils/google-benchmark/src/
benchmark_api_internal.cc 6 State BenchmarkInstance::Run(
10 benchmark->Run(st);
statistics.cc 77 std::vector<BenchmarkReporter::Run> ComputeStats(
78 const std::vector<BenchmarkReporter::Run>& reports) {
79 typedef BenchmarkReporter::Run Run;
80 std::vector<Run> results;
84 [](Run const& run) { return run.error_occurred; });
87 // We don't report aggregated data if there was a single run.
98 // All repetitions should be run with the same number of iterations so w
    [all...]
benchmark_register.cc 67 // benchmark identifies a family of related benchmarks to run.
143 // The benchmark will be run at least 'family_size' different inputs.
474 void FunctionBenchmark::Run(State& st) { func_(st); }
  /src/sys/external/bsd/compiler_rt/dist/lib/tsan/benchmarks/
mini_bench_local.cc 12 void Run(int idx) {
21 Run(idx);
mini_bench_shared.cc 12 void Run(int idx) {
21 Run(idx);
  /src/external/apache2/llvm/dist/llvm/utils/lit/lit/
run.py 16 class Run(object):
17 """A concrete, configured testing run."""
31 Execute the tests in the run using up to the specified number of
33 provided tests should be a subset of the tests available in this run
43 Upon completion, each test in the run will have its result
  /src/external/apache2/llvm/dist/clang/lib/AST/Interp/
Context.cpp 46 return Run(Parent, Func, Dummy);
113 bool Context::Run(State &Parent, Function *Func, APValue &Result) {
  /src/external/apache2/llvm/dist/llvm/lib/Support/
DeltaAlgorithm.cpp 104 DeltaAlgorithm::changeset_ty DeltaAlgorithm::Run(const changeset_ty &Changes) {
109 // Otherwise run the real delta algorithm.
DAGDeltaAlgorithm.cpp 131 assert(S.count(*it2) && "Attempt to run invalid changeset!");
141 changeset_ty Run();
309 DAGDeltaAlgorithmImpl::Run() {
329 changeset_ty CurrentMinSet = Helper.Run(CurrentSet);
358 DAGDeltaAlgorithm::Run(const changeset_ty &Changes,
360 return DAGDeltaAlgorithmImpl(*this, Changes, Dependencies).Run();
  /src/external/apache2/llvm/dist/llvm/utils/benchmark/src/
statistics.cc 78 std::vector<BenchmarkReporter::Run> ComputeStats(
79 const std::vector<BenchmarkReporter::Run>& reports) {
80 typedef BenchmarkReporter::Run Run;
81 std::vector<Run> results;
85 [](Run const& run) { return run.error_occurred; });
88 // We don't report aggregated data if there was a single run.
103 // All repetitions should be run with the same number of iterations so w
    [all...]
benchmark_register.cc 67 // benchmark identifies a family of related benchmarks to run.
143 // The benchmark will be run at least 'family_size' different inputs.
453 void FunctionBenchmark::Run(State& st) { func_(st); }
  /src/external/apache2/llvm/dist/llvm/utils/
update_mir_test_checks.py 76 class Run:
104 common.warn('Skipping unparseable RUN line: ' + l)
113 common.warn('Skipping non-llc RUN line: {}'.format(l), test_file=test)
116 common.warn('Skipping non-FileChecked RUN line: {}'.format(l),
140 run_list.append(Run(check_prefixes, cmd_args, triple))
145 for run in run_list:
146 run.prefixes = [p for p in run.prefixes if p not in common_prefixes]
189 for run in run_list:
190 for prefix in run.prefixes
    [all...]
  /src/external/apache2/llvm/dist/libcxx/utils/google-benchmark/test/
register_benchmark_test.cc 13 virtual void ReportRuns(const std::vector<Run>& report) {
18 std::vector<Run> all_runs_;
29 typedef benchmark::BenchmarkReporter::Run Run;
31 void CheckRun(Run const& run) const {
33 CHECK(name == run.benchmark_name()) << "expected " << name << " got "
34 << run.benchmark_name();
36 CHECK(run.report_label == label) << "expected " << label << " got "
37 << run.report_label
    [all...]
skip_with_error_test.cc 17 virtual void ReportRuns(const std::vector<Run>& report) {
25 mutable std::vector<Run> all_runs_;
33 typedef benchmark::BenchmarkReporter::Run Run;
35 void CheckRun(Run const& run) const {
36 CHECK(name == run.benchmark_name())
37 << "expected " << name << " got " << run.benchmark_name();
38 CHECK(error_occurred == run.error_occurred);
39 CHECK(error_message == run.error_message)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
ScheduleDAGSDNodes.cpp 53 /// Run - perform scheduling.
55 void ScheduleDAGSDNodes::Run(SelectionDAG *dag, MachineBasicBlock *bb) {
LegalizeVectorOps.cpp 174 bool Run();
179 bool VectorLegalizer::Run() {
200 // practice however, this causes us to run out of stack space on large basic
1542 return VectorLegalizer(*this).Run();
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/CodeView/
TypeIndexDiscovery.cpp 475 FixedStreamArray<TypeIndex> Run;
476 cantFail(Reader.readArray(Run, Ref.Count));
477 Indices.append(Run.begin(), Run.end());
  /src/external/apache2/llvm/dist/llvm/utils/benchmark/test/
register_benchmark_test.cc 13 virtual void ReportRuns(const std::vector<Run>& report) {
18 std::vector<Run> all_runs_;
29 typedef benchmark::BenchmarkReporter::Run Run;
31 void CheckRun(Run const& run) const {
32 CHECK(name == run.benchmark_name) << "expected " << name << " got "
33 << run.benchmark_name;
35 CHECK(run.report_label == label) << "expected " << label << " got "
36 << run.report_label
    [all...]
skip_with_error_test.cc 17 virtual void ReportRuns(const std::vector<Run>& report) {
25 mutable std::vector<Run> all_runs_;
33 typedef benchmark::BenchmarkReporter::Run Run;
35 void CheckRun(Run const& run) const {
36 CHECK(name == run.benchmark_name) << "expected " << name << " got "
37 << run.benchmark_name;
38 CHECK(error_occurred == run.error_occurred);
39 CHECK(error_message == run.error_message)
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/llvm-pdbutil/
LinePrinter.cpp 130 struct Run {
131 Run() = default;
132 explicit Run(uint32_t Block) : Block(Block) {}
138 static std::vector<Run> computeBlockRuns(uint32_t BlockSize,
140 std::vector<Run> Runs;
150 Run *CurrentRun = &Runs.back();
165 static std::pair<Run, uint32_t> findRun(uint32_t Offset, ArrayRef<Run> Runs) {
224 Run FoundRun;
  /src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/
sanitizer_stackdepot.cpp 10 // run-time libraries.
110 void Run();
137 reinterpret_cast<CompressThread *>(arg)->Run();
151 void CompressThread::Run() {
  /src/external/apache2/llvm/dist/llvm/lib/AsmParser/
LLParser.cpp 62 /// Run: module ::= toplevelentity*
63 bool LLParser::Run(bool UpgradeDebugInfo,
  /src/external/bsd/am-utils/dist/include/
am_utils.h 214 Run,
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGRecordLayoutBuilder.cpp 40 /// runs and allocated as a single storage type for the run. ASTRecordLayout
106 /// continuous run.
395 // Run stores the first element of the current run of bitfields. FieldEnd is
396 // used as a special value to note that we don't have a current run. A
397 // bitfield run is a contiguous collection of bitfields that can be stored in
399 // cross an alignment boundary break a run and start a new one.
400 RecordDecl::field_iterator Run = FieldEnd;
401 // Tail is the offset of the first bit off the end of the current run. It's
403 // contiguous. StartBitOffset is offset of the beginning of the Run
    [all...]
  /src/external/apache2/llvm/dist/llvm/utils/benchmark/include/benchmark/
benchmark.h 50 // one of the family of benchmarks to run. For example, the following
102 // arbitrary set of arguments to run the microbenchmark on.
130 Use `Benchmark::MinTime(double t)` to set the minimum time used to run the
136 BENCHMARK(BM_test)->MinTime(2.0); // Run for at least 2 seconds.
148 // Run the test as normal.
266 // of each matching benchmark. Otherwise run each matching benchmark and
437 // Returns iterators used to run each iteration of a benchmark using a
452 // Returns true iff the benchmark should run n more iterations.
497 // break from the loop, otherwise all future iterations will be run.
575 // Range arguments for this run. CHECKs if the argument has been set
    [all...]

Completed in 68 milliseconds

1 2