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

12 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/skia/tools/
DumpRecord.cpp 36 BenchTimer timer; local
37 timer.start();
39 timer.end();
41 this->print(command, timer.fCpu);
  /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/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/deqp/framework/delibs/deutil/
deTimerTest.c 21 * \brief Periodic timer test.
46 deTimer* timer = DE_NULL; local
51 timer = deTimer_create(timerCallback, (void*)&numCalls);
52 DE_TEST_ASSERT(timer);
61 printf("Iter %d / %d: %d ms %s timer\n", iter+1, numIters, interval, (isSingle ? "single" : "interval"));
65 scheduleOk = deTimer_scheduleSingle(timer, interval);
67 scheduleOk = deTimer_scheduleInterval(timer, interval);
72 deTimer_disable(timer);
75 printf(" timer fired %d times, expected %d\n", numCalls, expectedCalls);
79 deTimer_destroy(timer);
    [all...]
  /external/eigen/bench/
benchFFT.cpp 66 BenchTimer timer; local
67 timer.reset();
69 timer.start();
76 timer.stop();
80 double mflops = 5.*nfft*log2((double)nfft) / (1e6 * timer.value() / (double)nits );
94 cout << " NFFT=" << nfft << " " << (double(1e-6*nfft*nits)/timer.value()) << " MS/s " << mflops << "MFLOPS\n";
benchGeometry.cpp 65 BenchTimer timer; local
66 timer.reset();
69 timer.start();
72 timer.stop();
74 cout << setprecision(4) << fixed << timer.value() << "s " << endl;;
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;
  /external/jmdns/src/javax/jmdns/impl/tasks/
RecordReaper.java 7 import java.util.Timer;
38 * @see javax.jmdns.impl.tasks.DNSTask#start(java.util.Timer)
41 public void start(Timer timer) {
43 timer.schedule(this, DNSConstants.RECORD_REAPER_INTERVAL, DNSConstants.RECORD_REAPER_INTERVAL);
  /external/qemu/distrib/sdl-1.2.15/src/timer/beos/
SDL_systimer.c 52 static SDL_Thread *timer = NULL; variable
69 timer = SDL_CreateThread(RunTimer, NULL);
70 if ( timer == NULL )
78 if ( timer ) {
79 SDL_WaitThread(timer, NULL);
80 timer = NULL;
86 SDL_SetError("Internal logic error: BeOS uses threaded timer");
  /external/qemu/distrib/sdl-1.2.15/src/timer/dc/
SDL_systimer.c 57 static SDL_Thread *timer = NULL; variable
74 timer = SDL_CreateThread(RunTimer, NULL);
75 if ( timer == NULL )
83 if ( timer ) {
84 SDL_WaitThread(timer, NULL);
85 timer = NULL;
91 SDL_SetError("Internal logic error: DC uses threaded timer");
  /external/qemu/distrib/sdl-1.2.15/src/timer/symbian/
SDL_systimer.cpp 66 static SDL_Thread *timer = NULL; variable
84 if(timer != NULL)
87 timer = SDL_CreateThread(RunTimer, NULL);
88 if ( timer == NULL )
96 if ( timer )
98 SDL_WaitThread(timer, NULL);
99 timer = NULL;
105 SDL_SetError("Internal logic error: Epoc uses threaded timer");
  /external/skia/tools/
DumpRecord.cpp 14 #include "Timer.h"
36 Timer timer; local
37 timer.start();
39 timer.end();
41 this->print(command, timer.fCpu);
  /external/srec/portable/src/
ptimer.c 44 * Creates a new timer object.
46 ESR_ReturnCode PTimerCreate(PTimer **timer)
50 if (timer == NULL)
65 *timer = tmp;
69 ESR_ReturnCode PTimerDestroy(PTimer *timer)
71 if (timer == NULL) return ESR_INVALID_ARGUMENT;
72 FREE(timer);
77 * Starts the timer. This sets the reference time from which all new elapsed
79 * useful to pause the timer.
81 ESR_ReturnCode PTimerStart(PTimer *timer)
158 timer_t timer; member in struct:PTimer_t
    [all...]
  /prebuilts/ndk/4/platforms/android-3/arch-arm/usr/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)
  /prebuilts/ndk/4/platforms/android-4/arch-arm/usr/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)
  /prebuilts/ndk/4/platforms/android-5/arch-arm/usr/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)
  /prebuilts/ndk/4/platforms/android-5/arch-x86/usr/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)
  /prebuilts/ndk/4/platforms/android-8/arch-arm/usr/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)
  /prebuilts/ndk/4/platforms/android-8/arch-x86/usr/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)
  /prebuilts/ndk/5/platforms/android-3/arch-arm/usr/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)
  /prebuilts/ndk/6/platforms/android-3/arch-arm/usr/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)
  /prebuilts/ndk/6/platforms/android-3/arch-x86/usr/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)
  /prebuilts/ndk/7/platforms/android-14/arch-arm/usr/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)
  /prebuilts/ndk/7/platforms/android-14/arch-x86/usr/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)

Completed in 2167 milliseconds

12 3 4 5 6 7 8 91011>>