Lines Matching defs:next_time_out
367 u_int32_t next_time_out = 1; /* remove init! */
405 next_time_out = v.num / v.denom;
406 if (next_time_out < TFRC_INITIAL_TIMEOUT * 1000000)
407 next_time_out = TFRC_INITIAL_TIMEOUT * 1000000;
455 next_time_out = v.num / v.denom;
456 if (next_time_out < cb->t_rto)
457 next_time_out = cb->t_rto;
466 next_time_out = next_time_out / (1000000 / hz);
467 if (next_time_out == 0)
468 next_time_out = 1;
470 TFRC_DEBUG_TIME((LOG_INFO, "TFRC scheduled no feedback timer to expire in %u ticks (hz=%u)\n", next_time_out, hz));
472 callout_reset(&cb->ch_nftimer, next_time_out, tfrc_time_no_feedback, cb);
826 u_int32_t next_time_out;
992 /* next_time_out = (u_int32_t) (2 * cb->s * 1000000 / cb->x); */
1002 next_time_out = x.num / x.denom;
1004 if (next_time_out < cb->t_rto)
1005 next_time_out = cb->t_rto;
1008 next_time_out / (1000000 / hz), next_time_out, hz));
1009 next_time_out = next_time_out / (1000000 / hz);
1010 if (next_time_out == 0)
1011 next_time_out = 1;
1013 callout_reset(&cb->ch_nftimer, next_time_out, tfrc_time_no_feedback, cb);