HomeSort by relevance Sort by last modified time
    Searched defs:wlog (Results 1 - 3 of 3) sorted by null

  /external/iproute2/tc/
tc_red.c 55 int wlog = 1; local
61 for (wlog=1; wlog<32; wlog++, W /= 2) {
63 return wlog;
72 int tc_red_eval_idle_damping(int Wlog, unsigned avpkt, unsigned bps, __u8 *sbuf)
75 double lW = -log(1.0 - 1.0/(1<<Wlog))/xmit_time;
q_gred.c 126 int wlog; local
226 if ((wlog = tc_red_eval_ewma(opt.qth_min, burst, avpkt)) < 0) {
230 if (wlog >= 10)
233 opt.Wlog = wlog;
234 if ((wlog = tc_red_eval_P(opt.qth_min, opt.qth_max, probability)) < 0) {
238 opt.Plog = wlog;
239 if ((wlog = tc_red_eval_idle_damping(opt.Wlog, avpkt, rate, sbuf)) < 0)
245 opt.Scell_log = wlog;
    [all...]
q_red.c 42 int wlog; local
112 if ((wlog = tc_red_eval_ewma(opt.qth_min, burst, avpkt)) < 0) {
116 if (wlog >= 10)
118 opt.Wlog = wlog;
119 if ((wlog = tc_red_eval_P(opt.qth_min, opt.qth_max, probability)) < 0) {
123 opt.Plog = wlog;
124 if ((wlog = tc_red_eval_idle_damping(opt.Wlog, avpkt, rate, sbuf)) < 0) {
128 opt.Scell_log = wlog;
    [all...]

Completed in 195 milliseconds