Lines Matching refs:delta
437 callout_queue_process(callout_table_t *ct, hrtime_t delta, int timechange) in callout_queue_process() argument
484 if (delta && !(cl->cl_flags & CALLOUT_LIST_FLAG_ABSOLUTE)) { in callout_queue_process()
485 expiration = cl->cl_expiration + delta; in callout_queue_process()
859 callout_heap_process(callout_table_t *ct, hrtime_t delta, int timechange) in callout_heap_process() argument
931 if (delta && !(cl->cl_flags & CALLOUT_LIST_FLAG_ABSOLUTE)) { in callout_heap_process()
934 expiration = cl->cl_expiration + delta; in callout_heap_process()
1194 timeout(void (*func)(void *), void *arg, clock_t delta) in timeout() argument
1201 if (delta <= 0) in timeout()
1202 delta = 1; in timeout()
1203 else if (delta > callout_max_ticks) in timeout()
1204 delta = callout_max_ticks; in timeout()
1207 TICK_TO_NSEC(delta), nsec_per_tick, CALLOUT_LEGACY); in timeout()
1217 timeout_default(void (*func)(void *), void *arg, clock_t delta) in timeout_default() argument
1224 if (delta <= 0) in timeout_default()
1225 delta = 1; in timeout_default()
1226 else if (delta > callout_max_ticks) in timeout_default()
1227 delta = callout_max_ticks; in timeout_default()
1229 id = timeout_generic(CALLOUT_NORMAL, func, arg, TICK_TO_NSEC(delta), in timeout_default()
1236 realtime_timeout(void (*func)(void *), void *arg, clock_t delta) in realtime_timeout() argument
1243 if (delta <= 0) in realtime_timeout()
1244 delta = 1; in realtime_timeout()
1245 else if (delta > callout_max_ticks) in realtime_timeout()
1246 delta = callout_max_ticks; in realtime_timeout()
1249 TICK_TO_NSEC(delta), nsec_per_tick, CALLOUT_LEGACY); in realtime_timeout()
1259 realtime_timeout_default(void (*func)(void *), void *arg, clock_t delta) in realtime_timeout_default() argument
1266 if (delta <= 0) in realtime_timeout_default()
1267 delta = 1; in realtime_timeout_default()
1268 else if (delta > callout_max_ticks) in realtime_timeout_default()
1269 delta = callout_max_ticks; in realtime_timeout_default()
1271 id = timeout_generic(CALLOUT_REALTIME, func, arg, TICK_TO_NSEC(delta), in realtime_timeout_default()
1664 callout_resume(hrtime_t delta, int timechange) in callout_resume() argument
1693 hexp = callout_heap_process(ct, delta, timechange); in callout_resume()
1694 qexp = callout_queue_process(ct, delta, timechange); in callout_resume()
1734 hrtime_t delta; in callout_debug_callb() local
1745 delta = gethrtime() - callout_debug_hrtime; in callout_debug_callb()
1746 callout_resume(delta, 0); in callout_debug_callb()