Lines Matching defs:new
255 * There is a new per RTT measurement, so check to see if there
273 /* Reset per RTT measurement flag to start a new measurement. */
353 chd_window_decrease(ccv); /* Set new ssthresh. */
429 uint32_t new;
431 new = V_chd_loss_fair;
432 error = sysctl_handle_int(oidp, &new, 0, req);
434 if (new > 1)
437 V_chd_loss_fair = new;
447 uint32_t new;
449 new = V_chd_pmax;
450 error = sysctl_handle_int(oidp, &new, 0, req);
452 if (new == 0 || new > 100)
455 V_chd_pmax = new;
465 uint32_t new;
467 new = V_chd_qthresh;
468 error = sysctl_handle_int(oidp, &new, 0, req);
470 if (new <= V_chd_qmin)
473 V_chd_qthresh = new;