Lines Matching defs:thresh

490 		  uint32_t thresh, uint32_t to);
561 uint32_t thresh, exp, to, srtt, time_since_sent, tstmp_touse;
634 thresh = bbr_calc_thresh_rack(bbr, srtt, cts, rsm);
636 exp = rsm->r_tim_lastsent[idx] + thresh;
673 thresh = bbr_calc_thresh_tlp(tp, bbr, rsm, srtt, cts);
674 if (thresh > time_since_sent)
675 to = thresh - time_since_sent;
707 bbr_log_timer_var(bbr, 1, cts, time_since_sent, srtt, thresh, to);
1666 "Extra RACK time (in useconds) besides reordering thresh");
2429 uint32_t thresh, uint32_t to)
2438 log.u_bbr.flex4 = thresh;
2502 bbr_log_thresh_choice(struct tcp_bbr *bbr, uint32_t cts, uint32_t thresh, uint32_t lro, uint32_t srtt, struct bbr_sendmap *rsm, uint8_t frm)
2508 log.u_bbr.flex1 = thresh;
3212 * if its under 10% (or some thresh) reset all otherwise
4084 uint32_t thresh, t_rxtcur;
4115 thresh = srtt + bbr->r_ctl.rc_pkt_delay;
4119 thresh += (srtt >> bbr->r_ctl.rc_reorder_shift);
4121 thresh += (srtt >> 2);
4123 thresh += 1000;
4130 if (thresh > t_rxtcur) {
4131 thresh = t_rxtcur;
4134 if (thresh > (((uint32_t)bbr->rc_max_rto_sec) * USECS_IN_SECOND)) {
4135 thresh = (((uint32_t)bbr->rc_max_rto_sec) * USECS_IN_SECOND);
4137 bbr_log_thresh_choice(bbr, cts, thresh, lro, srtt, rsm, BBR_TO_FRM_RACK);
4138 return (thresh);
4151 uint32_t thresh, len, maxseg, t_rxtcur;
4157 thresh = srtt + (srtt / bbr->rc_tlp_threshold);
4159 thresh = (srtt * 2);
4168 * Two packets outstanding, thresh should be (2*srtt) +
4180 thresh += inter_gap;
4188 if (alt_thresh > thresh)
4189 thresh = alt_thresh;
4197 bbr_log_thresh_choice(bbr, cts, thresh, t_rxtcur, srtt, rsm, BBR_TO_FRM_TLP);
4199 if (thresh > t_rxtcur) {
4200 thresh = t_rxtcur;
4203 if (thresh > (((uint32_t)bbr->rc_max_rto_sec) * USECS_IN_SECOND)) {
4204 thresh = (((uint32_t)bbr->rc_max_rto_sec) * USECS_IN_SECOND);
4207 if (thresh < bbr_tlp_min) {
4208 thresh = bbr_tlp_min;
4210 return (thresh);
4267 uint32_t thresh;
4269 thresh = bbr_calc_thresh_rack(bbr, bbr_get_rtt(bbr, BBR_RTT_RACK),
4271 if ((cts - rsm->r_tim_lastsent[(rsm->r_rtr_cnt - 1)]) >= thresh) {