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

1 2 3 4 5 6 7 891011>>

  /external/srtp/test/
rdbx_driver.c 318 clock_t timer; local
327 timer = clock();
338 timer = clock() - timer;
344 return (double) CLOCKS_PER_SEC * num_trials / timer;
  /external/chromium/base/
timer_unittest.cc 8 #include "base/timer.h"
95 // This should run before the timer expires.
98 // Now start the timer.
141 // This should run before the timer expires.
144 // Now start the timer.
177 // If Delay is never called, the timer shouldn't go off.
179 base::DelayTimer<DelayTimerTarget> timer(
194 base::DelayTimer<DelayTimerTarget> timer(
196 timer.Reset();
207 ResetHelper(base::DelayTimer<DelayTimerTarget>* timer,
    [all...]
  /external/chromium_org/third_party/tcmalloc/chromium/src/
profile-handler.cc 66 // Callback function to be invoked on receiving a profile timer interrupt.
77 // have a separate interval timer for each thread, this function starts the
78 // timer for the current thread.
85 // unconditionally start the timer. However, if this function determines
86 // that timers are shared, then it will stop the timer if no callbacks are
90 // Registers a callback routine to receive profile timer ticks. The returned
103 // Unregisters all the callbacks, stops the timer if shared, disables the
149 // No timer initialization attempted yet.
151 // First thread has registered and set timer.
185 // Starts the interval timer. If the thread library shares timers betwee
423 struct itimerval timer; local
434 struct itimerval timer; local
    [all...]
  /external/chromium_org/third_party/tcmalloc/vendor/src/
profile-handler.cc 66 // Callback function to be invoked on receiving a profile timer interrupt.
77 // have a separate interval timer for each thread, this function starts the
78 // timer for the current thread.
85 // unconditionally start the timer. However, if this function determines
86 // that timers are shared, then it will stop the timer if no callbacks are
90 // Registers a callback routine to receive profile timer ticks. The returned
103 // Unregisters all the callbacks, stops the timer if shared, disables the
149 // No timer initialization attempted yet.
151 // First thread has registered and set timer.
185 // Starts the interval timer. If the thread library shares timers betwee
423 struct itimerval timer; local
434 struct itimerval timer; local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
ScriptRunner.cpp 102 void ScriptRunner::timerFired(Timer<ScriptRunner>* timer)
104 ASSERT_UNUSED(timer, timer == &m_timer);
  /external/chromium_org/third_party/WebKit/Source/core/page/
DeviceController.cpp 98 void DeviceController::fireDeviceEvent(Timer<DeviceController>* timer)
100 ASSERT_UNUSED(timer, timer == &m_timer);
  /external/eigen/bench/
sparse_randomsetter.cpp 33 timer.reset(); \
35 timer.start(); \
38 } timer.stop(); }
  /external/jmonkeyengine/engine/src/lwjgl/com/jme3/system/lwjgl/
LwjglContext.java 44 import com.jme3.system.Timer;
66 protected Timer timer; field in class:LwjglContext
151 timer = null;
160 timer = new LwjglTimer();
213 public Timer getTimer() {
214 return timer;
  /external/jmonkeyengine/engine/src/test/jme3test/app/
TestBareBonesApp.java 73 float tpf = timer.getTimePerFrame();
  /external/qemu/hw/
mips.h 35 void *rc4030_init(qemu_irq timer, qemu_irq jazz_bus,
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/alsa/
asoundlib.h 51 #include <alsa/timer.h>
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/alsa/
asoundlib.h 51 #include <alsa/timer.h>
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/alsa/
asoundlib.h 51 #include <alsa/timer.h>
  /external/chromium/base/metrics/
stats_counters.h 129 // A StatsCounterTimer is a StatsCounter which keeps a timer during
134 // Constructs and starts the timer.
138 // Start the timer.
141 // Stop the timer and record the results.
144 // Returns true if the timer is running.
158 // A StatsRate is a timer that keeps a count of the number of intervals added so
163 // Constructs and starts the timer.
175 // Helper class for scoping a timer or rate.
178 explicit StatsScope<T>(T& timer)
179 : timer_(timer) {
    [all...]
  /external/chromium_org/base/metrics/
stats_counters.h 129 // A StatsCounterTimer is a StatsCounter which keeps a timer during
134 // Constructs and starts the timer.
138 // Start the timer.
141 // Stop the timer and record the results.
144 // Returns true if the timer is running.
158 // A StatsRate is a timer that keeps a count of the number of intervals added so
163 // Constructs and starts the timer.
175 // Helper class for scoping a timer or rate.
178 explicit StatsScope<T>(T& timer)
179 : timer_(timer) {
    [all...]
  /external/chromium_org/chrome/browser/sync/glue/
browser_thread_model_worker_unittest.cc 12 #include "base/timer/timer.h"
36 OneShotTimer<SyncBrowserThreadModelWorkerTest>* timer() { return &timer_; } function in class:browser_sync::__anon8204::SyncBrowserThreadModelWorkerTest
48 timer()->Start(
59 timer_.Stop(); // Stop the failure timer so the test succeeds.
  /external/jmdns/src/javax/jmdns/impl/tasks/state/
Canceler.java 8 import java.util.Timer;
52 * @see javax.jmdns.impl.tasks.DNSTask#start(java.util.Timer)
55 public void start(Timer timer) {
56 timer.schedule(this, 0, DNSConstants.ANNOUNCE_WAIT_INTERVAL);
  /external/v8/src/
counters.h 190 // Start the timer.
193 // Stop the timer and record the results.
196 // Returns true if the timer is running.
212 // Start the timer.
215 // Stop the timer and record the results.
218 // Returns true if the timer is running.
240 explicit HistogramTimerScope(HistogramTimer* timer) :
241 timer_(timer) {
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/
progress.hpp 7 // See http://www.boost.org/libs/timer for documentation.
22 #include <boost/timer.hpp>
32 // A progress_timer behaves like a timer except that the destructor displays
35 class progress_timer : public timer, private noncopyable
  /external/chromium/net/disk_cache/
disk_cache_perftest.cc 14 #include "base/timer.h"
60 PerfTimeLogger timer("Write disk cache entries");
89 timer.Done();
113 PerfTimeLogger timer(message);
136 timer.Done();
152 PerfTimeLogger timer("Hash disk cache keys");
157 timer.Done();
  /external/chromium_org/net/disk_cache/
disk_cache_perftest.cc 15 #include "base/timer/timer.h"
56 PerfTimeLogger timer("Write disk cache entries");
88 timer.Done();
110 PerfTimeLogger timer(message);
137 timer.Done();
153 PerfTimeLogger timer("Hash disk cache keys");
158 timer.Done();
  /external/chromium_org/v8/tools/
plot-timer-events 41 --log-timer-events -e "$calibration_script" > /dev/null
42 t_1_start=`grep "timer-event-start,\"V8.Execute\"" $calibration_log \
44 t_1_end=`grep "timer-event-end,\"V8.Execute\"" $calibration_log \
46 n_1=`grep "timer-event\|tick" $calibration_log | wc -l`
49 --log-internal-timer-events -e "$calibration_script" > /dev/null
50 t_2_start=`grep "timer-event-start,\"V8.Execute\"" $calibration_log \
52 t_2_end=`grep "timer-event-end,\"V8.Execute\"" $calibration_log \
54 n_2=`grep "timer-event\|tick" $calibration_log | wc -l`
70 -- $@ $options 2>/dev/null | gnuplot > timer-events.png
  /external/qemu/
buffered_file.c 16 #include "qemu-timer.h"
37 QEMUTimer *timer; member in struct:QEMUFileBuffered
184 qemu_del_timer(s->timer);
185 qemu_free_timer(s->timer);
240 qemu_mod_timer(s->timer, qemu_get_clock_ms(rt_clock) + 100);
276 s->timer = qemu_new_timer_ms(rt_clock, buffered_rate_tick, s);
278 qemu_mod_timer(s->timer, qemu_get_clock_ms(rt_clock) + 100);
  /external/srtp/crypto/cipher/
cipher.c 382 clock_t timer; local
392 timer = clock();
397 timer = clock() - timer;
401 if (timer == 0) {
406 return (uint64_t)CLOCKS_PER_SEC * num_trials * 8 * octets_in_buffer / timer;
  /external/libppp/src/
lqr.c 45 #include "timer.h"
167 timer_Stop(&p->hdlc.lqm.timer);
196 if (p->hdlc.lqm.method && p->hdlc.lqm.timer.load)
197 timer_Start(&p->hdlc.lqm.timer);
250 * Generate an LQR response if we're not running an LQR timer OR
253 if (p->hdlc.lqm.timer.load == 0 || !(p->hdlc.lqm.method & LQM_LQR) ||
281 timer_Stop(&physical->hdlc.lqm.timer);
291 physical->hdlc.lqm.timer.func = SendLqrReport;
292 physical->hdlc.lqm.timer.name = "lqm";
293 physical->hdlc.lqm.timer.arg = lcp
    [all...]

Completed in 1065 milliseconds

1 2 3 4 5 6 7 891011>>