Home
last modified time | relevance | path

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

12345678910>>...16

/llvm-project/third-party/benchmark/test/
H A Dregister_benchmark_test.cc13 void ReportRuns(const std::vector<Run>& report) override { in ReportRuns()
18 std::vector<Run> all_runs_;
29 typedef benchmark::BenchmarkReporter::Run Run; typedef
31 void CheckRun(Run const& run) const { in CheckRun()
151 typedef benchmark::BenchmarkReporter::Run Run; in RunTestOne() typedef
154 for (Run const& run : test_reporter.all_runs_) { in RunTestOne()
180 typedef benchmark::BenchmarkReporter::Run Run; in RunTestTwo() typedef
183 for (Run const& run : test_reporter.all_runs_) { in RunTestTwo()
H A Dskip_with_error_test.cc17 void ReportRuns(const std::vector<Run>& report) override { 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()
188 typedef benchmark::BenchmarkReporter::Run Run; in main() typedef
191 for (Run const& run : test_reporter.all_runs_) { in main()
/llvm-project/third-party/benchmark/src/
H A Dcomplexity.cc159 std::vector<BenchmarkReporter::Run> ComputeBigO( in ComputeBigO()
160 const std::vector<BenchmarkReporter::Run>& reports) { in ComputeBigO()
161 typedef BenchmarkReporter::Run Run; in ComputeBigO() typedef
162 std::vector<Run> results; in ComputeBigO()
172 for (const Run& run : reports) { in ComputeBigO()
209 Run big_o; in ComputeBigO()
213 big_o.run_type = BenchmarkReporter::Run::RT_Aggregate; in ComputeBigO()
215 big_o.repetition_index = Run::no_repetition_index; in ComputeBigO()
234 Run rms; in ComputeBigO()
238 rms.run_type = BenchmarkReporter::Run::RT_Aggregate; in ComputeBigO()
[all …]
H A Dstatistics.cc92 std::vector<BenchmarkReporter::Run> ComputeStats( in ComputeStats()
93 const std::vector<BenchmarkReporter::Run>& reports) { in ComputeStats()
94 typedef BenchmarkReporter::Run Run; in ComputeStats() typedef
95 std::vector<Run> results; in ComputeStats()
98 [](Run const& run) { return run.skipped; }); in ComputeStats()
121 for (Run const& r : reports) { in ComputeStats()
137 for (Run const& run : reports) { in ComputeStats()
165 Run data; in ComputeStats()
169 data.run_type = BenchmarkReporter::Run::RT_Aggregate; in ComputeStats()
172 data.repetition_index = Run::no_repetition_index; in ComputeStats()
H A Dconsole_reporter.cc61 void ConsoleReporter::PrintHeader(const Run& run) { in PrintHeader()
79 void ConsoleReporter::ReportRuns(const std::vector<Run>& reports) { in ReportRuns()
131 void ConsoleReporter::PrintRunData(const Run& result) { in PrintRunData()
165 } else if (result.run_type != Run::RT_Aggregate || in PrintRunData()
186 if (result.run_type == Run::RT_Aggregate && in PrintRunData()
H A Djson_reporter.cc201 void JSONReporter::ReportRuns(std::vector<Run> const& reports) { in ReportRuns()
228 void JSONReporter::PrintRunData(Run const& run) { in PrintRunData()
239 case BenchmarkReporter::Run::RT_Iteration: in PrintRunData()
241 case BenchmarkReporter::Run::RT_Aggregate: in PrintRunData()
247 if (run.run_type != BenchmarkReporter::Run::RT_Aggregate) { in PrintRunData()
252 if (run.run_type == BenchmarkReporter::Run::RT_Aggregate) { in PrintRunData()
273 if (run.run_type != Run::RT_Aggregate || in PrintRunData()
H A Dreporter.cc98 std::string BenchmarkReporter::Run::benchmark_name() const { in benchmark_name()
106 double BenchmarkReporter::Run::GetAdjustedRealTime() const { in GetAdjustedRealTime()
112 double BenchmarkReporter::Run::GetAdjustedCPUTime() const { in GetAdjustedCPUTime()
/llvm-project/lldb/unittests/Host/
H A DMainLoopTest.cpp78 ASSERT_TRUE(loop.Run().Success()); in TEST_F()
110 ASSERT_THAT_ERROR(loop.Run().ToError(), llvm::Succeeded()); in TEST_F()
129 ASSERT_TRUE(loop.Run().Success()); in TEST_F()
151 ASSERT_TRUE(loop.Run().Success()); in TEST_F()
178 ASSERT_TRUE(loop.Run().Success()); in TEST_F()
201 ASSERT_THAT_ERROR(loop.Run().ToError(), llvm::Succeeded()); in TEST_F()
218 ASSERT_TRUE(loop.Run().Success());
226 ASSERT_THAT_ERROR(loop.Run().takeError(), llvm::Succeeded()); in TEST_F()
245 ASSERT_THAT_ERROR(loop.Run().takeError(), llvm::Succeeded()); in TEST_F()
261 std::async(std::launch::async, &MainLoop::Run, st in TEST_F()
[all...]
/llvm-project/compiler-rt/test/asan/TestCases/Linux/
H A Dswapcontext_annotation.cpp117 int Run(int arg, int mode, char *child_stack) { in Run() function
228 ret += Run(argc - 1, 0, stack); in main()
231 ret += Run(argc - 1, 1, stack); in main()
234 ret += Run(argc - 1, 2, stack); in main()
239 ret += Run(argc - 1, 0, heap); in main()
240 ret += Run(argc - 1, 1, heap); in main()
241 ret += Run(argc - 1, 2, heap); in main()
H A Dswapcontext_test.cpp51 int Run(int arg, int mode, char *child_stack) { in Run() function
116 ret += Run(argc - 1, 0, stack); in main()
117 ret += Run(argc - 1, 1, stack); in main()
119 ret += Run(argc - 1, 0, heap); in main()
120 ret += Run(argc - 1, 1, heap); in main()
/llvm-project/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_lzw_test.cpp21 void Run(size_t n, Generator gen) { in Run() function
46 this->Run(sz, [&] { return v; }); in TYPED_TEST()
58 this->Run(sz, [&v] { return v++; }); in TYPED_TEST()
70 this->Run(sz, [&] { return v++ % i; }); in TYPED_TEST()
81 this->Run(sz, [&] { in TYPED_TEST()
/llvm-project/compiler-rt/test/fuzzer/
H A DOutOfProcessFuzzTarget.cpp51 static std::string *Run, *IN, *COV; variable
66 Run = new std::string("SANCOV_OUT=" + *COV + " " + TargetEnv + " " + *IN); in Initialize()
67 fprintf(stderr, "libFuzzer: OOP command: %s\n", Run->c_str()); in Initialize()
80 system(Run->c_str()); in LLVMFuzzerTestOneInput()
/llvm-project/clang/lib/Format/
H A DTokenAnalyzer.cpp116 for (unsigned Run = 0, RunE = UnwrappedLines.size(); Run + 1 != RunE; ++Run) { in process() local
117 const auto &Lines = UnwrappedLines[Run]; in process()
118 LLVM_DEBUG(llvm::dbgs() << "Run " << Run << "...\n"); in process()
133 llvm::dbgs() << "Replacements for run " << Run << ":\n"; in process()
/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DLinePrinter.cpp134 struct Run {
135 Run() = default; struct
136 explicit Run(uint32_t Block) : Block(Block) {}
142 static std::vector<Run> computeBlockRuns(uint32_t BlockSize,
144 std::vector<Run> Runs; in computeBlockRuns()
154 Run *CurrentRun = &Runs.back(); in computeBlockRuns()
170 static std::pair<Run, uint64_t> findRun(uint64_t Offset, ArrayRef<Run> Runs) {
229 Run FoundRun; in formatMsfStreamData()
137 Run__anonfbfe9bcc0311::Run Run() argument
138 Block__anonfbfe9bcc0311::Run global() argument
139 ByteLen__anonfbfe9bcc0311::Run global() argument
/llvm-project/flang/unittests/Evaluate/
H A Dfolding.cpp18 static void Run() { (..., Test::template Run<T>()); } in Run() function
23 template <typename T> static void Run() { in Run() function
83 RunOnTypes<TestGetScalarConstantValue, AllIntrinsicTypes>::Run(); in main()
/llvm-project/llvm/unittests/FuzzMutate/
H A DReservoirSamplerTest.cpp36 for (int Run = 0; Run < 3; ++Run) { in TEST() local
/llvm-project/mlir/test/
H A DCMakeLists.txt35 option(MLIR_RUN_AMX_TESTS "Run AMX tests.")
36 option(MLIR_RUN_X86VECTOR_TESTS "Run X86Vector tests.")
37 option(MLIR_RUN_CUDA_TENSOR_CORE_TESTS "Run CUDA Tensor core WMMA tests.")
38 option(MLIR_RUN_CUDA_SM80_TESTS "Run CUDA A100 tests.")
39 option(MLIR_RUN_CUDA_SM80_LT_TESTS "Run CUDA A100 structured sparsity tests.")
40 option(MLIR_RUN_CUDA_SM90_TESTS "Run CUDA H100 tests.")
41 option(MLIR_RUN_ARM_SVE_TESTS "Run Arm SVE tests.")
42 option(MLIR_RUN_ARM_SME_TESTS "Run Arm SME tests.")
/llvm-project/clang/test/Modules/
H A Dglobal_index.m2 // Run without global module index
5 // Run and create the global module index
8 // Run and use the global module index
/llvm-project/llvm/unittests/ADT/
H A DDAGDeltaAlgorithmTest.cpp71 EXPECT_EQ(fixed_set(4, 1, 3, 5, 7), FDA.Run(range(20), Deps)); in TEST()
90 EXPECT_EQ(fixed_set(4, 0, 1, 2, 3), FDA2.Run(range(5), Deps)); in TEST()
99 EXPECT_EQ(fixed_set(2, 0, 4), FDA3.Run(range(5), Deps)); in TEST()
H A DDeltaAlgorithmTest.cpp79 EXPECT_EQ(fixed_set(3, 3, 5, 7), FDA.Run(range(20))); in TEST()
84 EXPECT_EQ(range(10,20), FDA.Run(range(10,20))); in TEST()
94 EXPECT_EQ(range(4), FDA.Run(range(4))); in TEST()
/llvm-project/clang-tools-extra/clangd/index/
H A DBackground.h73 explicit Task(std::function<void()> Run) : Run(std::move(Run)) {} in Task()
75 std::function<void()> Run; member
/llvm-project/libc/test/UnitTest/
H A DLibcTest.h225 virtual void Run() = 0;
351 void Run() override; \
356 template <typename T> void SuiteName##_##TestName<T>::Run()
371 void Run() override; \
376 template <typename T> void SuiteClass##_##TestName<T>::Run()
384 void Run() override; \
388 void SuiteName##_##TestName::Run()
397 void Run() override; \
401 void SuiteClass##_##TestName::Run()
/llvm-project/clang/test/CodeGenCXX/
H A Dmicrosoft-abi-member-pointers-debug-info.cpp4 virtual void Run() = 0;
7 auto b = &Task::Run;
/llvm-project/libc/src/math/docs/
H A Dadd_math_function.md139 ## Build and Run
163 - Run all unit tests:
168 - Run math smoke tests only:
173 - Run math smoke and unit tests:
178 - Build and Run a specific unit test:
184 - Build and Run exhaustive test (might take hours to run):
190 - Build and Run performance test:
/llvm-project/llvm/test/Analysis/LoopAccessAnalysis/
H A Dinvariant-dependence-before.ll9 ; CHECK-NEXT: Run-time memory checks:
39 ; CHECK-NEXT: Run-time memory checks:
74 ; CHECK-NEXT: Run-time memory checks:
109 ; CHECK-NEXT: Run-time memory checks:
139 ; CHECK-NEXT: Run-time memory checks:
175 ; CHECK-NEXT: Run-time memory checks:
206 ; CHECK-NEXT: Run-time memory checks:
236 ; CHECK-NEXT: Run-time memory checks:
272 ; CHECK-NEXT: Run-time memory checks:
307 ; CHECK-NEXT: Run
[all...]

12345678910>>...16