Home
last modified time | relevance | path

Searched refs:time_change (Results 1 – 1 of 1) sorted by relevance

/f-stack/lib/
H A Dff_kern_timeout.c1058 adjust_timeout_calltodo(struct timeval *time_change) in adjust_timeout_calltodo() argument
1069 if (time_change->tv_sec < 0) in adjust_timeout_calltodo()
1071 else if (time_change->tv_sec <= LONG_MAX / 1000000) in adjust_timeout_calltodo()
1072 delta_ticks = howmany(time_change->tv_sec * 1000000 + in adjust_timeout_calltodo()
1073 time_change->tv_usec, tick) + 1; in adjust_timeout_calltodo()
1074 else if (time_change->tv_sec <= LONG_MAX / hz) in adjust_timeout_calltodo()
1075 delta_ticks = time_change->tv_sec * hz + in adjust_timeout_calltodo()
1076 howmany(time_change->tv_usec, tick) + 1; in adjust_timeout_calltodo()