| /openbsd-src/gnu/llvm/compiler-rt/lib/tsan/tests/rtl/ |
| H A D | tsan_bench.cpp | 24 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/ |
| H A D | Aggregator.pm | 5 use Benchmark; 202 $self->{start_time} = Benchmark->new; 213 $self->{end_time} = Benchmark->new; 218 Elapsed returns a L<Benchmark> object that represents the running time 238 C<elapsed()>. This lets the caller not worry about Benchmark.
|
| /openbsd-src/gnu/usr.bin/perl/lib/ |
| H A D | Benchmark.t | 13 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 …]
|
| H A D | Benchmark.pm | 1 package Benchmark; package 8 Benchmark - benchmark running times of Perl code 12 use Benchmark qw(:all) ; 57 use Benchmark ':hireswallclock'; 61 The Benchmark module encapsulates a number of routines to help you 83 use Benchmark; 84 $t0 = Benchmark->new; 86 $t1 = Benchmark->new; 92 Enables or disable debugging by setting the C<$Benchmark::Debug> flag: 94 Benchmark [all...] |
| /openbsd-src/gnu/llvm/libcxx/benchmarks/ |
| H A D | CMakeLists.txt | 10 # 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/ |
| H A D | gh7094-speed-up-keys-on-empty-hash.t | 3 use Benchmark;
|
| /openbsd-src/gnu/usr.bin/perl/cpan/parent/t/ |
| H A D | rt62341.t.disabled | 3 use Benchmark qw/cmpthese/;
|
| /openbsd-src/gnu/llvm/llvm/tools/llvm-exegesis/lib/ |
| H A D | BenchmarkResult.cpp | 347 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/ |
| H A D | TestingLibcxx.rst | 130 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`_.
|
| H A D | BuildingLibcxx.rst | 388 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/ |
| H A D | unibench.pl | 5 use Benchmark qw(:all);
|
| /openbsd-src/gnu/llvm/clang/utils/analyzer/ |
| H A D | SATest.py | 86 from SATestBenchmark import Benchmark 89 benchmark = Benchmark(projects, args.iterations, args.output)
|
| H A D | SATestBenchmark.py | 33 class Benchmark: class
|
| /openbsd-src/gnu/usr.bin/perl/pod/ |
| H A D | perlperf.pod | 33 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> make [all...] |
| H A D | perl584delta.pod | 83 =item Benchmark
|
| H A D | perl56delta.pod | 822 =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>.
|
| H A D | perl561delta.pod | 1420 =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/ |
| H A D | mk16 | 82 Benchmark 3p lib/Benchmark.pm \
|
| /openbsd-src/gnu/llvm/llvm/docs/Proposals/ |
| H A D | TestSuite.rst | 95 A Benchmark for the C/C++ Standard Library
|
| /openbsd-src/gnu/usr.bin/perl/cpan/Pod-Simple/t/ |
| H A D | perlfaq.pod | 77 (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...
|
| H A D | perlfaqo.txt | 34 …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/ |
| H A D | CMakeLists.txt | 235 AsanBenchmarks "Asan-${arch}${TEST_KIND}-Benchmark"
|
| /openbsd-src/gnu/usr.bin/perl/t/porting/ |
| H A D | known_pod_issues.dat | 40 Benchmark::Perl::Formance
|
| /openbsd-src/gnu/usr.bin/perl/ |
| H A D | README.qnx | 136 lib/Benchmark......................FAILED at test 26
|
| /openbsd-src/gnu/llvm/llvm/docs/CommandGuide/ |
| H A D | llvm-exegesis.rst | 1 llvm-exegesis - LLVM Machine Instruction Benchmark
|