Searched refs:ewma_log (Results 1 – 13 of 13) sorted by relevance
/external/iproute2/tc/ |
D | tc_estimator.c | 35 for (est->ewma_log=1; est->ewma_log<32; est->ewma_log++) { in tc_setup_estimator() 36 double w = 1.0 - 1.0/(1<<est->ewma_log); in tc_setup_estimator() 40 est->ewma_log--; in tc_setup_estimator() 41 if (est->ewma_log==0 || est->ewma_log >= 31) in tc_setup_estimator()
|
D | tc_cbq.c | 28 int ewma_log, unsigned maxburst) in tc_cbq_calc_maxidle() argument 31 double g = 1.0 - 1.0/(1<<ewma_log); in tc_cbq_calc_maxidle() 41 return tc_core_time2tick(maxidle*(1<<ewma_log)*TIME_UNITS_PER_SEC); in tc_cbq_calc_maxidle() 45 int ewma_log, unsigned minburst) in tc_cbq_calc_offtime() argument 47 double g = 1.0 - 1.0/(1<<ewma_log); in tc_cbq_calc_offtime()
|
D | q_cbq.c | 59 int ewma_log=-1; in cbq_parse_opt() local 75 if (get_integer(&ewma_log, *argv, 0)) { in cbq_parse_opt() 79 if (ewma_log > 31) { in cbq_parse_opt() 159 if (ewma_log < 0) in cbq_parse_opt() 160 ewma_log = TC_CBQ_DEF_EWMA; in cbq_parse_opt() 161 lss.ewma_log = ewma_log; in cbq_parse_opt() 192 int ewma_log=-1; in cbq_parse_class_opt() local 253 if (get_integer(&ewma_log, *argv, 0)) { in cbq_parse_class_opt() 257 if (ewma_log > 31) { in cbq_parse_class_opt() 370 if (ewma_log < 0) in cbq_parse_class_opt() [all …]
|
D | tc_cbq.h | 5 int ewma_log, unsigned maxburst); 7 int ewma_log, unsigned minburst);
|
D | m_estimator.c | 44 if (est->ewma_log) in parse_estimator() 60 fprintf(stderr, "[estimator i=%u e=%u]\n", est->interval, est->ewma_log); in parse_estimator()
|
D | tc_class.c | 113 if (est.ewma_log) in tc_class_modify()
|
D | tc_qdisc.c | 137 if (est.ewma_log) in tc_qdisc_modify()
|
D | tc_filter.c | 157 if (est.ewma_log) in tc_filter_modify()
|
/external/iptables/extensions/ |
D | libxt_RATEEST.c | 16 static unsigned int ewma_log; variable 121 if (RATEEST_get_time(&ewma_log, optarg) < 0) in RATEEST_parse() 153 for (info->ewma_log = 1; info->ewma_log < 32; info->ewma_log++) { in RATEEST_final_check() 154 double w = 1.0 - 1.0 / (1 << info->ewma_log); in RATEEST_final_check() 155 if (interval / (-log(w)) > ewma_log) in RATEEST_final_check() 158 info->ewma_log--; in RATEEST_final_check() 160 if (info->ewma_log == 0 || info->ewma_log >= 31) in RATEEST_final_check() 173 local_ewma_log = local_interval * (1 << (info->ewma_log)); in __RATEEST_print()
|
/external/iptables/include/linux/netfilter/ |
D | xt_RATEEST.h | 9 __u8 ewma_log; member
|
/external/iproute2/include/linux/ |
D | gen_stats.h | 63 unsigned char ewma_log; member
|
D | pkt_sched.h | 46 unsigned char ewma_log; member 333 unsigned char ewma_log; member
|
/external/kernel-headers/original/linux/ |
D | pkt_sched.h | 48 unsigned char ewma_log; member 357 unsigned char ewma_log; member
|