HomeSort by relevance Sort by last modified time
    Searched refs:timer (Results 226 - 250 of 960) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/qemu/android/
looper-generic.c 46 static void glooper_addActiveTimer(GLooper* looper, GLoopTimer* timer);
47 static void glooper_delActiveTimer(GLooper* looper, GLoopTimer* timer);
48 static void glooper_addTimer(GLooper* looper, GLoopTimer* timer);
49 static void glooper_delTimer(GLooper* looper, GLoopTimer* timer);
66 /* Stop the timer if it was active */
70 /* Another way to stop a timer */
83 if (timeout_ms == DURATION_INFINITE) { /* another way to stop the timer */
119 LoopTimer* timer,
134 timer->impl = tt;
135 timer->clazz = (LoopTimerClass*) &glooptimer_class
423 GLoopTimer* timer = looper->activeTimers; local
441 GLoopTimer* timer; local
    [all...]
  /external/eigen/bench/
benchBlasGemm.cpp 107 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.start()
    [all...]
  /external/chromium_org/third_party/android_crazy_linker/src/tests/
bench_load_library.cpp 55 printf("Timer %s: %.1f\n", name_, elapsed_ms);
74 ScopedTimer timer("dlopen");
92 ScopedTimer timer("crazy_linker");
104 ScopedTimer timer("crazy_linker (preload libOpenSLES.so)");
120 ScopedTimer timer("crazy_linker (preload 3 system libs)");
135 ScopedTimer timer("crazy_linker (with RELRO)");
  /external/nist-sip/java/gov/nist/javax/sip/parser/
Pipeline.java 50 private Timer timer; field in class:Pipeline
112 this.timer.schedule(this.myTimerTask, this.readTimeout);
122 public Pipeline(InputStream pipe, int readTimeout, Timer timer) {
125 this.timer = timer;
  /external/srtp/test/
replay_driver.c 183 clock_t timer; local
191 timer = clock();
206 timer = clock() - timer;
208 return (double) CLOCKS_PER_SEC * REPLAY_NUM_TRIALS / timer;
  /ndk/sources/android/crazy_linker/tests/
bench_load_library.cpp 55 printf("Timer %s: %.1f\n", name_, elapsed_ms);
74 ScopedTimer timer("dlopen");
92 ScopedTimer timer("crazy_linker");
104 ScopedTimer timer("crazy_linker (preload libOpenSLES.so)");
120 ScopedTimer timer("crazy_linker (preload 3 system libs)");
135 ScopedTimer timer("crazy_linker (with RELRO)");
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_profile.py 10 from test.profilee import testfunc, timer namespace
23 prof = cls.profilerclass(timer, 0.001)
24 start_timer = timer()
26 results.append(timer() - start_timer)
54 prof = self.profilerclass(timer, 0.001)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_profile.py 10 from test.profilee import testfunc, timer namespace
23 prof = cls.profilerclass(timer, 0.001)
24 start_timer = timer()
26 results.append(timer() - start_timer)
54 prof = self.profilerclass(timer, 0.001)
  /development/samples/ToyVpn/src/com/example/android/toyvpn/
ToyVpnService.java 167 // We use a timer to determine the status of the tunnel. It
170 int timer = 0; local
189 if (timer < 1) {
190 timer = 1;
208 if (timer > 0) {
209 timer = 0;
218 // Increase the timer. This is inaccurate but good enough,
220 timer += (timer > 0) ? 100 : -100;
223 if (timer < -15000)
    [all...]
  /external/skia/tools/
Android.mk 25 timer/Timer.cpp \
26 timer/TimerData.cpp \
27 timer/GpuTimer.cpp \
28 timer/SysTimer_posix.cpp \
68 $(LOCAL_PATH)/timer \
  /external/chromium_org/v8/tools/
parser-shell.cc 79 ElapsedTimer timer; local
80 timer.Start();
83 parse_time1 = timer.Elapsed();
94 ElapsedTimer timer; local
95 timer.Start();
98 parse_time2 = timer.Elapsed();
  /external/qemu/distrib/sdl-1.2.15/src/timer/os2/
SDL_systimer.c 99 HTIMER htimerEvent1 = 0; /* Timer handle */
146 &htimerEvent1))) /* Timer handler (returned) */
183 static SDL_Thread *timer = NULL; variable
201 timer = SDL_CreateThread(RunTimer, NULL);
202 if ( timer == NULL )
210 if ( timer ) {
211 SDL_WaitThread(timer, NULL);
212 timer = NULL;
218 SDL_SetError("Internal logic error: OS/2 uses threaded timer");
  /build/tools/droiddoc/templates-pdk/assets/
jquery-history.js 7 var currentHash, previousNav, timer, hashTrim = /^.*#/;
49 if (!timer) {
50 timer = setInterval(historycheck, 100);
  /external/bluetooth/bluedroid/test/suite/support/
hal.c 75 static timer_t timer; local
84 timer_create(CLOCK_MONOTONIC, &sigevent, &timer);
93 timer_settime(timer, 0, &new_value, NULL);
  /external/doclava/res/assets/templates/assets/
jquery-history.js 7 var currentHash, previousNav, timer, hashTrim = /^.*#/;
49 if (!timer) {
50 timer = setInterval(historycheck, 100);
  /packages/apps/DeskClock/src/com/android/deskclock/
HandleApiCalls.java 33 import com.android.deskclock.timer.TimerFullScreenFragment;
34 import com.android.deskclock.timer.TimerObj;
35 import com.android.deskclock.timer.Timers;
160 // If no length is supplied , show the timer setup view
170 LogUtils.i("Invalid timer length requested: " + length);
175 TimerObj timer = null; local
182 timer = t;
188 if (timer == null) {
189 // Use a new timer
190 timer = new TimerObj(length, label)
    [all...]
  /external/chromium_org/base/timer/
timer.cc 5 #include "base/timer/timer.h"
18 // Timer in the thread's default task runner. It also handles the following
21 // - abandoned (orphaned) by Timer.
24 explicit BaseTimerTaskInternal(Timer* timer)
25 : timer_(timer) {
30 // destructed. If so, don't leave Timer with a dangling pointer
41 // *this will be deleted by the task runner, so Timer needs to
45 // Although Timer should not call back into *this, let's clea
47 Timer* timer = timer_; local
    [all...]
  /external/chromium_org/components/metrics/
metrics_log_manager.cc 11 #include "base/timer/elapsed_timer.h"
139 base::ElapsedTimer timer;
142 UMA_HISTOGRAM_TIMES("UMA.StoreLogsTime", timer.Elapsed());
146 base::ElapsedTimer timer; local
149 UMA_HISTOGRAM_TIMES("UMA.LoadLogsTime", timer.Elapsed());
  /external/chromium_org/content/browser/net/
sqlite_persistent_cookie_store_perftest.cc 122 base::PerfTimeLogger timer(
128 timer.Done();
136 base::PerfTimeLogger timer("Load all cookies");
138 timer.Done();
  /external/chromium_org/net/cookies/
cookie_monster_perftest.cc 100 base::PerfTimeLogger timer("Parsed_cookie_parse_cookies");
105 timer.Done();
111 base::PerfTimeLogger timer("Parsed_cookie_parse_big_cookies");
116 timer.Done();
129 base::PerfTimeLogger timer("Cookie_monster_add_single_host");
135 timer.Done();
163 base::PerfTimeLogger timer("Cookie_monster_add_many_hosts");
168 timer.Done();
232 base::PerfTimeLogger timer("Cookie_monster_query_domain_tree");
236 timer.Done()
    [all...]
  /external/chromium_org/chrome/browser/local_discovery/
service_discovery_shared_client.cc 13 #include "base/timer/elapsed_timer.h"
33 base::ElapsedTimer timer;
40 UMA_HISTOGRAM_TIMES("LocalDiscovery.FirewallAccessTime", timer.Elapsed());
  /external/chromium_org/sdch/open-vcdiff/src/
rolling_hash_test.cc 161 CycleTimer timer; local
162 timer.Start();
164 timer.Stop();
165 return static_cast<double>(timer.GetInUsec())
173 CycleTimer timer; local
174 timer.Start();
176 timer.Stop();
177 return static_cast<double>(timer.GetInUsec())
  /external/jmdns/src/javax/jmdns/impl/tasks/resolver/
DNSResolverTask.java 5 import java.util.Timer;
45 * @see javax.jmdns.impl.tasks.DNSTask#start(java.util.Timer)
48 public void start(Timer timer) {
50 timer.schedule(this, DNSConstants.QUERY_WAIT_INTERVAL, DNSConstants.QUERY_WAIT_INTERVAL);
  /external/chromium_org/chrome/browser/resources/cryptotoken/
requestqueue.js 45 // Either the caller called us more than once, or the timer is firing.
134 * @param {Countdown} timer Countdown timer
137 RequestQueue.prototype.queueRequest = function(beginCb, timer) {
140 // Clone the timer to set a callback on it, which will ensure complete() is
142 timer.clone(token.complete.bind(token));
168 * @param {Countdown} timer Countdown timer
172 function(appId, origin, beginCb, timer) {
178 return queue.queueRequest(beginCb, timer);
    [all...]
  /external/chromium_org/third_party/libsrtp/srtp/crypto/test/
auth_driver.c 169 clock_t timer; local
188 timer = clock();
192 timer = clock() - timer;
197 return (double) NUM_TRIALS * 8 * msg_len_octets * CLOCKS_PER_SEC / timer;

Completed in 626 milliseconds

1 2 3 4 5 6 7 8 91011>>