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 // bench.h needs pthread barriers which are not available on OS X
7 #include "bench.h"
16 void bench() { function
bench_acquire_release.cc 4 // bench.h needs pthread barriers which are not available on OS X
7 #include "bench.h"
16 void bench() { function
bench_local_mutex.cc 4 // bench.h needs pthread barriers which are not available on OS X
7 #include "bench.h"
19 void bench() { function
bench_release_only.cc 4 // bench.h needs pthread barriers which are not available on OS X
7 #include "bench.h"
18 void bench() { function
bench_rwmutex.cc 4 // bench.h needs pthread barriers which are not available on OS X
7 #include "bench.h"
18 void bench() { function
bench_single_writer.cc 4 // bench.h needs pthread barriers which are not available on OS X
7 #include "bench.h"
21 void bench() { function
bench_mutex.cc 4 // bench.h needs pthread barriers which are not available on OS X
7 #include "bench.h"
24 void bench() { function
bench_ten_mutexes.cc 4 // bench.h needs pthread barriers which are not available on OS X
7 #include "bench.h"
22 void bench() { function
  /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/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/VisualBench/
VisualBenchmarkStream.cpp 25 "[~][^]substring[$] [...] of bench name to run.\n"
27 "~ causes a matching bench to always be skipped\n"
28 "^ requires the start of the bench to match\n"
29 "$ requires the end of the bench to match\n"
31 "If a bench does not match any list entry,\n"
34 DEFINE_bool(warmup, true, "Include a warmup bench? (Excluding the warmup may compromise results)");
129 Benchmark* bench; local
132 bench = new WarmupBench;
135 while ((bench = this->innerNext()) &&
136 (SkCommandLineFlags::ShouldSkip(FLAGS_match, bench->getUniqueName()) |
155 Benchmark* bench = fBenches->factory()(nullptr); local
    [all...]
  /external/chromium-trace/catapult/third_party/py_vulcanize/third_party/rcssmin/bench/
main.py 61 from bench import cssmin as p_01_cssmin
89 def bench(filenames, count): function
222 struct = bench(args, count)
  /external/chromium-trace/catapult/third_party/py_vulcanize/third_party/rjsmin/bench/
main.py 49 from bench import jsmin as p_01_simple_port
51 from bench import jsmin_2_0_9 as p_02_jsmin_2_0_9
102 def bench(filenames, count): function
235 struct = bench(args, count)
  /external/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".
96 void bench(const char name[], int32_t x, int32_t y) override {
nanobench.cpp 77 help.printf("Number of times to run each bench. Set this to %d to auto-"
78 "tune for each bench. Timings are only reported when auto-tuning.",
91 DEFINE_int32(samples, 10, "Number of samples to measure for each bench.");
92 DEFINE_int32(ms, 0, "If >0, run each bench for this many ms instead of obeying --samples.");
96 DEFINE_double(gpuMs, 5, "Target bench time in millseconds for GPU.");
103 "Try up to this many times to guess loops for a bench, or skip the bench.");
104 DEFINE_int32(maxLoops, 1000000, "Never run a bench more times than this.");
121 "Apply usual --match rules to source type: bench, gm, skp, image, etc.");
123 "Apply usual --match rules to bench type: micro, recording, playback, skcodec, etc.")
631 SkAutoTDelete<Benchmark> bench; local
644 Benchmark* bench = fBenches->factory()(nullptr); local
    [all...]
  /system/extras/zram-perf/
zram-perf.cpp 120 int bench(bool direct) function
137 bench(1);
  /external/lz4/programs/
lz4cli.c 61 #include "bench.h" /* BMK_benchFile, BMK_SetNbIterations, BMK_SetBlocksize, BMK_SetPause */
263 bench=0, local
391 case 'b': bench=1; break;
438 if (bench) return BMK_benchFile(argv+filenamesStart, argc-filenamesStart, cLevel);
  /external/okhttp/okio/benchmarks/src/main/java/com/squareup/okio/benchmarks/
BufferPerformanceBench.java 60 new File(System.getProperty("okio.bench.origin.path", "/dev/urandom"));
208 * in superclasses and move the setup method depending on the bench state
217 public void setupBench(BufferPerformanceBench bench) {
218 super.bench = bench;
223 TimeUnit.MICROSECONDS.sleep(bench.maxThinkMicros);
232 public void setupBench(BufferPerformanceBench bench) {
233 super.bench = bench;
240 BufferPerformanceBench bench; field in class:BufferPerformanceBench.BufferSetup
    [all...]
  /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:__anon73356
229 BandwidthBenchmark *bench = createBandwidthBenchmarkObject(*values); local
    [all...]
bandwidth.h 43 bench(_num_warm_loops);
46 bench(_num_loops);
88 virtual void bench(size_t num_loops) = 0;
146 bench(1);
155 bench(2);
180 void bench(size_t num_loops) { function in class:CopyLdrdStrdBenchmark
234 void bench(size_t num_loops) { function in class:CopyLdmiaStmiaBenchmark
276 void bench(size_t num_loops) { function in class:CopyVld1Vst1Benchmark
304 void bench(size_t) { function
321 void bench(size_t num_loops) function in class:CopyVld1Vst1Benchmark::CopyVldrVstrBenchmark
363 void bench(size_t) { function
380 void bench(size_t num_loops) { function in class:CopyVld1Vst1Benchmark::CopyVldrVstrBenchmark::CopyVldmiaVstmiaBenchmark
406 void bench(size_t) { function
419 void bench(size_t num_loops) { function in class:CopyVld1Vst1Benchmark::CopyVldrVstrBenchmark::CopyVldmiaVstmiaBenchmark::MemcpyBenchmark
503 void bench(size_t num_loops) { function in class:CopyVld1Vst1Benchmark::CopyVldrVstrBenchmark::CopyVldmiaVstmiaBenchmark::WriteStrdBenchmark
547 void bench(size_t num_loops) { function in class:CopyVld1Vst1Benchmark::CopyVldrVstrBenchmark::CopyVldmiaVstmiaBenchmark::WriteStmiaBenchmark
595 void bench(size_t num_loops) { function in class:CopyVld1Vst1Benchmark::CopyVldrVstrBenchmark::CopyVldmiaVstmiaBenchmark::WriteVst1Benchmark
625 void bench(size_t) { function
642 void bench(size_t num_loops) { function in class:CopyVld1Vst1Benchmark::CopyVldrVstrBenchmark::CopyVldmiaVstmiaBenchmark::WriteVst1Benchmark::WriteVstrBenchmark
676 void bench(size_t) { function
693 void bench(size_t num_loops) { function in class:CopyVld1Vst1Benchmark::CopyVldrVstrBenchmark::CopyVldmiaVstmiaBenchmark::WriteVst1Benchmark::WriteVstrBenchmark::WriteVstmiaBenchmark
723 void bench(size_t) { function
736 void bench(size_t num_loops) { function in class:CopyVld1Vst1Benchmark::CopyVldrVstrBenchmark::CopyVldmiaVstmiaBenchmark::WriteVst1Benchmark::WriteVstrBenchmark::WriteVstmiaBenchmark::MemsetBenchmark
752 void bench(size_t num_loops) { function in class:CopyVld1Vst1Benchmark::CopyVldrVstrBenchmark::CopyVldmiaVstmiaBenchmark::WriteVst1Benchmark::WriteVstrBenchmark::WriteVstmiaBenchmark::ReadLdrdBenchmark
790 void bench(size_t num_loops) { function in class:CopyVld1Vst1Benchmark::CopyVldrVstrBenchmark::CopyVldmiaVstmiaBenchmark::WriteVst1Benchmark::WriteVstrBenchmark::WriteVstmiaBenchmark::ReadLdmiaBenchmark
827 void bench(size_t num_loops) { function in class:CopyVld1Vst1Benchmark::CopyVldrVstrBenchmark::CopyVldmiaVstmiaBenchmark::WriteVst1Benchmark::WriteVstrBenchmark::WriteVstmiaBenchmark::ReadVld1Benchmark
850 void bench(size_t) { function
867 void bench(size_t num_loops) { function in class:CopyVld1Vst1Benchmark::CopyVldrVstrBenchmark::CopyVldmiaVstmiaBenchmark::WriteVst1Benchmark::WriteVstrBenchmark::WriteVstmiaBenchmark::ReadVld1Benchmark::ReadVldrBenchmark
894 void bench(size_t) { function
912 void bench(size_t num_loops) { function in class:CopyVld1Vst1Benchmark::CopyVldrVstrBenchmark::CopyVldmiaVstmiaBenchmark::WriteVst1Benchmark::WriteVstrBenchmark::WriteVstmiaBenchmark::ReadVld1Benchmark::ReadVldrBenchmark::ReadVldmiaBenchmark
935 void bench(size_t) { function
    [all...]
  /external/skia/tools/kilobench/
kilobench.cpp 53 help.printf("Number of times to run each bench. Set this to %d to auto-"
54 "tune for each bench. Timings are only reported when auto-tuning.",
63 "~ causes a matching bench to always be skipped\n"
64 "^ requires the start of the bench to match\n"
65 "$ requires the end of the bench to match\n"
67 "If a bench does not match any list entry,\n"
70 DEFINE_int32(samples, 10, "Number of samples to measure for each bench.");
71 DEFINE_int32(maxLoops, 1000000, "Never run a bench more times than this.");
73 DEFINE_double(gpuMs, 5, "Target bench time in millseconds for GPU.");
101 Benchmark* bench = nullptr local
    [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 318 milliseconds

1 2