HomeSort by relevance Sort by last modified time
    Searched refs:repeats (Results 1 - 25 of 30) sorted by null

1 2

  /external/eigen/bench/
spmv.cpp 11 #define SPMV_BENCH(CODE) BENCH(t,tries,repeats,CODE);
44 int repeats = 2; local
67 repeats = atoi(argv[i]+1);
76 std::cout << argv[0] << " r<nb rows> c<nb columns> n<non zeros per column> t<nb tries> p<nb repeats>\n";
80 std::cout << "SpMV " << rows << " x " << cols << " with " << nnzPerCol << " non zeros per column. (" << repeats << " repeats, and " << tries << " tries)\n\n";
100 std::cout << "Dense " << t.value()/repeats << "\t";
103 std::cout << t.value()/repeats << endl;
110 std::cout << "Eigen " << t.value()/repeats << "\t";
113 std::cout << t.value()/repeats << endl
    [all...]
benchCholesky.cpp 41 int repeats = (REPEAT*1000)/(rows*rows); local
57 for (int k=0; k<repeats; ++k)
68 for (int k=0; k<repeats; ++k)
81 << (timerNoSqrt.value() * REPEAT) / repeats << "s "
82 << "(" << 1e-6 * cost*repeats/timerNoSqrt.value() << " MFLOPS)\t"
83 << (timerSqrt.value() * REPEAT) / repeats << "s "
84 << "(" << 1e-6 * cost*repeats/timerSqrt.value() << " MFLOPS)\n";
99 for (int k=0; k<repeats; ++k)
109 << timerSqrt.value() * REPEAT / repeats << "s"; local
bench_reverse.cpp 24 int repeats = (REPEAT*1000)/size; local
36 for (int k=0; k<repeats; ++k)
51 << (timerB.value() * REPEAT) / repeats << "s "
52 << "(" << 1e-6 * size*repeats/timerB.value() << " MFLOPS)\t";
  /external/chromium_org/third_party/skia/tools/
PictureBenchmark.h 33 void setRepeats(int repeats) {
34 fRepeats = repeats;
  /external/skia/tools/
PictureBenchmark.h 33 void setRepeats(int repeats) {
34 fRepeats = repeats;
  /external/pixman/test/
scaling-crash-test.c 123 static const repeat_info_t repeats[] = variable
140 for (j = 0; j < ARRAY_LENGTH (repeats); ++j)
148 repeats[j].value) != 0)
151 filters[i].name, repeats[j].name);
162 repeats[j].value) != 0)
165 filters[i].name, repeats[j].name);
stress-test.c 390 static pixman_repeat_t repeats[] = variable
412 repeat = repeats[prng_rand_n (ARRAY_LENGTH (repeats))];
  /external/guava/guava-tests/test/com/google/common/hash/
BloomFilterTest.java 52 for (int repeats = 0; repeats < 10000; repeats++) {
  /external/chromium_org/third_party/sqlite/src/test/
fuzz_malloc.test 29 set ::REPEATS 20
31 set ::REPEATS 100
33 set ::REPEATS 40
41 # -repeats
44 set ::fuzzyopts(-repeats) $::REPEATS
55 for {set ii 0} {$ii < $::fuzzyopts(-repeats)} {incr ii} {
fuzz_common.tcl 355 # -repeats
359 set ::fuzzyopts(-repeats) $::REPEATS
367 for {set ii 0} {$ii < $::fuzzyopts(-repeats)} {incr ii} {
  /external/chromium_org/third_party/libjingle/source/talk/base/
maccocoasocketserver.mm 121 repeats:NO];
  /external/chromium_org/third_party/webrtc/base/
maccocoasocketserver.mm 104 repeats:NO];
  /external/chromium_org/v8/src/
serialize.h 248 static int CodeForRepeats(int repeats) {
249 ASSERT(repeats >= 1 && repeats <= kMaxRepeats);
250 return 0x72 + repeats;
serialize.cc 1079 int repeats = source_->GetInt(); local
1094 int repeats = RepeatsForCode(data); local
    [all...]
  /external/pixman/demos/
scale.c 122 static const named_int_t repeats[] = variable
246 app->original, get_value (app, repeats, "repeat_combo_box"));
391 app, "repeat_combo_box", G_N_ELEMENTS (repeats), repeats);
  /external/chromium_org/chrome/browser/sync/glue/
extensions_activity_monitor_unittest.cc 50 const scoped_refptr<Extension>& extension, int repeats) {
53 for (int i = 0; i < repeats; i++) {
  /external/valgrind/main/gdbserver_tests/
mcwatchpoints.stdoutB.exp 38 $1 = 'p' <repeats 50000 times>
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_bigmem.py 218 repeats = size // len(chars) + 2
219 s = chars * repeats
227 repeats = size // len(whitespace) + 2
228 s = whitespace * repeats
246 repeats = size // len(chars) + 2
247 s = chars * repeats
422 repeats = size // sublen + 2
423 s = SUBSTR * repeats
425 self.assertEqual(len(s), sublen * repeats)
442 repeats = size // sublen +
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_bigmem.py 218 repeats = size // len(chars) + 2
219 s = chars * repeats
227 repeats = size // len(whitespace) + 2
228 s = whitespace * repeats
246 repeats = size // len(chars) + 2
247 s = chars * repeats
422 repeats = size // sublen + 2
423 s = SUBSTR * repeats
425 self.assertEqual(len(s), sublen * repeats)
442 repeats = size // sublen +
    [all...]
  /external/chromium_org/third_party/skia/debugger/QT/
SkDebuggerGUI.h 362 int repeats);
SkDebuggerGUI.cpp 316 int repeats) {
336 for (int i = 0; i < repeats; ++i) {
    [all...]
  /external/skia/debugger/QT/
SkDebuggerGUI.h 362 int repeats);
  /external/valgrind/main/perf/
vg_perf 64 --reps=<n> number of repeats for each program [1]
vg_perf.in 64 --reps=<n> number of repeats for each program [1]
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/widget/
ScrollAdapterView.java     [all...]

Completed in 495 milliseconds

1 2