Home | History | Annotate | Download | only in src

Lines Matching refs:rest

99    * need to adjust TimerList->rest (yet).
102 ticks = RESTVAL(itimer) - TimerList->rest;
106 if (ticks + t->rest >= tp->load)
108 ticks += t->rest;
113 tp->rest = tp->load - ticks;
117 "timer[%p], delta = %ld\n", tp->name, tp, t->name, t, tp->rest);
130 t->rest -= tp->rest;
164 t->next->rest += RESTVAL(itimer); /* t (tp) was the first in the list */
166 t->next->rest += t->rest;
167 if (!pt && t->next->rest > 0) /* t->next is now the first in the list */
205 tp->rest = 0;
215 } while (tp && tp->rest == 0);
239 long rest;
243 * happening. Changing TimerList->rest might cause it to become zero
249 rest = RESTVAL(itimer) - TimerList->rest;
251 rest = 0;
257 pt->name, pt, SECS(pt->load), HSECS(pt->load), SECS(rest), \
258 HSECS(rest), tState2Nam(pt->state)
264 rest += pt->rest;
285 itimer.it_value.tv_sec = TimerList->rest / SECTICKS;
286 itimer.it_value.tv_usec = (TimerList->rest % SECTICKS) * TICKUNIT;