Searched refs:timers (Results 1 - 3 of 3) sorted by relevance

/xsrc/external/mit/pixman/dist/pixman/
H A Dpixman-timer.c32 static pixman_timer_t *timers; variable in typeref:typename:pixman_timer_t *
39 for (timer = timers; timer != NULL; timer = timer->next)
62 timer->next = timers;
63 timers = timer;
/xsrc/external/mit/xorg-server.old/dist/os/
H A DWaitFor.c128 static OsTimerPtr timers = NULL; variable in typeref:typename:OsTimerPtr
198 if (timers)
201 timeout = timers->expires - now;
202 if (timeout > 0 && timeout > timers->delta + 250) {
203 /* time has rewound. reset the timers. */
207 if (timers) {
208 timeout = timers->expires - now;
272 if (timers)
276 if ((int) (timers->expires - now) <= 0)
279 while (timers
[all...]
/xsrc/external/mit/xorg-server/dist/os/
H A DWaitFor.c110 static volatile struct xorg_list timers; variable in typeref:typename:volatile struct xorg_list
116 if (timers.next == &timers)
118 return xorg_list_first_entry(&timers, struct _OsTimerRec, list);
123 * any expired timers
141 /* time has rewound. reset the timers. */
263 xorg_list_for_each_entry(timer, &timers, list) {
334 xorg_list_for_each_entry(existing, &timers, list)
337 /* This even works at the end of the list -- existing->list will be timers */
394 xorg_list_init((struct xorg_list*) &timers);
[all...]

Completed in 3 milliseconds