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

1 2 3 45 6 7 8 91011>>

  /prebuilts/ndk/9/platforms/android-5/arch-arm/usr/include/linux/sunrpc/
types.h 15 #include <linux/timer.h>
  /prebuilts/ndk/9/platforms/android-8/arch-arm/usr/include/linux/sunrpc/
types.h 15 #include <linux/timer.h>
  /prebuilts/ndk/9/platforms/android-9/arch-arm/usr/include/linux/sunrpc/
types.h 15 #include <linux/timer.h>
  /prebuilts/ndk/9/platforms/android-9/arch-mips/usr/include/linux/sunrpc/
types.h 15 #include <linux/timer.h>
  /prebuilts/ndk/9/platforms/android-9/arch-x86/usr/include/linux/sunrpc/
types.h 15 #include <linux/timer.h>
  /external/chromium_org/tools/telemetry/telemetry/web_perf/metrics/
rendering_stats_unittest.py 22 """A mock timer class which can generate random durations.
24 An instance of this class is used as a global timer to generate random
201 timer = MockTimer()
212 AddMainThreadRenderingStats(timer, thread_without_frames, True, None)
219 AddImplThreadRenderingStats(timer, thread_with_frames, True, None)
224 timer = MockTimer()
233 timer.Advance(2, 4)
234 renderer_main.BeginSlice('webkit.console', 'ActionA', timer.Get(), '')
237 AddMainThreadRenderingStats(timer, renderer_main, first, None)
238 AddImplThreadRenderingStats(timer, renderer_compositor, first, None
    [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/
timer.hpp 1 // boost timer.hpp header file ---------------------------------------------//
7 // See http://www.boost.org/libs/timer for documentation.
31 // timer -------------------------------------------------------------------//
33 // A timer object measures elapsed time.
44 class timer class in namespace:boost
47 timer() { _start_time = std::clock(); } // postcondition: elapsed()==0 function in class:boost::timer
48 // timer( const timer& src ); // post: elapsed()==src.elapsed()
49 // ~timer(){}
50 // timer& operator=( const timer& src ); // post: elapsed()==src.elapsed(
    [all...]
  /packages/apps/DeskClock/src/com/android/deskclock/timer/
TimerFragmentAdapter.java 17 package com.android.deskclock.timer;
54 public void addTimer(TimerObj timer) {
55 // Newly created timer should always show on the top of the list
56 mTimerList.add(0, timer);
83 TimerObj timer = mTimerList.get(i); local
84 if (timer.mTimerId == id) {
85 if (timer.mView != null) {
86 timer.mView.stop();
88 timer.deleteFromSharedPref(mSharedPrefs);
  /external/chromium_org/third_party/tcmalloc/chromium/src/tests/
getpc_test.cc 64 struct itimerval timer; local
65 timer.it_interval.tv_sec = 0;
66 timer.it_interval.tv_usec = 1000;
67 timer.it_value = timer.it_interval;
68 setitimer(ITIMER_PROF, &timer, 0);
  /external/chromium_org/third_party/tcmalloc/vendor/src/tests/
getpc_test.cc 64 struct itimerval timer; local
65 timer.it_interval.tv_sec = 0;
66 timer.it_interval.tv_usec = 1000;
67 timer.it_value = timer.it_interval;
68 setitimer(ITIMER_PROF, &timer, 0);
  /external/chromium_org/ui/events/ozone/evdev/libgestures_glue/
gesture_timer_provider.cc 9 #include "base/timer/timer.h"
55 GesturesTimer* timer,
59 timer->Set(delay, callback, callback_data);
62 void GesturesTimerCancel(void* data, GesturesTimer* timer) { timer->Cancel(); }
64 void GesturesTimerFree(void* data, GesturesTimer* timer) { delete timer; }
  /external/compiler-rt/test/asan/TestCases/Linux/
uar_signals.cc 32 struct itimerval timer; local
33 timer.it_interval.tv_sec = 0;
34 timer.it_interval.tv_usec = 1;
35 timer.it_value = timer.it_interval;
36 if (setitimer(ITIMER_PROF, &timer, 0) != 0) {
  /external/eigen/bench/
sparse_trisolver.cpp 30 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.value() << " (inplace)" << endl
    [all...]
sparse_transpose.cpp 29 timer.reset(); \
31 timer.start(); \
34 } timer.stop(); }
44 BenchTimer timer; local
55 std::cout << " Eigen dense:\t" << timer.value() << endl;
64 std::cout << " Eigen:\t" << timer.value() << endl;
74 std::cout << " CSparse:\t" << timer.value() << endl;
85 std::cout << " GMM:\t\t" << timer.value() << endl;
95 std::cout << " MTL4:\t\t" << timer.value() << endl;
sparse_cholesky.cpp 34 timer.reset(); \
36 timer.start(); \
39 } timer.stop(); }
67 BenchTimer timer; local
68 timer.start();
70 timer.stop();
71 std::cout << ":\t" << timer.value() << endl;
82 BenchTimer timer; local
109 // std::cout << "dense:\t" << timer.value() << endl;
111 BenchTimer timer; local
    [all...]
  /external/chromium_org/chrome/browser/resources/cryptotoken/
countdown.js 6 * @fileoverview Provides a countdown-based timer.
11 * A countdown timer.
17 * Sets a new timeout for this timer.
24 /** Clears this timer's timeout. */
28 * @return {number} how many milliseconds are remaining until the timer expires.
32 /** @return {boolean} whether the timer has expired. */
36 * Constructs a new clone of this timer, while overriding its callback.
37 * @param {Function=} cb callback for new timer.
43 * Constructs a new timer. The timer has a very limited resolution, and doe
    [all...]
  /external/qemu/telephony/
sysdeps_posix.c 346 SysTimer timer = _s_free_timers; local
347 assert( timer != NULL && "too many timers allocated" );
348 _s_free_timers = timer->next;
349 timer->next = NULL;
350 return timer;
354 void sys_timer_unset( SysTimer timer )
356 if (timer->callback != NULL) {
363 if (node == timer) {
369 timer->next = NULL;
370 timer->callback = NULL
486 SysTimer timer = _s_timers; local
511 SysTimer timer; local
    [all...]
sysdeps.h 70 extern void sys_timer_set( SysTimer timer, SysTime when, SysCallback callback, void* opaque );
71 extern void sys_timer_unset( SysTimer timer );
72 extern void sys_timer_destroy( SysTimer timer );
  /external/chromium_org/third_party/WebKit/Source/core/frame/
DeviceEventControllerBase.cpp 24 void DeviceEventControllerBase::oneShotCallback(Timer<DeviceEventControllerBase>* timer)
26 ASSERT_UNUSED(timer, timer == &m_timer);
  /external/chromium_org/third_party/skia/tools/
bench_record.cpp 21 typedef WallTimer Timer;
33 "Try to make timer overhead at most this fraction of our sample measurements.");
83 // Rerecord once to see how many times we should loop to make timer overhead insignificant.
84 Timer timer; local
86 timer.start(timescale());
88 timer.end();
89 } while (timer.fWall < timerOverhead); // Loop just in case something bizarre happens.
91 // We want (timer overhead / measurement) to be less than FLAGS_overheadGoal.
93 const int loops = (int)ceil(timerOverhead / timer.fWall / FLAGS_overheadGoal)
135 Timer timer; local
    [all...]
  /external/skia/tools/
bench_record.cpp 19 #include "Timer.h"
31 "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()
134 WallTimer timer; local
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/timer/riscos/
SDL_systimer.c 37 /* Timer SDL_arraysize(Timer ),start/reset time */
39 /* Timer running function */
132 /* Non-threaded version of timer */
154 to detect if we need to check the timer */
182 /* Threaded version of timer - based on code for linux */
188 static SDL_Thread *timer = NULL; variable
205 timer = SDL_CreateThread(RunTimer, NULL);
206 if ( timer == NULL )
214 if ( timer ) {
    [all...]
  /external/arduino/hardware/arduino/cores/arduino/
wiring_digital.c 66 //static inline void turnOffPWM(uint8_t timer) __attribute__ ((always_inline));
67 //static inline void turnOffPWM(uint8_t timer)
68 static void turnOffPWM(uint8_t timer)
70 switch (timer)
126 uint8_t timer = digitalPinToTimer(pin); local
135 if (timer != NOT_ON_TIMER) turnOffPWM(timer);
154 uint8_t timer = digitalPinToTimer(pin); local
162 if (timer != NOT_ON_TIMER) turnOffPWM(timer);
    [all...]
  /external/chromium_org/components/domain_reliability/
dispatcher.cc 11 #include "base/timer/timer.h"
18 scoped_ptr<MockableTime::Timer> timer,
24 scoped_ptr<MockableTime::Timer> timer; member in struct:domain_reliability::DomainReliabilityDispatcher::Task
31 scoped_ptr<MockableTime::Timer> timer,
35 timer(timer.Pass())
    [all...]
  /developers/samples/android/wearable/wear/Timer/Wearable/src/main/java/com/example/android/timer/util/
Constants.java 17 package com.example.android.timer.util;
26 public static final String DATA_ITEM_PATH = "/timer";
34 = "com.android.example.clockwork.timer.ACTION_SHOW";
36 = "com.android.example.clockwork.timer.ACTION_DELETE";
38 = "com.android.example.clockwork.timer.ACTION_RESTART";

Completed in 701 milliseconds

1 2 3 45 6 7 8 91011>>