Searched defs:repeats (Results 1 - 13 of 13) sorted by relevance

/external/eigen/bench/
H A Dspmv.cpp11 #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 << end
[all...]
H A DbenchCholesky.cpp41 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
H A Dbench_reverse.cpp24 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/skia/tools/
H A DPictureBenchmark.h34 void setRepeats(int repeats) { argument
35 fRepeats = repeats;
/external/chromium_org/chrome/browser/sync/glue/
H A Dextensions_activity_monitor_unittest.cc51 const scoped_refptr<Extension>& extension, int repeats) {
54 for (int i = 0; i < repeats; i++) {
50 FireBookmarksApiEvent( const scoped_refptr<Extension>& extension, int repeats) argument
/external/pixman/test/
H A Dscaling-crash-test.c123 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);
H A Dstress-test.c390 static pixman_repeat_t repeats[] = variable
412 repeat = repeats[prng_rand_n (ARRAY_LENGTH (repeats))];
/external/chromium/chrome/browser/sync/util/
H A Dextensions_activity_monitor_unittest.cc43 BookmarkAPIEventTask(FunctionType* t, Extension* e, size_t repeats, argument
45 extension_(e), function_(t), repeats_(repeats), done_(done) {}
70 T* bookmarks_function, size_t repeats) {
82 repeats, &done_event));
69 NewEvent(const FilePath::StringType& extension_path, T* bookmarks_function, size_t repeats) argument
/external/chromium_org/media/audio/
H A Dcross_process_notification_unittest.cc70 SingleNotifierWorker(size_t* shared_data, size_t repeats, argument
72 : shared_data_(shared_data), repeats_(repeats),
98 MultiNotifierWorker(size_t* shared_data, size_t repeats, argument
100 : shared_data_(shared_data), repeats_(repeats),
160 size_t* shared_data, size_t repeats,
163 repeats_(repeats), notifier_(notifier) {
260 size_t repeats = pairs.size() * 1; local
262 MultiNotifierWorker worker_1(&data[0], repeats, &pairs.a());
263 MultiNotifierWorker worker_2(&data[0], repeats, &pairs.b());
302 // repeats i
159 MultiNotifierWorkerFlagArray(size_t count, FlagArray* signals, size_t* shared_data, size_t repeats, CrossProcessNotification* notifier) argument
303 size_t repeats = 1; local
[all...]
/external/pixman/demos/
H A Dscale.c122 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/third_party/WebKit/Source/core/svg/animation/
H A DSVGSMILElement.cpp99 SVGSMILElement::Condition::Condition(Type type, BeginOrEnd beginOrEnd, const String& baseID, const String& name, SMILTime offset, int repeats) argument
105 , m_repeats(repeats)
384 int repeats = -1; local
388 repeats = nameString.substring(7, nameString.length() - 8).toUIntStrict(&ok);
403 m_conditions.append(Condition(type, beginOrEnd, baseID, nameString, offset, repeats));
/external/chromium_org/v8/src/
H A Dserialize.cc1140 int repeats = source_->GetInt(); local
1143 for (int i = 0; i < repeats; i++) current[i] = object;
1144 current += repeats;
1155 int repeats = RepeatsForCode(data); local
1158 for (int i = 0; i < repeats; i++) current[i] = object;
1159 current += repeats;
/external/v8/src/
H A Dserialize.cc960 int repeats = source_->GetInt(); local
963 for (int i = 0; i < repeats; i++) current[i] = object;
964 current += repeats;
974 int repeats = RepeatsForCode(data); local
977 for (int i = 0; i < repeats; i++) current[i] = object;
978 current += repeats;

Completed in 392 milliseconds