Lines Matching refs:rate
222 opt.rate.rate = (rate64 >= (1ULL << 32)) ? ~0U : rate64; in htb_parse_class_opt()
223 opt.ceil.rate = (ceil64 >= (1ULL << 32)) ? ~0U : ceil64; in htb_parse_class_opt()
233 opt.rate.overhead = overhead; in htb_parse_class_opt()
236 opt.rate.mpu = mpu; in htb_parse_class_opt()
238 if (tc_calc_rtable(&opt.rate, rtab, cell_log, mtu, linklayer) < 0) { in htb_parse_class_opt()
294 rate64 = hopt->rate.rate; in htb_print_opt()
300 ceil64 = hopt->ceil.rate; in htb_print_opt()
306 if (hopt->rate.overhead) in htb_print_opt()
307 fprintf(f, "overhead %u ", hopt->rate.overhead); in htb_print_opt()
312 linklayer = (hopt->rate.linklayer & TC_LINKLAYER_MASK); in htb_print_opt()
318 1<<hopt->rate.cell_log, in htb_print_opt()
319 sprint_size(hopt->rate.mpu&0xFF, b2), in htb_print_opt()
320 sprint_size((hopt->rate.mpu>>8)&0xFF, b3)); in htb_print_opt()