HomeSort by relevance Sort by last modified time
    Searched defs:Benchmark (Results 1 - 7 of 7) sorted by null

  /bionic/tests/
benchmark.h 23 class Benchmark {
25 Benchmark(const char* name, void (*fn)(int)) {
29 Benchmark(const char* name, void (*fn_range)(int, int)) {
33 Benchmark* Arg(int x);
59 #define BENCHMARK(f) \
60 static ::testing::Benchmark* _benchmark_##f __attribute__((unused)) = \
61 (new ::testing::Benchmark(#f, f))
  /external/compiler-rt/lib/tsan/tests/rtl/
tsan_bench.cc 25 static void Benchmark() {
36 Benchmark<uint8_t, noinstr>();
40 Benchmark<uint8_t, __tsan_read1>();
44 Benchmark<uint8_t, __tsan_write1>();
48 Benchmark<uint16_t, noinstr>();
52 Benchmark<uint16_t, __tsan_read2>();
56 Benchmark<uint16_t, __tsan_write2>();
60 Benchmark<uint32_t, noinstr>();
64 Benchmark<uint32_t, __tsan_read4>();
68 Benchmark<uint32_t, __tsan_write4>()
    [all...]
  /external/regex-re2/util/
benchmark.h 9 struct Benchmark {
19 Benchmark(const char* name, void (*f)(int)) { Clear(name); fn = f; Register(); }
20 Benchmark(const char* name, void (*f)(int, int), int l, int h) { Clear(name); fnr = f; lo = l; hi = h; Register(); }
22 Benchmark* ThreadRange(int lo, int hi) { threadlo = lo; threadhi = hi; return this; }
34 #define BENCHMARK(f) \
35 ::testing::Benchmark* _benchmark_##f = (new ::testing::Benchmark(#f, f))
38 ::testing::Benchmark* _benchmark_##f = \
39 (new ::testing::Benchmark(#f, f, lo, hi))
  /frameworks/rs/java/tests/ComputeBenchmark/src/com/example/android/rs/computebench/
Benchmark.java 22 public class Benchmark implements Runnable {
26 public Benchmark(RenderScript rs, Resources res) {
36 android.util.Log.v("ComputeBench", "Total benchmark took " + t + " ms");
  /frameworks/rs/java/tests/LatencyBenchmark/src/com/example/android/rs/computebench/
Benchmark.java 22 public class Benchmark implements Runnable {
28 public Benchmark(RenderScript rs, Resources res) {
  /external/v8/benchmarks/
base.js 29 // Simple framework for running the benchmark suites and
33 // A benchmark has a name (string) and a function that will be run to
36 // running the benchmark, but the running time of these functions will
37 // not be accounted for in the benchmark score.
38 function Benchmark(name, run, setup, tearDown) {
46 // Benchmark results hold the benchmark and the measured time used to
47 // run the benchmark. The benchmark score is computed later once a
48 // full benchmark suite has run to completion
    [all...]
  /libcore/benchmarks/libs/
caliper.jar 

Completed in 300 milliseconds