Lines Matching refs:to_ticks
298 callout_get_bucket(int to_ticks) in callout_get_bucket() argument
300 return (to_ticks & callwheelmask); in callout_get_bucket()
352 int to_ticks, void (*func)(void *), void *arg, int cpu, int flags) in callout_cc_add() argument
365 c->c_time = ticks + to_ticks; in callout_cc_add()
629 timeout(timeout_t *ftn, void *arg, int to_ticks)
643 callout_reset(new, to_ticks, ftn, arg);
693 callout_reset_tick_on(struct callout *c, int to_ticks, in callout_reset_tick_on() argument
765 if (to_ticks <= 0) in callout_reset_tick_on()
766 to_ticks = 1; in callout_reset_tick_on()
768 callout_cc_add(c, cc, to_ticks, ftn, arg, cpu, flags); in callout_reset_tick_on()
770 cancelled ? "re" : "", c, c->c_func, c->c_arg, to_ticks); in callout_reset_tick_on()
780 callout_schedule_on(struct callout *c, int to_ticks, int cpu) in callout_schedule_on() argument
782 return callout_reset_on(c, to_ticks, c->c_func, c->c_arg, cpu); in callout_schedule_on()
786 callout_schedule(struct callout *c, int to_ticks) in callout_schedule() argument
788 return callout_reset_on(c, to_ticks, c->c_func, c->c_arg, c->c_cpu); in callout_schedule()