HomeSort by relevance Sort by last modified time
    Searched defs:timer (Results 201 - 225 of 430) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/chromium_org/v8/src/
counters.h 12 #include "src/platform/elapsed-timer.h"
234 // Start the timer.
237 // Stop the timer and record the results.
240 // Returns true if the timer is running.
247 ElapsedTimer* timer() { return &timer_; } function in class:v8::internal::HistogramTimer
261 explicit HistogramTimerScope(HistogramTimer* timer,
264 : timer_(timer),
266 if (timer_->timer()->IsStarted() && allow_nesting) {
273 : timer_(timer) {
cpu-profiler.cc 111 ElapsedTimer timer; local
112 timer.Start();
120 } while (!timer.HasExpired(period_));
  /external/deqp/framework/delibs/deutil/
deTimer.c 21 * \brief Periodic timer.
39 HANDLE timer; member in struct:deTimer_s
44 const deTimer* timer = (const deTimer*)lpParameter; local
47 timer->callback(timer->callbackArg);
52 deTimer* timer = (deTimer*)deCalloc(sizeof(deTimer)); local
54 if (!timer)
57 timer->callback = callback;
58 timer->callbackArg = arg;
59 timer->timer = 0
163 timer_t timer; member in struct:deTimer_s
170 const deTimer* timer = (const deTimer*)val.sival_ptr; local
176 deTimer* timer = (deTimer*)deCalloc(sizeof(deTimer)); local
381 deTimer* timer = (deTimer*)deCalloc(sizeof(deTimer)); local
    [all...]
  /external/eigen/bench/
sparse_setter.cpp 37 timer.reset(); \
39 timer.start(); \
42 } timer.stop(); }
67 BenchTimer timer; local
114 std::cout << "Eigen Dense\t" << timer.value() << "\n";
122 // std::cout << "Eigen fillrand\t" << timer.value() << "\n";
126 std::cout << "Eigen dynamic\t" << timer.value() << "\n";
130 // std::cout << "Eigen compact\t" << timer.value() << "\n";
134 std::cout << "Eigen sumeq\t" << timer.value() << "\n";
138 // std::cout << "Eigen std::map\t" << timer.value() << "\n"
    [all...]
  /external/eigen/bench/spbench/
spbenchsolver.h 222 BenchTimer timer; local
223 timer.reset();
224 timer.start();
231 timer.stop();
232 compute_time = timer.value();
234 statbuf << " <COMPUTE> " << timer.value() << "</COMPUTE>\n";
235 std::cout<< "COMPUTE TIME : " << timer.value() <<std::endl;
237 timer.reset();
238 timer.start();
245 timer.stop()
    [all...]
  /external/iputils/
tftpd.c 337 void timer(int signo) function
357 signal(SIGALRM, timer);
427 signal(SIGALRM, timer);
  /external/libnfc-nci/src/nfc/int/
ce_int.h 92 TIMER_LIST_ENT timer; /* timeout for update file */ member in struct:__anon28153
  /external/libvpx/libvpx/examples/
vpx_temporal_scalable_patterns.c 597 struct vpx_usec_timer timer; local
611 vpx_usec_timer_start(&timer);
616 vpx_usec_timer_mark(&timer);
617 cx_time += vpx_usec_timer_elapsed(&timer);
  /external/nist-sip/java/gov/nist/javax/sip/clientauthutils/
AuthenticationHelperImpl.java 30 import java.util.Timer;
82 Timer timer; field in class:AuthenticationHelperImpl
  /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/qemu/telephony/
sysdeps_qemu.c 15 #include "qemu/timer.h"
51 QEMUTimer* timer; member in struct:SysTimerRec_
75 SysTimer timer = _s_free_timers; local
77 if (timer != NULL) {
78 _s_free_timers = timer->next;
79 timer->next = NULL;
80 timer->timer = NULL;
82 return timer;
87 sys_timer_free( SysTimer timer )
101 SysTimer timer = sys_timer_alloc(); local
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/examples/
vpx_temporal_scalable_patterns.c 597 struct vpx_usec_timer timer; local
611 vpx_usec_timer_start(&timer);
616 vpx_usec_timer_mark(&timer);
617 cx_time += vpx_usec_timer_elapsed(&timer);
  /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...]
LabelDialogFragment.java 37 import com.android.deskclock.timer.TimerObj;
46 private static final String KEY_TIMER = "timer";
61 public static LabelDialogFragment newInstance(TimerObj timer, String label, String tag) {
65 args.putParcelable(KEY_TIMER, timer);
83 final TimerObj timer = bundle.getParcelable(KEY_TIMER); local
94 set(alarm, timer, tag);
128 set(alarm, timer, tag);
138 private void set(Alarm alarm, TimerObj timer, String tag) {
147 } else if (timer != null) {
148 set(timer, tag, label)
    [all...]
  /packages/apps/DeskClock/src/com/android/deskclock/timer/
FragmentStatePagerAdapter2.java 17 package com.android.deskclock.timer;
36 * onPause, in order to bind the newly created timer view with the new pager fragment.
TimerAlertFullScreen.java 15 package com.android.deskclock.timer;
30 import com.android.deskclock.timer.TimerFullScreenFragment.OnEmptyListListener;
33 * Timer alarm alert: pops visible indicator. This activity is the version which
40 private static final String FRAGMENT = "timer";
116 * this is called when a second timer is triggered while a previous alert
TimerItemFragment.java 17 package com.android.deskclock.timer;
TimerListItem.java 17 package com.android.deskclock.timer;
141 // Used by animator to animate the size of a timer
TimerFragment.java 17 package com.android.deskclock.timer;
219 // Process extras that were sent to the app and were intended for the timer fragment
342 private void setTimerViewFabIcon(TimerObj timer) {
344 if (context == null || timer == null || mFab == null) {
348 switch (timer.mState) {
405 // If not show, means transiting from timer view to setup view,
431 // Timer is at Setup View, so fab is "play", rotate from setup view to timer view
440 // Go to the newly created timer view
455 // Timer is at view pager, so fab is "play" or "pause" or "square that means reset
567 final TimerObj timer = getCurrentTimer(); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
GestureToolTip.java 73 /** The new value for {@link #mBelow} when the timer expires */
76 /** The new value for {@link #mToRightOf} when the timer expires */
118 * are queued up with a timer (unless it's been a while since the last change, in
159 // to flicker, instead we react on a timer to changes in alignment below.
184 // Yes, so schedule a timer (unless one is already scheduled)
187 final Runnable timer = new Runnable() { local
203 mShell.getDisplay().timerExec(TIMEOUT_MS, timer);
  /external/chromium_org/chrome/browser/metrics/variations/
variations_service.cc 17 #include "base/timer/elapsed_timer.h"
553 const base::ElapsedTimer timer; local
571 UMA_HISTOGRAM_TIMES("Variations.SimulateSeed.Duration", timer.Elapsed());
  /external/chromium_org/net/proxy/
dhcp_proxy_script_fetcher_win_unittest.cc 15 #include "base/timer/elapsed_timer.h"
580 base::ElapsedTimer timer; local
584 // Assert that the time passed is definitely less than the wait timer
589 timer.Elapsed());
  /external/chromium_org/third_party/icu/source/test/intltest/
tzfmttst.cpp 271 // timer for performance analysis
272 UDate timer; local
330 timer = Calendar::getNow();
426 times[patidx] += (Calendar::getNow() - timer);
  /external/libnfc-nci/src/nfa/int/
nfa_snep_int.h 184 TIMER_LIST_ENT timer; /* timer for client */ member in struct:__anon28059
  /external/linux-tools-perf/perf-3.12.0/tools/perf/util/
hist.h 194 void (*timer)(void *arg); member in struct:hist_browser_timer

Completed in 925 milliseconds

1 2 3 4 5 6 7 891011>>