Lines Matching refs:delta

438 callout_queue_process(callout_table_t *ct, hrtime_t delta, int timechange)  in callout_queue_process()  argument
485 if (delta && !(cl->cl_flags & CALLOUT_LIST_FLAG_ABSOLUTE)) { in callout_queue_process()
486 expiration = cl->cl_expiration + delta; in callout_queue_process()
860 callout_heap_process(callout_table_t *ct, hrtime_t delta, int timechange) in callout_heap_process() argument
932 if (delta && !(cl->cl_flags & CALLOUT_LIST_FLAG_ABSOLUTE)) { in callout_heap_process()
935 expiration = cl->cl_expiration + delta; in callout_heap_process()
1195 timeout(void (*func)(void *), void *arg, clock_t delta) in timeout() argument
1202 if (delta <= 0) in timeout()
1203 delta = 1; in timeout()
1204 else if (delta > callout_max_ticks) in timeout()
1205 delta = callout_max_ticks; in timeout()
1208 TICK_TO_NSEC(delta), nsec_per_tick, CALLOUT_LEGACY); in timeout()
1218 timeout_default(void (*func)(void *), void *arg, clock_t delta) in timeout_default() argument
1225 if (delta <= 0) in timeout_default()
1226 delta = 1; in timeout_default()
1227 else if (delta > callout_max_ticks) in timeout_default()
1228 delta = callout_max_ticks; in timeout_default()
1230 id = timeout_generic(CALLOUT_NORMAL, func, arg, TICK_TO_NSEC(delta), in timeout_default()
1237 realtime_timeout(void (*func)(void *), void *arg, clock_t delta) in realtime_timeout() argument
1244 if (delta <= 0) in realtime_timeout()
1245 delta = 1; in realtime_timeout()
1246 else if (delta > callout_max_ticks) in realtime_timeout()
1247 delta = callout_max_ticks; in realtime_timeout()
1250 TICK_TO_NSEC(delta), nsec_per_tick, CALLOUT_LEGACY); in realtime_timeout()
1260 realtime_timeout_default(void (*func)(void *), void *arg, clock_t delta) in realtime_timeout_default() argument
1267 if (delta <= 0) in realtime_timeout_default()
1268 delta = 1; in realtime_timeout_default()
1269 else if (delta > callout_max_ticks) in realtime_timeout_default()
1270 delta = callout_max_ticks; in realtime_timeout_default()
1272 id = timeout_generic(CALLOUT_REALTIME, func, arg, TICK_TO_NSEC(delta), in realtime_timeout_default()
1665 callout_resume(hrtime_t delta, int timechange) in callout_resume() argument
1694 hexp = callout_heap_process(ct, delta, timechange); in callout_resume()
1695 qexp = callout_queue_process(ct, delta, timechange); in callout_resume()
1735 hrtime_t delta; in callout_debug_callb() local
1746 delta = gethrtime() - callout_debug_hrtime; in callout_debug_callb()
1747 callout_resume(delta, 0); in callout_debug_callb()