HomeSort by relevance Sort by last modified time
    Searched defs:bench (Results 1 - 25 of 26) sorted by null

1 2

  /external/compiler-rt/test/tsan/
bench_acquire_only.cc 4 #include "bench.h"
13 void bench() { function
bench_acquire_release.cc 4 #include "bench.h"
13 void bench() { function
bench_local_mutex.cc 4 #include "bench.h"
16 void bench() { function
bench_release_only.cc 4 #include "bench.h"
15 void bench() { function
bench_rwmutex.cc 4 #include "bench.h"
15 void bench() { function
bench_single_writer.cc 4 #include "bench.h"
18 void bench() { function
bench_mutex.cc 4 #include "bench.h"
21 void bench() { function
bench_ten_mutexes.cc 4 #include "bench.h"
19 void bench() { function
  /external/chromium_org/v8/test/mjsunit/regress/
regress-2185-2.js 122 function bench(name, array) { function
134 bench("random", random);
135 bench("up", asc);
136 bench("down", desc);
137 bench("saw 1000", saw1);
138 bench("saw 500", saw2);
139 bench("saw 200", saw3);
140 bench("saw 200 symmetric", saw4);
141 bench("saw 200 down", saw4);
142 bench("up, down", asc_desc)
    [all...]
  /external/eigen/bench/
quatmul.cpp 4 #include <bench/BenchTimer.h>
20 template<typename Quat> void bench(const std::string& label) function
32 BENCH(t, tries, rep, quatmul_default(a,b,c));
35 BENCH(t, tries, rep, quatmul_novec(a,b,c));
41 bench<Quaternionf>("float ");
42 bench<Quaterniond>("double");
benchFFT.cpp 12 #include <bench/BenchUtil.h>
44 void bench(int nfft,bool fwd,bool unscaled=false, bool halfspec=false) function
99 bench<complex<float> >(NFFT,true);
100 bench<complex<float> >(NFFT,false);
101 bench<float>(NFFT,true);
102 bench<float>(NFFT,false);
103 bench<float>(NFFT,false,true);
104 bench<float>(NFFT,false,true,true);
106 bench<complex<double> >(NFFT,true);
107 bench<complex<double> >(NFFT,false)
    [all...]
geometry.cpp 4 #include <bench/BenchTimer.h>
76 BENCH(timer,10,100000,transform(t,data));
90 EIGEN_DONT_INLINE void bench(const std::string& msg, const Transformation& t) function
118 bench("matrix 3x3", mat33);
119 bench("quaternion", quat);
120 bench("quat-mat ", quatmat);
121 bench("isometry3 ", iso3);
122 bench("affine3 ", aff3);
123 bench("c affine3 ", caff3);
124 bench("proj3 ", proj3)
    [all...]
  /external/eigen/bench/btl/generic_bench/
bench.hh 2 // File : bench.hh
41 BTL_DONT_INLINE void bench( int size_min, int size_max, int nb_point ) function
154 BTL_DONT_INLINE void bench( int size_min, int size_max, int nb_point ){ function
157 bench<Portable_Perf_Analyzer,Action>(size_min,size_max,nb_point);
159 // bench<Mixed_Perf_Analyzer,Action>(size_min,size_max,nb_point);
163 // bench<X86_Perf_Analyzer,Action>(size_min,size_max,nb_point);
164 // bench<STL_Perf_Analyzer,Action>(size_min,size_max,nb_point);
  /external/chromium_org/third_party/skia/bench/
ResultsWriter.h 7 * Classes for writing out bench results in various formats.
21 * Base class for writing out the bench results.
36 // Denote the start of a specific benchmark. Once bench is called,
38 virtual void bench(const char name[], int32_t x, int32_t y) {} function in class:ResultsWriter
40 // Record the specific configuration a bench is run under, such as "8888".
95 virtual void bench(const char name[], int32_t x, int32_t y) { function in class:NanoJSONResultsWriter
nanobench.cpp 49 help.printf("Number of times to run each bench. Set this to %d to auto-"
50 "tune for each bench. Timings are only reported when auto-tuning.",
57 DEFINE_int32(samples, 10, "Number of samples to measure for each bench.");
61 DEFINE_double(gpuMs, 5, "Target bench time in millseconds for GPU.");
68 "Try up to this many times to guess loops for a bench, or skip the bench.");
69 DEFINE_int32(maxLoops, 1000000, "Never run a bench more times than this.");
87 static double time(int loops, Benchmark* bench, SkCanvas* canvas, SkGLContextHelper* gl) {
93 if (bench) {
94 bench->draw(loops, canvas)
464 Benchmark* bench = fBenches->factory()(NULL); local
    [all...]
  /external/skia/tools/
bench_playback.cpp 28 DEFINE_string(match, "", "The usual filters on file names of SKPs to bench.");
66 static void bench(SkPMColor* scratch, SkPicture& src, const char* name) { function
146 bench(scratch.get(), *src, filename.c_str());
PictureResultsWriter.h 7 * Classes for writing out bench results in various formats.
22 * Base class for writing picture bench results.
31 virtual void bench(const char name[], int32_t x, int32_t y) = 0;
45 * This class allows bench data to be piped into multiple
57 virtual void bench(const char name[], int32_t x, int32_t y) { function in class:PictureResultsMultiWriter
59 fWriters[i]->bench(name, x, y);
110 virtual void bench(const char name[], int32_t x, int32_t y) { function in class:PictureResultsLoggerWriter
112 result.printf("running bench [%i %i] %s ", x, y, name);
182 virtual void bench(const char name[], int32_t x, int32_t y) { function in class:PictureJSONResultsWriter
  /external/skia/bench/
ResultsWriter.h 7 * Classes for writing out bench results in various formats.
21 * Base class for writing out the bench results.
30 // calling bench().
33 // Denotes the start of a specific benchmark. Once bench is called,
35 virtual void bench(const char name[], int32_t x, int32_t y) = 0;
37 // Records the specific configuration a bench is run under, such as "8888".
49 * bench results.
56 fLogger.logProgress("skia bench:");
61 virtual void bench(const char name[], int32_t x, int32_t y) { function in class:LoggerResultsWriter
63 "\nrunning bench [%3d %3d] %40s", x, y, name))
117 virtual void bench(const char name[], int32_t x, int32_t y) { function in class:JSONResultsWriter
163 virtual void bench(const char name[], int32_t x, int32_t y) { function in class:MultiResultsWriter
    [all...]
benchmain.cpp 217 DEFINE_string(outDir, "", "If given, image of each bench will be put in outDir.");
221 DEFINE_bool(rotate, false, "Rotate canvas before bench run?");
222 DEFINE_bool(scale, false, "Scale canvas before bench run?");
223 DEFINE_bool(clip, false, "Clip canvas before bench run?");
253 DEFINE_bool(runOnce, kIsDebug, "Run each bench exactly once and don't report timings.");
255 "Ratio of subsequent bench measurements must drop within 1±error to converge.");
261 // Has this bench converged? First arguments are milliseconds / loop iteration,
377 logger.logError("bench was run with --runOnce, so we're going to hide the times."
433 // Run each bench in each configuration it supports and we asked for.
435 Benchmark* bench; local
    [all...]
  /external/pixman/test/
prng-test.c 60 void bench (void) function
122 if (argc > 1 && strcmp(argv[1], "-bench") == 0)
124 bench ();
  /external/chromium_org/skia/ext/
image_operations_bench.cc 277 Benchmark bench; local
280 if (!bench.ParseArgs(command_line.Get())) {
285 if (!bench.Run()) {
  /external/chromium_org/ui/aura/bench/
bench_main.cc 350 scoped_ptr<BenchCompositorObserver> bench; local
352 if (command_line->HasSwitch("bench-software-scroll")) {
353 bench.reset(new SoftwareScrollBench(&page_background,
357 bench.reset(new WebGLBench(context_factory.get(),
  /system/extras/tests/memtest/
bandwidth.cpp 93 BandwidthBenchmark *bench = NULL; local
101 bench = new CopyLdrdStrdBenchmark();
103 bench = new CopyLdmiaStmiaBenchmark();
105 bench = new CopyVld1Vst1Benchmark();
107 bench = new CopyVldrVstrBenchmark();
109 bench = new CopyVldmiaVstmiaBenchmark();
111 bench = new MemcpyBenchmark();
113 bench = new WriteStrdBenchmark();
115 bench = new WriteStmiaBenchmark();
117 bench = new WriteVst1Benchmark()
174 BandwidthBenchmark *bench; member in struct:__anon63671
229 BandwidthBenchmark *bench = createBandwidthBenchmarkObject(*values); local
    [all...]
bandwidth.h 39 bench(_num_warm_loops);
42 bench(_num_loops);
84 virtual void bench(size_t num_loops) = 0;
142 bench(1);
151 bench(2);
176 void bench(size_t num_loops) { function in class:CopyLdrdStrdBenchmark
230 void bench(size_t num_loops) { function in class:CopyLdmiaStmiaBenchmark
271 void bench(size_t num_loops) { function in class:CopyVld1Vst1Benchmark
314 void bench(size_t num_loops) { function in class:CopyVldrVstrBenchmark
371 void bench(size_t num_loops) function in class:CopyVldmiaVstmiaBenchmark
409 void bench(size_t num_loops) { function in class:MemcpyBenchmark
493 void bench(size_t num_loops) { function in class:WriteStrdBenchmark
537 void bench(size_t num_loops) { function in class:WriteStmiaBenchmark
584 void bench(size_t num_loops) { function in class:WriteVst1Benchmark
629 void bench(size_t num_loops) { function in class:WriteVstrBenchmark
678 void bench(size_t num_loops) { function in class:WriteVstmiaBenchmark
720 void bench(size_t num_loops) { function in class:MemsetBenchmark
736 void bench(size_t num_loops) { function in class:ReadLdrdBenchmark
774 void bench(size_t num_loops) { function in class:ReadLdmiaBenchmark
810 void bench(size_t num_loops) { function in class:ReadVld1Benchmark
848 void bench(size_t num_loops) { function in class:ReadVldrBenchmark
891 void bench(size_t num_loops) { function in class:ReadVldmiaBenchmark
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/
AdtPlugin.java 339 IWorkbench bench = sPlugin.getWorkbench(); local
340 if (bench != null) {
341 Display display = bench.getDisplay();
    [all...]

Completed in 3754 milliseconds

1 2