Lines Matching refs:intv
4938 /* Return an interval that is anywhere in the [1 .. intv] range */
4940 nce_fuzz_interval(clock_t intv, boolean_t initial_time)
4948 if (intv <= 0)
4949 intv = 1;
4951 intv = (rnd % intv) + 1;
4954 if ((frac = intv / 5) <= 1)
4956 /* Set intv randomly in the range [intv-frac .. intv+frac] */
4957 if ((intv = intv - frac + rnd % (2 * frac + 1)) <= 0)
4958 intv = 1;
4960 return (intv);