Home | History | Annotate | Download | only in tc

Lines Matching defs:avpkt

42 	fprintf(stderr, "    avpkt BYTES burst PACKETS probability PROBABILITY "
123 unsigned avpkt = 0;
180 } else if (strcmp(*argv, "avpkt") == 0) {
182 if (get_size(&avpkt, *argv)) {
183 fprintf(stderr, "Illegal \"avpkt\"\n");
220 if (!opt.qth_min || !opt.qth_max || !opt.limit || !avpkt ||
223 "avpkt, DP) is missing\n");
227 burst = (2 * opt.qth_min + opt.qth_max) / (3 * avpkt);
231 if ((wlog = tc_red_eval_ewma(opt.qth_min, burst, avpkt)) < 0) {
244 if ((wlog = tc_red_eval_idle_damping(opt.Wlog, avpkt, rate, sbuf)) < 0)