Home
last modified time | relevance | path

Searched refs:Benchmark (Results 1 – 25 of 46) sorted by relevance

12

/openbsd/src/gnu/llvm/compiler-rt/lib/tsan/tests/rtl/
Dtsan_bench.cpp24 static void Benchmark() { in Benchmark() function
35 Benchmark<uint8_t, noinstr>(); in TEST()
39 Benchmark<uint8_t, __tsan_read1>(); in TEST()
43 Benchmark<uint8_t, __tsan_write1>(); in TEST()
47 Benchmark<uint16_t, noinstr>(); in TEST()
51 Benchmark<uint16_t, __tsan_read2>(); in TEST()
55 Benchmark<uint16_t, __tsan_write2>(); in TEST()
59 Benchmark<uint32_t, noinstr>(); in TEST()
63 Benchmark<uint32_t, __tsan_read4>(); in TEST()
67 Benchmark<uint32_t, __tsan_write4>(); in TEST()
[all …]
/openbsd/src/gnu/usr.bin/perl/cpan/Test-Harness/lib/TAP/Parser/
DAggregator.pm5 use Benchmark;
202 $self->{start_time} = Benchmark->new;
213 $self->{end_time} = Benchmark->new;
/openbsd/src/gnu/usr.bin/perl/lib/
DBenchmark.t13 use Benchmark qw(:all);
126 my $t0 = new Benchmark;
191 my $t1 = new Benchmark;
636 Benchmark->debug(1);
647 Benchmark->debug(0);
662 my @before_keys = keys %Benchmark::Cache;
666 my @after5_keys = keys %Benchmark::Cache;
670 cmp_ok (scalar keys %Benchmark::Cache, '>', scalar @after5_keys, "10 differs from 5");
674 is_deeply ([keys %Benchmark::Cache], \@after5_keys,
678 is_deeply ([keys %Benchmark::Cache], \@before_keys,
[all …]
DBenchmark.pm1 package Benchmark; package
509 Benchmark->export_to_level(1, $class, @_);
716 my $tbase = Benchmark->new(0)->[1];
718 while ( ( $t0 = Benchmark->new(0) )->[1] == $tbase ) {
723 $t1 = Benchmark->new($n);
792 my $t0 = Benchmark->new(0);
794 my $t1 = Benchmark->new(0);
/openbsd/src/gnu/llvm/libcxx/benchmarks/
DCMakeLists.txt10 # Build Google Benchmark for libc++
50 # Build Google Benchmark for the native stdlib
76 # Benchmark tests configuration
157 # Register Benchmark tests
208 message(STATUS "Adding Benchmark: ${test_file}")
/openbsd/src/gnu/usr.bin/perl/t/benchmark/
Dgh7094-speed-up-keys-on-empty-hash.t3 use Benchmark;
/openbsd/src/gnu/usr.bin/perl/cpan/parent/t/
Drt62341.t.disabled3 use Benchmark qw/cmpthese/;
/openbsd/src/gnu/llvm/llvm/tools/llvm-exegesis/lib/
DBenchmarkResult.cpp347 InstructionBenchmark Benchmark; in readYaml() local
349 yaml::yamlize(Yin, Benchmark, /*unused*/ true, Context); in readYaml()
352 return std::move(Benchmark); in readYaml()
/openbsd/src/gnu/llvm/libcxx/docs/
DTestingLibcxx.rst130 The benchmarks are written using the `Google Benchmark`_ library, a copy of which
133 For more information about using the Google Benchmark library see the
136 .. _`Google Benchmark`: https://github.com/google/benchmark
180 For more information about running benchmarks see `Google Benchmark`_.
DBuildingLibcxx.rst388 Build the libc++ benchmark tests and the Google Benchmark library needed
406 Build the libc++ benchmark tests and Google Benchmark library against the
/openbsd/src/gnu/usr.bin/perl/cpan/Encode/t/
Dunibench.pl5 use Benchmark qw(:all);
/openbsd/src/gnu/llvm/clang/utils/analyzer/
DSATest.py86 from SATestBenchmark import Benchmark
89 benchmark = Benchmark(projects, args.iterations, args.output)
DSATestBenchmark.py33 class Benchmark: class
/openbsd/src/gnu/usr.bin/perl/pod/
Dperlperf.pod33 C<Benchmark> or C<Devel::NYTProf> modules, or something similar, for this step,
123 comparative code in a file and running a C<Benchmark> test.
131 use Benchmark;
157 output by the C<Benchmark> module, to see which approach is the most effective.
161 Benchmark: timing 1000000 iterations of dereference, direct...
197 use Benchmark;
210 Benchmark: timing 1000000 iterations of sr, tr...
217 Check the C<Benchmark> docs for further useful techniques.
998 use Benchmark;
1019 Let's see what C<Benchmark> makes of this:
[all …]
Dperl584delta.pod83 =item Benchmark
Dperl56delta.pod822 =item Benchmark
824 Overall, Benchmark results exhibit lower average error and better timing
833 use Benchmark;$x=3;timethese(-5,{a=>sub{$x*$x},b=>sub{$x**2}})
837 Benchmark: running a, b, each for at least 5 CPU seconds...
844 timethese() now returns a reference to a hash of Benchmark objects containing
847 timethis() now returns the iterations field in the Benchmark result object
860 For other details, see L<Benchmark>.
Dperl561delta.pod1420 =item Benchmark
1422 Overall, Benchmark results exhibit lower average error and better timing
1431 use Benchmark;$x=3;timethese(-5,{a=>sub{$x*$x},b=>sub{$x**2}})
1435 Benchmark: running a, b, each for at least 5 CPU seconds...
1442 timethese() now returns a reference to a hash of Benchmark objects containing
1445 timethis() now returns the iterations field in the Benchmark result object
1458 For other details, see L<Benchmark>.
/openbsd/src/regress/usr.bin/make/
Dmk1682 Benchmark 3p lib/Benchmark.pm \
/openbsd/src/gnu/llvm/llvm/docs/Proposals/
DTestSuite.rst95 A Benchmark for the C/C++ Standard Library
/openbsd/src/gnu/usr.bin/perl/cpan/Pod-Simple/t/
Dperlfaq.pod77 (or separately on CPAN) and also use Benchmark.pm from the standard
78 distribution. The Benchmark module lets you time specific portions of
82 Here's a sample use of Benchmark:
84 use Benchmark;
103 Benchmark: timing 10000 iterations of for, map...
Dperlfaqo.txt34 …tribution (or separately on CPAN) and also use Benchmark.pm from the standard distribution. The Be…
35 Here's a sample use of Benchmark:
36 use Benchmark;
50 Benchmark: timing 10000 iterations of for, map...
/openbsd/src/gnu/llvm/compiler-rt/lib/asan/tests/
DCMakeLists.txt235 AsanBenchmarks "Asan-${arch}${TEST_KIND}-Benchmark"
/openbsd/src/gnu/usr.bin/perl/t/porting/
Dknown_pod_issues.dat40 Benchmark::Perl::Formance
/openbsd/src/gnu/usr.bin/perl/
DREADME.qnx136 lib/Benchmark......................FAILED at test 26
/openbsd/src/gnu/llvm/llvm/docs/CommandGuide/
Dllvm-exegesis.rst1 llvm-exegesis - LLVM Machine Instruction Benchmark

12