HomeSort by relevance Sort by last modified time
    Searched refs:bench (Results 26 - 50 of 89) sorted by null

12 3 4

  /external/compiler-rt/test/tsan/
bench_mutex.cc 4 #include "bench.h"
21 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_release_only.cc 4 #include "bench.h"
15 void bench() { function
bench_ten_mutexes.cc 4 #include "bench.h"
19 void bench() { function
bench_local_mutex.cc 4 #include "bench.h"
16 void bench() { function
bench.h 13 void bench(); // defined by user
36 bench();
  /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");
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/chromium_org/third_party/skia/bench/
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...]
bench_util.py 11 # bench representation algorithm constant names
19 SETTINGS_RE = 'skia bench:((?:\s+' + PER_SETTING_RE + ')*)'
20 BENCH_RE = 'running bench (?:\[\d+ \d+\] )?\s*(\S+)'
24 # per-tile bench lines are in the following format. Note that there are
25 # non-averaged bench numbers in separate lines, which we ignore now due to
41 """A single data point produced by bench.
43 def __init__(self, bench, config, time_type, time, settings,
46 self.bench = bench
51 # float number of the bench time valu
    [all...]
check_bench_regressions.py 21 # Indices for getting elements from bench expectation files.
31 # URL prefix for the bench dashboard page. Showing recent 15 days of data.
37 print '-a <representation_alg> bench representation algorithm to use. '
39 print '-b <builder> name of the builder whose bench data we are checking.'
41 print '-e <file> file containing expected bench builder values/ranges.'
42 print ' Will raise exception if actual bench values are out of range.'
45 print ' bench values.'
52 def __init__(self, bench, config, time_type, settings):
53 self.bench = bench
    [all...]
tile_analyze.py 6 """ Analyze per-tile and viewport bench data, and output visualized results.
34 Note: to read bench data stored in Google Storage, you will need to set up the
40 tile benchmarks for each available picture bench, and output visualization and
52 # Bench representation algorithm flag.
56 # Bench representation algorithm. See trunk/bench/bench_util.py.
59 # Constants for bench file matching.
87 """Reads in bench files of interest into a dictionary.
89 If bench_dir is not empty, tries to read in local bench files; otherwise check
91 non-tile, non-viewport bench files
    [all...]
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
gen_bench_expectations.py 6 """ Generate bench_expectations file from a given set of bench data files. """
16 # Parameters for calculating bench ranges.
23 # List of bench configs to monitor. Ignore all other configs.
32 # of 3 strings, corresponding to the substrings of [bench, config, builder] to
33 # search for. A bench expectations line is excluded when each of the 3 strings
44 """Given a list of bench numbers, calculate the alert range.
47 benches: a list of float bench values.
48 more_benches: a tuple of lists of additional bench values.
51 bench results.
66 """Convert list of bench data points into a dictionary of expectations data
    [all...]
  /external/skia/bench/
bench_util.py 11 # bench representation algorithm constant names
19 SETTINGS_RE = 'skia bench:((?:\s+' + PER_SETTING_RE + ')*)'
20 BENCH_RE = 'running bench (?:\[\d+ \d+\] )?\s*(\S+)'
24 # per-tile bench lines are in the following format. Note that there are
25 # non-averaged bench numbers in separate lines, which we ignore now due to
41 """A single data point produced by bench.
43 def __init__(self, bench, config, time_type, time, settings,
46 self.bench = bench
51 # float number of the bench time valu
    [all...]
check_bench_regressions.py 21 # Indices for getting elements from bench expectation files.
31 # URL prefix for the bench dashboard page. Showing recent 15 days of data.
37 print '-a <representation_alg> bench representation algorithm to use. '
39 print '-b <builder> name of the builder whose bench data we are checking.'
41 print '-e <file> file containing expected bench builder values/ranges.'
42 print ' Will raise exception if actual bench values are out of range.'
45 print ' bench values.'
52 def __init__(self, bench, config, time_type, settings):
53 self.bench = bench
    [all...]
tile_analyze.py 6 """ Analyze per-tile and viewport bench data, and output visualized results.
34 Note: to read bench data stored in Google Storage, you will need to set up the
40 tile benchmarks for each available picture bench, and output visualization and
52 # Bench representation algorithm flag.
56 # Bench representation algorithm. See trunk/bench/bench_util.py.
59 # Constants for bench file matching.
87 """Reads in bench files of interest into a dictionary.
89 If bench_dir is not empty, tries to read in local bench files; otherwise check
91 non-tile, non-viewport bench files
    [all...]
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...]
gen_bench_expectations.py 6 """ Generate bench_expectations file from a given set of bench data files. """
16 # Parameters for calculating bench ranges.
23 # List of bench configs to monitor. Ignore all other configs.
32 # of 3 strings, corresponding to the substrings of [bench, config, builder] to
33 # search for. A bench expectations line is excluded when each of the 3 strings
44 """Given a list of bench numbers, calculate the alert range.
47 benches: a list of float bench values.
48 more_benches: a tuple of lists of additional bench values.
51 bench results.
66 """Convert list of bench data points into a dictionary of expectations data
    [all...]
  /external/skia/dm/
DMBenchTask.cpp 8 SkString result("bench ");
55 static void draw_raster(Benchmark* bench, SkColorType colorType) {
57 AllocatePixels(colorType, bench->getSize().x(), bench->getSize().y(), &bitmap);
60 bench->preDraw();
61 bench->draw(1, &canvas);
  /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/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/skia/tools/
Android.mk 21 ../bench/BenchLogger.cpp \
22 ../bench/ResultsWriter.cpp \
67 $(LOCAL_PATH)/../bench \

Completed in 198 milliseconds

12 3 4