OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Run
(Results
1 - 25
of
176
) sorted by relevancy
1
2
3
4
5
6
7
8
/src/external/apache2/llvm/dist/libcxx/utils/google-benchmark/src/
benchmark_runner.h
36
std::vector<BenchmarkReporter::
Run
> non_aggregates;
37
std::vector<BenchmarkReporter::
Run
> aggregates_only;
45
std::vector<BenchmarkReporter::
Run
>* complexity_reports);
benchmark_api_internal.cc
6
State BenchmarkInstance::
Run
(
10
benchmark->
Run
(st);
complexity.h
30
std::vector<BenchmarkReporter::
Run
> ComputeBigO(
31
const std::vector<BenchmarkReporter::
Run
>& reports);
statistics.h
28
std::vector<BenchmarkReporter::
Run
> ComputeStats(
29
const std::vector<BenchmarkReporter::
Run
>& reports);
complexity.cc
155
std::vector<BenchmarkReporter::
Run
> ComputeBigO(
156
const std::vector<BenchmarkReporter::
Run
>& reports) {
157
typedef BenchmarkReporter::
Run
Run
;
158
std::vector<
Run
> results;
168
for (const
Run
&
run
: reports) {
169
CHECK_GT(
run
.complexity_n, 0) << "Did you forget to call SetComplexityN?";
170
n.push_back(
run
.complexity_n);
171
real_time.push_back(
run
.real_accumulated_time / run.iterations)
[
all
...]
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
...]
reporter.cc
45
Out << "
Run
on (" << info.num_cpus << " X "
85
std::string BenchmarkReporter::
Run
::benchmark_name() const {
93
double BenchmarkReporter::
Run
::GetAdjustedRealTime() const {
99
double BenchmarkReporter::
Run
::GetAdjustedCPUTime() const {
benchmark_api_internal.h
17
// Information kept per benchmark we may want to
run
37
State
Run
(size_t iters, int thread_id, internal::ThreadTimer* timer,
/src/external/apache2/llvm/dist/llvm/utils/benchmark/src/
complexity.h
30
std::vector<BenchmarkReporter::
Run
> ComputeBigO(
31
const std::vector<BenchmarkReporter::
Run
>& reports);
statistics.h
28
std::vector<BenchmarkReporter::
Run
> ComputeStats(
29
const std::vector<BenchmarkReporter::
Run
>& reports);
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
...]
complexity.cc
152
std::vector<BenchmarkReporter::
Run
> ComputeBigO(
153
const std::vector<BenchmarkReporter::
Run
>& reports) {
154
typedef BenchmarkReporter::
Run
Run
;
155
std::vector<
Run
> results;
165
for (const
Run
&
run
: reports) {
166
CHECK_GT(
run
.complexity_n, 0) << "Did you forget to call SetComplexityN?";
167
n.push_back(
run
.complexity_n);
168
real_time.push_back(
run
.real_accumulated_time / run.iterations)
[
all
...]
reporter.cc
44
Out << "
Run
on (" << info.num_cpus << " X "
75
double BenchmarkReporter::
Run
::GetAdjustedRealTime() const {
81
double BenchmarkReporter::
Run
::GetAdjustedCPUTime() const {
/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/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/clang/lib/Format/
TokenAnalyzer.cpp
80
for (unsigned
Run
= 0, RunE = UnwrappedLines.size();
Run
+ 1 != RunE; ++
Run
) {
81
LLVM_DEBUG(llvm::dbgs() << "
Run
" <<
Run
<< "...\n");
85
for (unsigned i = 0, e = UnwrappedLines[
Run
].size(); i != e; ++i) {
86
AnnotatedLines.push_back(new AnnotatedLine(UnwrappedLines[
Run
][i]));
94
llvm::dbgs() << "Replacements for
run
" <<
Run
<< ":\n";
/src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
DAGDeltaAlgorithm.h
34
/// is not required to satisfy this property, but the algorithm will
run
52
///
Run
- Minimize the DAG formed by the \p Changes vertices and the
64
changeset_ty
Run
(const changeset_ty &Changes,
DeltaAlgorithm.h
33
/// results. However, it may
run
substantially more tests than with a good
84
///
Run
- Minimize the set \p Changes by executing \see ExecuteOneTest() on
87
changeset_ty
Run
(const changeset_ty &Changes);
/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/gpl3/gdb/dist/sim/testsuite/bfin/
events.s
8
#
Run
enough instructions to trigger event processing
/src/external/gpl3/gdb.old/dist/sim/testsuite/bfin/
events.s
8
#
Run
enough instructions to trigger event processing
/src/share/mk/
bsd.buildinstall.mk
8
#
Run
"make dependall && make install" for all subdirectories in a group
Completed in 27 milliseconds
1
2
3
4
5
6
7
8
Indexes created Tue Apr 21 00:23:25 UTC 2026