Searched defs:timer (Results 51 - 75 of 247) sorted by relevance

12345678910

/external/chromium_org/third_party/WebKit/Source/core/loader/
H A DLinkLoader.cpp70 void LinkLoader::linkLoadTimerFired(Timer<LinkLoader>* timer) argument
72 ASSERT_UNUSED(timer, timer == &m_linkLoadTimer);
76 void LinkLoader::linkLoadingErrorTimerFired(Timer<LinkLoader>* timer) argument
78 ASSERT_UNUSED(timer, timer == &m_linkLoadingErrorTimer);
/external/chromium_org/third_party/WebKit/Source/modules/vibration/
H A DNavigatorVibration.cpp101 void NavigatorVibration::timerStartFired(Timer<NavigatorVibration>* timer) argument
103 ASSERT_UNUSED(timer, timer == &m_timerStart);
113 void NavigatorVibration::timerStopFired(Timer<NavigatorVibration>* timer) argument
115 ASSERT_UNUSED(timer, timer == &m_timerStop);
/external/chromium_org/third_party/icu/source/tools/ctestfw/unicode/
H A Dutimer.h56 * UTimer timer;
126 * void perf(UTimer* timer, UChar* source, int32_t sourceLen, UChar* target, int32_t targetLen, int32_t loopCount,UNormalizationMode mode, UErrorCode* error){
131 * utimer_getTime(timer);
170 static int uprv_initFrequency(UTimer* timer) argument
172 return QueryPerformanceFrequency(&timer->placeHolder);
174 static void uprv_start(UTimer* timer) argument
176 QueryPerformanceCounter(&timer->start);
192 static int32_t uprv_initFrequency(UTimer* /*timer*/)
196 static void uprv_start(UTimer* timer) argument
198 gettimeofday(&timer
218 utimer_getTime(UTimer* timer) argument
247 utimer_getElapsedSeconds(UTimer* timer) argument
267 UTimer timer; local
[all...]
/external/chromium_org/third_party/libsrtp/srtp/crypto/test/
H A Dauth_driver.c169 clock_t timer; local
188 timer = clock();
192 timer = clock() - timer;
197 return (double) NUM_TRIALS * 8 * msg_len_octets * CLOCKS_PER_SEC / timer;
/external/chromium_org/third_party/skia/bench/
H A DResultsWriter.h37 // then config and timer can be called multiple times to record runs.
47 virtual void timer(const char name[], double ms) {} function in class:ResultsWriter
107 virtual void timer(const char name[], double ms) { function in class:NanoJSONResultsWriter
/external/chromium_org/third_party/skia/tools/
H A DDumpRecord.cpp34 Timer timer; local
35 timer.start();
37 timer.end();
39 this->print(command, timer.fCpu);
/external/chromium_org/ui/events/ozone/evdev/libgestures_glue/
H A Dgesture_timer_provider.cc9 #include "base/timer/timer.h"
55 GesturesTimer* timer,
59 timer->Set(delay, callback, callback_data);
62 void GesturesTimerCancel(void* data, GesturesTimer* timer) { timer->Cancel(); } argument
64 void GesturesTimerFree(void* data, GesturesTimer* timer) { delete timer; } argument
54 GesturesTimerSet(void* data, GesturesTimer* timer, stime_t delay, GesturesTimerCallback callback, void* callback_data) argument
/external/chromium_org/v8/src/base/platform/
H A Dtime-unittest.cc18 #include "src/base/platform/elapsed-timer.h"
124 ElapsedTimer timer; local
125 timer.Start();
138 } while (delta > target_granularity && !timer.HasExpired(kExpirationTimeout));
171 ElapsedTimer timer; local
172 timer.Start();
173 while (!timer.HasExpired(TimeDelta::FromMilliseconds(100))) {
/external/eigen/bench/
H A DbenchBlasGemm.cpp107 Eigen::BenchTimer timer; local
117 timer.reset();
120 timer.start();
127 timer.stop();
130 std::cout << "cblas: " << timer.value() << " (" << 1e-3*floor(1e-6*nbmad/timer.value()) << " GFlops/s)\n";
132 std::cout << M << " : " << timer.value() << " ; " << 1e-3*floor(1e-6*nbmad/timer.value()) << "\n";
143 timer.reset();
146 timer
[all...]
H A Dsparse_dense_product.cpp29 timer.reset(); \
31 timer.start(); \
34 } timer.stop(); }
62 BenchTimer timer; local
75 timer.reset();
76 timer.start();
79 timer.stop();
80 std::cout << " a * v:\t" << timer.best() << " " << double(REPEAT)/timer.best() << " * / sec " << endl;
82 timer
[all...]
H A Dsparse_lu.cpp34 timer.reset(); \
36 timer.start(); \
39 } timer.stop(); }
49 BenchTimer timer; timer.start(); local
51 timer.stop();
53 std::cout << ":\t" << timer.value() << endl;
61 timer.reset(); timer.start();
63 timer
77 BenchTimer timer; local
99 BenchTimer timer; local
[all...]
H A Dsparse_product.cpp31 timer.reset(); \
33 timer.start(); \
36 } timer.stop(); }
106 BenchTimer timer; local
123 timer.reset();
124 timer.start();
127 timer.stop();
128 std::cout << " a * b:\t" << timer.value() << endl;
130 timer.reset();
131 timer
[all...]
H A Dsparse_trisolver.cpp30 timer.reset(); \
32 timer.start(); \
35 } timer.stop(); }
61 BenchTimer timer; local
87 std::cout << " colmajor^-1 * b:\t" << timer.value() << endl;
91 std::cout << " rowmajor^-1 * b:\t" << timer.value() << endl;
102 std::cout << " colmajor^-1 * b:\t" << timer.value() << endl;
106 std::cout << " rowmajor^-1 * b:\t" << timer.value() << endl;
111 // std::cout << " colmajor^-1 * b:\t" << timer.value() << " (inplace)" << endl;
116 // std::cout << " rowmajor^-1 * b:\t" << timer
[all...]
/external/eigen/bench/spbench/
H A Dsp_solver.cpp27 BenchTimer timer,totaltime; local
39 timer.start();
53 timer.stop();
71 cout<< "Time to load the matrix " << timer.value() <<endl;
91 timer.reset();
92 timer.start();
102 timer.stop();
103 float time_comp = timer.value();
106 timer.reset();
107 timer
[all...]
H A Dtest_sparseLU.cpp38 BenchTimer timer; local
71 timer.start();
74 timer.stop();
75 cout << "Time to analyze " << timer.value() << std::endl;
76 timer.reset();
77 timer.start();
79 timer.stop();
80 cout << "Factorize Time " << timer.value() << std::endl;
81 timer.reset();
82 timer
[all...]
/external/icu/icu4c/source/tools/ctestfw/unicode/
H A Dutimer.h56 * UTimer timer;
126 * void perf(UTimer* timer, UChar* source, int32_t sourceLen, UChar* target, int32_t targetLen, int32_t loopCount,UNormalizationMode mode, UErrorCode* error){
131 * utimer_getTime(timer);
170 static int uprv_initFrequency(UTimer* timer) argument
172 return QueryPerformanceFrequency(&timer->placeHolder);
174 static void uprv_start(UTimer* timer) argument
176 QueryPerformanceCounter(&timer->start);
192 static int32_t uprv_initFrequency(UTimer* /*timer*/)
196 static void uprv_start(UTimer* timer) argument
198 gettimeofday(&timer
218 utimer_getTime(UTimer* timer) argument
247 utimer_getElapsedSeconds(UTimer* timer) argument
267 UTimer timer; local
[all...]
/external/jmdns/src/javax/jmdns/impl/tasks/state/
H A DAnnouncer.java57 public void start(Timer timer) { argument
59 timer.schedule(this, DNSConstants.ANNOUNCE_WAIT_INTERVAL, DNSConstants.ANNOUNCE_WAIT_INTERVAL);
H A DCanceler.java55 public void start(Timer timer) { argument
56 timer.schedule(this, 0, DNSConstants.ANNOUNCE_WAIT_INTERVAL);
H A DProber.java60 public void start(Timer timer) { argument
70 timer.schedule(this, JmDNSImpl.getRandom().nextInt(1 + DNSConstants.PROBE_WAIT_INTERVAL), DNSConstants.PROBE_WAIT_INTERVAL);
72 timer.schedule(this, DNSConstants.PROBE_CONFLICT_INTERVAL, DNSConstants.PROBE_CONFLICT_INTERVAL);
H A DRenewer.java55 public void start(Timer timer) { argument
59 timer.schedule(this, getTTL() * 500, getTTL() * 500);
/external/nist-sip/java/gov/nist/javax/sip/clientauthutils/
H A DAuthenticationHelperImpl.java82 Timer timer; field in class:AuthenticationHelperImpl
/external/skia/tools/
H A DDumpRecord.cpp36 Timer timer; local
37 timer.start();
39 timer.end();
41 this->print(command, timer.fCpu);
H A Dbench_playback.cpp79 WallTimer timer; local
83 // We assume timer overhead (typically, ~30ns) is insignificant
85 timer.start();
87 timer.end();
88 samples[i] = timer.fWall * scale;
H A Dbench_record.cpp31 "Try to make timer overhead at most this fraction of our sample measurements.");
81 // Rerecord once to see how many times we should loop to make timer overhead insignificant.
82 WallTimer timer; local
85 timer.start();
87 timer.end();
88 } while (timer.fWall * scale < timerOverhead); // Loop just in case something bizarre happens.
90 // We want (timer overhead / measurement) to be less than FLAGS_overheadGoal.
92 const int loops = (int)ceil(timerOverhead / timer.fWall / FLAGS_overheadGoal);
96 timer.start();
100 timer
134 WallTimer timer; local
[all...]
/external/srtp/crypto/cipher/
H A Dcipher.c382 clock_t timer; local
392 timer = clock();
397 timer = clock() - timer;
401 if (timer == 0) {
406 return (uint64_t)CLOCKS_PER_SEC * num_trials * 8 * octets_in_buffer / timer;

Completed in 494 milliseconds

12345678910