HomeSort by relevance Sort by last modified time
    Searched refs:benchmark (Results 201 - 225 of 400) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/google-benchmark/test/
output_test.h 12 #include "benchmark/benchmark.h"
35 std::shared_ptr<benchmark::Regex> regex;
  /external/libcxx/utils/google-benchmark/src/
commandlineflags.h 25 namespace benchmark { namespace
77 } // end namespace benchmark
  /external/libcxx/utils/google-benchmark/test/
output_test.h 12 #include "benchmark/benchmark.h"
35 std::shared_ptr<benchmark::Regex> regex;
  /external/okhttp/benchmarks/src/main/java/com/squareup/okhttp/benchmarks/
NettyHttpClient.java 63 @Override public void prepare(final Benchmark benchmark) {
64 this.concurrencyLevel = benchmark.concurrencyLevel;
65 this.targetBacklog = benchmark.targetBacklog;
71 if (benchmark.tls) {
  /external/toolchain-utils/crosperf/
experiment_factory_unittest.py 20 import benchmark
28 benchmark: PageCycler {
75 self.assertTrue(type(bench_list[0]) is benchmark.Benchmark)
83 self.assertTrue(type(bench_list[0]) is benchmark.Benchmark)
91 self.assertTrue(type(bench_list[0]) is benchmark.Benchmark)
help.py 55 benchmark: page_cycler_v2.morejs {
74 which benchmark will run on each device.
76 We define one "benchmark" that will be run, page_cycler_v2.morejs. This
77 benchmark has two "fields", one which specifies that this benchmark is
83 page_cycler_v2.morejs benchmark will be run on each of these images 3
94 Benchmark Fields
102 Note that global fields are overidden by label or benchmark fields, if
suite_runner_unittest.py 18 from benchmark import Benchmark
35 telemetry_crosperf_bench = Benchmark(
45 test_that_bench = Benchmark(
53 telemetry_bench = Benchmark(
103 def FakeTelemetryRun(machine, test_label, benchmark, profiler_args):
104 self.telemetry_run_args = [machine, test_label, benchmark, profiler_args]
108 def FakeTelemetryCrosperfRun(machine, test_label, benchmark, test_args,
111 machine, test_label, benchmark, test_args, profiler_args
116 def FakeTestThatRun(machine, test_label, benchmark, test_args
    [all...]
  /prebuilts/go/darwin-x86/src/testing/
benchmark_test.go 67 testing.Benchmark(func(b *testing.B) {
87 testing.Benchmark(func(b *testing.B) {
90 // w/o crashing/deadlocking the whole benchmark.
98 // Parallel benchmark for text/template.Template.Execute on a single object.
99 testing.Benchmark(func(b *testing.B) {
  /prebuilts/go/linux-x86/src/testing/
benchmark_test.go 67 testing.Benchmark(func(b *testing.B) {
87 testing.Benchmark(func(b *testing.B) {
90 // w/o crashing/deadlocking the whole benchmark.
98 // Parallel benchmark for text/template.Template.Execute on a single object.
99 testing.Benchmark(func(b *testing.B) {
  /external/chromium-trace/catapult/telemetry/telemetry/
benchmark_runner.py 7 Handles benchmark configuration, but all the logic for
8 actually running the benchmark is in Benchmark and PageRunner."""
16 from telemetry import benchmark
48 return (issubclass(benchmark_class, benchmark.Benchmark) and
68 (b for b in benchmarks if not issubclass(b, benchmark.Benchmark)), None)
70 '|benchmarks| param contains non benchmark class: %s' % bad_benchmark)
72 # Align the benchmark names to the longest one
    [all...]
  /build/kati/testcase/
parse_benchcmp.go 90 fmt.Println("Run benchmark on master and ", curBranch)
96 fmt.Println("running benchmark tests...")
104 fmt.Println("running benchmark tests...")
  /external/caliper/caliper/src/main/java/com/google/caliper/runner/
RuntimeInstrument.java 30 import com.google.caliper.Benchmark;
63 * The instrument responsible for measuring the runtime of {@link Benchmark} methods.
82 return method.isAnnotationPresent(Benchmark.class)
100 throw new InvalidBenchmarkException("Benchmark methods must not be static: %s",
115 throw new InvalidBenchmarkException("Benchmark methods must have no arguments or accept "
126 public void dryRun(Object benchmark) throws UserCodeException {
133 beforeRepMethod.invoke(benchmark);
136 benchmarkMethod.invoke(benchmark);
139 afterRepMethod.invoke(benchmark);
179 @Override public void dryRun(Object benchmark) throws UserCodeException
    [all...]
ArbitraryMeasurementInstrument.java 42 * Instrument for taking an arbitrary measurement. When using this instrument, the benchmark code
91 public void dryRun(Object benchmark) throws InvalidBenchmarkException {
93 benchmarkMethod.invoke(benchmark);
  /system/core/logd/tests/
logd_test.cpp 109 char* benchmark = NULL; local
113 benchmark = strstr(cp, signature);
114 if (!benchmark) {
117 cp = benchmark + sizeof(signature);
121 benchmark = cp;
123 char* end = strstr(benchmark, "\n");
125 end = benchmark + strlen(benchmark);
128 (int)(end - benchmark), benchmark);
    [all...]
  /external/chromium-trace/catapult/telemetry/telemetry/internal/results/
legacy_html_output_formatter_unittest.py 9 from telemetry import benchmark
37 class FakeMetadataForTest(benchmark.BenchmarkMetadata):
  /external/chromium-trace/catapult/telemetry/telemetry/testing/
page_test_test_case.py 9 from telemetry import benchmark
29 class EmptyMetadataForTest(benchmark.BenchmarkMetadata):
  /external/ltp/testcases/kernel/power_management/
README 82 Refer to README in LTPROOT/utils/benchmark/ebizzy-0.2 directory for details of ebizzy.
  /prebuilts/go/darwin-x86/src/crypto/rc4/
rc4_test.go 150 func benchmark(b *testing.B, size int64) { func
164 benchmark(b, 128)
168 benchmark(b, 1024)
172 benchmark(b, 8096)
  /prebuilts/go/darwin-x86/src/go/printer/
performance_test.go 5 // This file implements a simple printer performance benchmark:
  /prebuilts/go/darwin-x86/test/bench/go1/
fannkuch_test.go 5 // This benchmark, taken from the shootout, tests array indexing
fmt_test.go 7 // benchmark based on fmt/fmt_test.go
gzip_test.go 5 // This benchmark tests gzip and gunzip performance.
  /prebuilts/go/linux-x86/src/crypto/rc4/
rc4_test.go 150 func benchmark(b *testing.B, size int64) { func
164 benchmark(b, 128)
168 benchmark(b, 1024)
172 benchmark(b, 8096)
  /prebuilts/go/linux-x86/src/go/printer/
performance_test.go 5 // This file implements a simple printer performance benchmark:
  /prebuilts/go/linux-x86/test/bench/go1/
fannkuch_test.go 5 // This benchmark, taken from the shootout, tests array indexing

Completed in 430 milliseconds

1 2 3 4 5 6 7 891011>>