Searched refs:timer (Results 1 - 25 of 207) sorted by relevance

123456789

/external/libcxxabi/test/support/
H A Dtimer.hpp4 // Define LIBCXXABI_NO_TIMER to disable testing with a timer.
10 class timer class
16 timer() : m_start(Clock::now()) {} function in class:timer
18 timer(timer const &) = delete;
19 timer & operator=(timer const &) = delete;
21 ~timer()
35 class timer class
38 timer() {} function in class:timer
[all...]
/external/deqp/framework/delibs/deutil/
H A DdeTimer.c21 * \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
64 deTimer_destroy(deTimer* timer) argument
74 deTimer_isActive(const deTimer* timer) argument
79 deTimer_scheduleSingle(deTimer* timer, int milliseconds) argument
99 deTimer_scheduleInterval(deTimer* timer, int milliseconds) argument
119 deTimer_disable(deTimer* timer) argument
165 timer_t timer; member in struct:deTimer_s
172 const deTimer* timer = (const deTimer*)val.sival_ptr; local
178 deTimer* timer = (deTimer*)deCalloc(sizeof(deTimer)); local
202 deTimer_destroy(deTimer* timer) argument
210 deTimer_isActive(const deTimer* timer) argument
215 deTimer_scheduleSingle(deTimer* timer, int milliseconds) argument
236 deTimer_scheduleInterval(deTimer* timer, int milliseconds) argument
257 deTimer_disable(deTimer* timer) argument
383 deTimer* timer = (deTimer*)deCalloc(sizeof(deTimer)); local
394 deTimer_destroy(deTimer* timer) argument
401 deTimer_isActive(const deTimer* timer) argument
417 deTimer_scheduleSingle(deTimer* timer, int milliseconds) argument
428 deTimer_scheduleInterval(deTimer* timer, int milliseconds) argument
439 deTimer_disable(deTimer* timer) argument
[all...]
H A DdeTimer.h23 * \brief Periodic timer.
35 void deTimer_destroy (deTimer* timer);
37 deBool deTimer_scheduleSingle (deTimer* timer, int milliseconds);
38 deBool deTimer_scheduleInterval (deTimer* timer, int milliseconds);
40 deBool deTimer_isActive (const deTimer* timer);
41 void deTimer_disable (deTimer* timer);
H A DdeTimerTest.c21 * \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/jemalloc/test/src/
H A Dtimer.c4 timer_start(timedelta_t *timer) argument
9 timer->clock_id = CLOCK_REALTIME;
11 timer->clock_id = CLOCK_MONOTONIC;
12 clock_gettime(timer->clock_id, &timer->tv0);
14 gettimeofday(&timer->tv0, NULL);
19 timer_stop(timedelta_t *timer) argument
23 clock_gettime(timer->clock_id, &timer->tv1);
25 gettimeofday(&timer
30 timer_usec(const timedelta_t *timer) argument
[all...]
/external/eigen/bench/
H A Dsparse_lu.cpp34 timer.reset(); \
36 timer.start(); \
39 } timer.stop(); }
49 BenchTimer timer; timer.start(); local
51 timer.stop();
53 std::cout << ":\t" << timer.value() << endl;
61 timer.reset(); timer.start();
63 timer
77 BenchTimer timer; local
99 BenchTimer timer; local
[all...]
H A Dsparse_dense_product.cpp29 timer.reset(); \
31 timer.start(); \
34 } timer.stop(); }
62 BenchTimer timer; local
75 timer.reset();
76 timer.start();
79 timer.stop();
80 std::cout << " a * v:\t" << timer.best() << " " << double(REPEAT)/timer.best() << " * / sec " << endl;
82 timer
[all...]
H A Dsparse_product.cpp31 timer.reset(); \
33 timer.start(); \
36 } timer.stop(); }
106 BenchTimer timer; local
123 timer.reset();
124 timer.start();
127 timer.stop();
128 std::cout << " a * b:\t" << timer.value() << endl;
130 timer.reset();
131 timer
[all...]
H A Dsparse_trisolver.cpp30 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
[all...]
H A Dsparse_transpose.cpp29 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;
H A Dsparse_cholesky.cpp34 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...]
H A Dbasicbenchmark.h51 Eigen::BenchTimer timer; local
55 timer.start();
57 timer.stop();
60 return timer.value();
H A DbenchVecAdd.cpp34 BenchTimer timer; local
36 timer.reset();
39 timer.start();
41 timer.stop();
43 std::cout << timer.value() << "s " << (double(size2*REPEAT)/timer.value())/(1024.*1024.*1024.) << " GFlops\n";
53 timer.reset();
56 timer.start();
58 timer.stop();
60 std::cout << innersize << " x " << outersize << " " << timer
[all...]
/external/valgrind/memcheck/tests/linux/
H A Dtimerfd-syscall.stderr.exp8 relative timer test (at 500 ms) ...
9 waiting timer ...
10 got timer ticks (1) after 0.5 s
11 absolute timer test (at 500 ms) ...
12 waiting timer ...
13 got timer ticks (1) after 0.5 s
14 sequential timer test (100 ms clock) ...
19 waiting timer ...
20 got about 20 timer ticks after about 2s
22 waiting timer (flus
[all...]
/external/icu/icu4c/source/tools/ctestfw/unicode/
H A Dutimer.h56 * UTimer timer;
126 * void perf(UTimer* timer, UChar* source, int32_t sourceLen, UChar* target, int32_t targetLen, int32_t loopCount,UNormalizationMode mode, UErrorCode* error){
131 * utimer_getTime(timer);
170 static int uprv_initFrequency(UTimer* timer) argument
172 return QueryPerformanceFrequency(&timer->placeHolder);
174 static void uprv_start(UTimer* timer) argument
176 QueryPerformanceCounter(&timer->start);
192 static int32_t uprv_initFrequency(UTimer* /*timer*/)
196 static void uprv_start(UTimer* timer) argument
198 gettimeofday(&timer
218 utimer_getTime(UTimer* timer) argument
247 utimer_getElapsedSeconds(UTimer* timer) argument
267 UTimer timer; local
[all...]
/external/jemalloc/test/include/test/
H A Dtimer.h1 /* Simple timer, for use in benchmark reporting. */
20 void timer_start(timedelta_t *timer);
21 void timer_stop(timedelta_t *timer);
22 uint64_t timer_usec(const timedelta_t *timer);
/external/eigen/bench/spbench/
H A Dsp_solver.cpp27 BenchTimer timer,totaltime; local
39 timer.start();
53 timer.stop();
71 cout<< "Time to load the matrix " << timer.value() <<endl;
91 timer.reset();
92 timer.start();
102 timer.stop();
103 float time_comp = timer.value();
106 timer.reset();
107 timer
[all...]
H A Dtest_sparseLU.cpp38 BenchTimer timer; local
71 timer.start();
74 timer.stop();
75 cout << "Time to analyze " << timer.value() << std::endl;
76 timer.reset();
77 timer.start();
79 timer.stop();
80 cout << "Factorize Time " << timer.value() << std::endl;
81 timer.reset();
82 timer
[all...]
/external/iptables/include/linux/netfilter/
H A Dxt_IDLETIMER.h4 * Header file for Xtables timer target module.
50 struct idletimer_tg *timer __attribute__((aligned(8))); member in struct:idletimer_tg_info
/external/kernel-headers/original/uapi/linux/netfilter/
H A Dxt_IDLETIMER.h4 * Header file for Xtables timer target module.
42 struct idletimer_tg *timer __attribute__((aligned(8))); member in struct:idletimer_tg_info
/external/compiler-rt/test/asan/TestCases/Linux/
H A Duar_signals.cc32 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/boringssl/include/openssl/
H A Dtime_support.h73 struct tm *OPENSSL_gmtime(const time_t *timer, struct tm *result);
/external/boringssl/src/include/openssl/
H A Dtime_support.h73 struct tm *OPENSSL_gmtime(const time_t *timer, struct tm *result);
/external/nist-sip/java/gov/nist/javax/sip/clientauthutils/
H A DCredentialsCache.java27 private Timer timer; field in class:CredentialsCache
48 CredentialsCache (Timer timer) { argument
49 this.timer = timer;
85 this.timer.schedule(timeoutTask, cacheTime*1000);
/external/v8/tools/
H A Dplot-timer-events55 --log-timer-events -e "$calibration_script" > /dev/null
56 t_1_start=`grep "timer-event-start,\"V8.Execute\"" $calibration_log \
58 t_1_end=`grep "timer-event-end,\"V8.Execute\"" $calibration_log \
60 n_1=`grep "timer-event\|tick" $calibration_log | wc -l`
63 --log-internal-timer-events -e "$calibration_script" > /dev/null
64 t_2_start=`grep "timer-event-start,\"V8.Execute\"" $calibration_log \
66 t_2_end=`grep "timer-event-end,\"V8.Execute\"" $calibration_log \
68 n_2=`grep "timer-event\|tick" $calibration_log | wc -l`
84 -- $@ $options 2>/dev/null > timer-events.plot
88 cat timer
[all...]

Completed in 2217 milliseconds

123456789