Searched defs:bench (Results 1 - 23 of 23) sorted by last modified time

/external/skia/tools/
H A DPictureResultsWriter.h7 * 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
H A Dbench_playback.cpp28 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());
/external/skia/bench/
H A DResultsWriter.h7 * 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 [
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...]
H A Dbenchmain.cpp217 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/skia/dm/
H A DDMBenchTask.cpp8 SkString result("bench ");
55 static void draw_raster(Benchmark* bench, SkColorType colorType) { argument
57 AllocatePixels(colorType, bench->getSize().x(), bench->getSize().y(), &bitmap);
60 bench->preDraw();
61 bench->draw(1, &canvas);
/external/pixman/test/
H A Dprng-test.c60 void bench (void) function
122 if (argc > 1 && strcmp(argv[1], "-bench") == 0)
124 bench ();
/external/eigen/bench/
H A DbenchFFT.cpp12 #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<comple
[all...]
H A Dgeometry.cpp4 #include <bench/BenchTimer.h>
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);
H A Dquatmul.cpp4 #include <bench/BenchTimer.h>
20 template<typename Quat> void bench(const std::string& label) function
41 bench<Quaternionf>("float ");
42 bench<Quaterniond>("double");
/external/eigen/bench/btl/generic_bench/
H A Dbench.hh2 // 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/compiler-rt/test/tsan/
H A Dbench_acquire_only.cc4 #include "bench.h"
13 void bench() { function
H A Dbench_acquire_release.cc4 #include "bench.h"
13 void bench() { function
H A Dbench_local_mutex.cc4 #include "bench.h"
16 void bench() { function
H A Dbench_mutex.cc4 #include "bench.h"
21 void bench() { function
H A Dbench_release_only.cc4 #include "bench.h"
15 void bench() { function
H A Dbench_rwmutex.cc4 #include "bench.h"
15 void bench() { function
H A Dbench_single_writer.cc4 #include "bench.h"
18 void bench() { function
H A Dbench_ten_mutexes.cc4 #include "bench.h"
19 void bench() { function
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-2185-2.js122 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("u
[all...]
/external/chromium_org/third_party/skia/bench/
H A DResultsWriter.h7 * 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
H A Dnanobench.cpp49 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) { argument
93 if (bench) {
94 bench
160 cpu_bench(const double overhead, Benchmark* bench, SkCanvas* canvas, double* samples) argument
206 gpu_bench(SkGLContextHelper* gl, Benchmark* bench, SkCanvas* canvas, double* samples) argument
352 is_enabled(Benchmark* bench, const Config& config) argument
464 Benchmark* bench = fBenches->factory()(NULL); local
[all...]
/external/chromium_org/ui/aura/bench/
H A Dbench_main.cc350 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(),
/external/chromium_org/skia/ext/
H A Dimage_operations_bench.cc277 Benchmark bench; local
280 if (!bench.ParseArgs(command_line.Get())) {
285 if (!bench.Run()) {

Completed in 2402 milliseconds