Searched refs:interval (Results 1 - 25 of 160) sorted by relevance

1234567

/external/webkit/WebKit/chromium/src/linux/
H A DWebRenderTheme.cpp42 void setCaretBlinkInterval(double interval) argument
44 RenderThemeChromiumLinux::setCaretBlinkInterval(interval);
/external/iproute2/tc/
H A Dtc_estimator.c28 for (est->interval=0; est->interval<=5; est->interval++) {
29 if (A <= (1<<est->interval)*(TIME_UNITS_PER_SEC/4))
32 if (est->interval > 5)
34 est->interval -= 2;
/external/qemu/distrib/sdl-1.2.12/include/
H A DSDL_timer.h52 typedef Uint32 (SDLCALL *SDL_TimerCallback)(Uint32 interval);
55 * elapsed. The callback function is passed the current timer interval
56 * and returns the next timer interval. If the returned value is the
82 extern DECLSPEC int SDLCALL SDL_SetTimer(Uint32 interval, SDL_TimerCallback callback);
89 * The callback function is passed the current timer interval and returns
90 * the next timer interval. If the returned value is the same as the one
94 typedef Uint32 (SDLCALL *SDL_NewTimerCallback)(Uint32 interval, void *param);
102 extern DECLSPEC SDL_TimerID SDLCALL SDL_AddTimer(Uint32 interval, SDL_NewTimerCallback callback, void *param);
H A DSDL_keyboard.h79 * 'interval' is the time in ms between keyboard repeat events.
86 extern DECLSPEC int SDLCALL SDL_EnableKeyRepeat(int delay, int interval);
87 extern DECLSPEC void SDLCALL SDL_GetKeyRepeat(int *delay, int *interval);
/external/webkit/WebCore/platform/brew/
H A DSharedTimerBrew.cpp57 double interval = fireTime - currentTime(); local
60 if (interval < 0)
63 interval *= 1000;
64 intervalInMS = static_cast<int>(interval);
/external/easymock/src/org/easymock/internal/
H A DResults.java48 Range interval = ranges.get(i);
49 if (interval.hasOpenCount()) {
53 currentPosition += interval.getMaximum();
74 for (Range interval : ranges) {
75 min += interval.getMinimum();
76 if (interval.hasOpenCount() || max == Integer.MAX_VALUE) {
79 max += interval.getMaximum();
/external/netperf/
H A Dnetcpu.h15 extern float calibrate_idle_rate(int iterations, int interval);
H A Dnetcpu_none.c46 calibrate_idle_rate(int iterations, int interval) argument
/external/webkit/WebCore/platform/gtk/
H A DSharedTimerGtk.cpp56 double interval = fireTime - currentTime(); local
58 if (interval < 0)
61 interval *= 1000;
62 intervalInMS = (guint)interval;
/external/webkit/WebCore/wml/
H A DWMLTimerElement.cpp115 void WMLTimerElement::start(int interval) argument
120 if (interval <= 0 && !m_name.isEmpty()) {
122 interval = pageState->getVariable(m_name).toInt();
125 if (interval <= 0)
126 interval = value().toInt();
128 if (interval > 0)
129 m_timer.startOneShot(interval / 10.0f);
143 int interval = static_cast<int>(m_timer.nextFireInterval()) * 10; local
146 pageState->storeVariable(m_name, String::number(interval));
H A DWMLTimerElement.h42 void start(int interval = -1);
/external/webkit/WebCore/platform/wx/
H A DSharedTimerWx.cpp75 double interval = fireTime - currentTime(); local
80 int intervalInMS = interval * 1000;
/external/kernel-headers/original/linux/hdlc/
H A Dioctl.h42 unsigned int interval; member in struct:__anon3227
/external/webkit/WebCore/platform/qt/
H A DSharedTimerQt.cpp82 double interval = fireTime - currentTime(); local
84 if (interval < 0)
87 interval *= 1000;
88 intervalInMS = (unsigned int)interval;
/external/webkit/WebCore/platform/graphics/win/
H A DQTMovieWinTimer.cpp85 void setSharedTimerFireDelay(double interval) argument
90 if (interval < 0)
93 interval *= 1000;
94 if (interval > USER_TIMER_MAXIMUM)
97 intervalInMS = (unsigned)interval;
/external/qemu/distrib/sdl-1.2.12/src/timer/
H A DSDL_timer.c42 Uint32 interval; member in struct:_SDL_TimerID
115 ms = t->interval - SDL_TIMESLICE;
120 if ( (now - t->last_alarm) < t->interval ) {
121 t->last_alarm += t->interval;
131 ms = timer.cb(timer.interval, timer.param);
138 if ( ms != t->interval ) {
140 t->interval = ROUND_RESOLUTION(ms);
165 static SDL_TimerID SDL_AddTimerInternal(Uint32 interval, SDL_NewTimerCallback callback, void *param) argument
170 t->interval = ROUND_RESOLUTION(interval);
185 SDL_AddTimer(Uint32 interval, SDL_NewTimerCallback callback, void *param) argument
[all...]
/external/dbus/dbus/
H A Ddbus-timeout.h43 DBusTimeout* _dbus_timeout_new (int interval,
50 int interval);
/external/webkit/WebCore/platform/
H A DRunLoopTimer.h50 void startOneShot(double interval) { start(interval, 0); } argument
H A DThreadTimers.cpp108 double interval = timer->repeatInterval(); local
109 timer->setNextFireTime(interval ? fireTime + interval : 0);
/external/webkit/WebCore/platform/wince/
H A DSharedTimerWince.cpp103 double interval = (fireTime - currentTime()) * 1000.; local
104 unsigned intervalInMS = interval < USER_TIMER_MINIMUM
106 : interval > USER_TIMER_MAXIMUM
108 : static_cast<unsigned>(interval);
/external/webkit/WebCore/platform/win/
H A DSharedTimerWin.cpp152 double interval = fireTime - currentTime(); local
154 if (interval < 0)
157 interval *= 1000;
158 if (interval > USER_TIMER_MAXIMUM)
161 intervalInMS = (unsigned)interval;
168 if (interval < highResolutionThresholdMsec) {
/external/iproute2/include/linux/
H A Dgen_stats.h62 * @interval: sampling period
67 signed char interval; member in struct:gnet_estimator
/external/iproute2/include/linux/hdlc/
H A Dioctl.h75 unsigned int interval; member in struct:__anon2768
/external/iproute2/misc/
H A Dlnstat.h29 struct timeval interval; /* interval */ member in struct:lnstat_file
/external/quake/quake/src/QW/client/
H A Dspritegn.h99 float interval; member in struct:__anon5200

Completed in 342 milliseconds

1234567