Home | History | Annotate | Download | only in netinet

Lines Matching refs:x_calc

298  *       x_calc = calcX(s,R,p);
299 * X = max(min(X_calc, 2*X_recv), s/t_mbi);
316 cb->x_calc = *tfrc_calcX(cb->s, cb->rtt, &cb->p);
319 if (fixpoint_cmp(&cb->x_calc, &temp) < 0)
320 temp = cb->x_calc;
425 * If (X_calc > 2* X_recv) X_recv = max(X_recv/2,
426 * s/(2*t_mbi)); Else X_recv = X_calc/4;
430 if (fixpoint_cmp(&cb->p, &v) < 0 && cb->x_calc.num == 0)
431 panic("TFRC - X_calc is zero! (tfrc_time_no_feedback)\n");
433 /* check also if p i zero -> x_calc is infinity ?? */
436 if (fixpoint_cmp(&cb->p, &v) || fixpoint_cmp(&cb->x_calc, &w) > 0) {