HomeSort by relevance Sort by last modified time
    Searched refs:timer (Results 76 - 100 of 795) sorted by null

1 2 34 5 6 7 8 91011>>

  /prebuilts/ndk/9/platforms/android-18/arch-mips/usr/include/linux/sunrpc/
types.h 15 #include <linux/timer.h>
  /prebuilts/ndk/9/platforms/android-18/arch-x86/usr/include/linux/sunrpc/
types.h 15 #include <linux/timer.h>
  /prebuilts/ndk/9/platforms/android-3/arch-arm/usr/include/linux/sunrpc/
types.h 15 #include <linux/timer.h>
  /prebuilts/ndk/9/platforms/android-4/arch-arm/usr/include/linux/sunrpc/
types.h 15 #include <linux/timer.h>
  /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>
  /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...]
  /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/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/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/modules/device_orientation/
DeviceSensorEventController.cpp 48 void DeviceSensorEventController::fireDeviceEvent(Timer<DeviceSensorEventController>* timer)
50 ASSERT_UNUSED(timer, timer == &m_timer);
  /external/dropbear/libtommath/etc/
makefile 19 nasm -f coff timer.asm
20 $(CC) -DX86_TIMER $(CFLAGS) tune.c timer.o $(LIBNAME) -o tune86
24 nasm -f gnuwin32 timer.asm
25 $(CC) -DX86_TIMER $(CFLAGS) tune.c timer.o $(LIBNAME) -o tune86
29 nasm -f elf -DUSE_ELF timer.asm
30 $(CC) -DX86_TIMER $(CFLAGS) tune.c timer.o $(LIBNAME) -o tune86l
  /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/kernel-headers/original/asm-arm/arch/
mtd-xip.h 33 volatile xip_omap_mpu_timer_regs_t* timer = xip_omap_mpu_timer_base(nr); local
34 return timer->read_tim;
54 * the system timer tick period. This should put the CPU into idle mode
  /bionic/libc/kernel/common/linux/
workqueue.h 21 #include <linux/timer.h>
34 struct timer_list timer; member in struct:work_struct
40 #define __WORK_INITIALIZER(n, f, d) { .entry = { &(n).entry, &(n).entry }, .func = (f), .data = (d), .timer = TIMER_INITIALIZER(NULL, 0, 0), }
44 #define INIT_WORK(_work, _func, _data) do { INIT_LIST_HEAD(&(_work)->entry); (_work)->pending = 0; PREPARE_WORK((_work), (_func), (_data)); init_timer(&(_work)->timer); } while (0)
  /development/ndk/platforms/android-3/include/linux/
workqueue.h 15 #include <linux/timer.h>
27 struct timer_list timer; member in struct:work_struct
34 #define __WORK_INITIALIZER(n, f, d) { .entry = { &(n).entry, &(n).entry }, .func = (f), .data = (d), .timer = TIMER_INITIALIZER(NULL, 0, 0), }
40 #define INIT_WORK(_work, _func, _data) do { INIT_LIST_HEAD(&(_work)->entry); (_work)->pending = 0; PREPARE_WORK((_work), (_func), (_data)); init_timer(&(_work)->timer); } while (0)
  /external/chromium_org/chrome/common/extensions/docs/examples/api/messaging/timer/
popup.js 20 var timer = new chrome.Interval();
21 timer.start();
27 timer.stop();
28 var usec = Math.round(timer.microseconds() / response.counter);
40 var timer = new chrome.Interval();
41 timer.start();
49 timer.stop();
50 var usec = Math.round(timer.microseconds() / response.counter);

Completed in 1601 milliseconds

1 2 34 5 6 7 8 91011>>