Lines Matching refs:delay
377 static void hystart_update(struct sock *sk, u32 delay) in hystart_update() argument
408 if (ca->curr_rtt > delay) in hystart_update()
409 ca->curr_rtt = delay; in hystart_update()
411 if (ca->curr_rtt == 0 || ca->curr_rtt > delay) in hystart_update()
412 ca->curr_rtt = delay; in hystart_update()
437 u32 delay; in bictcp_acked() local
447 delay = (sample->rtt_us << 3) / USEC_PER_MSEC; in bictcp_acked()
448 if (delay == 0) in bictcp_acked()
449 delay = 1; in bictcp_acked()
452 if (ca->delay_min == 0 || ca->delay_min > delay) in bictcp_acked()
453 ca->delay_min = delay; in bictcp_acked()
458 hystart_update(sk, delay); in bictcp_acked()