Searched refs:burst (Results 1 - 25 of 53) sorted by path

123

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/iproute2/doc/
H A Dip-tunnels.tex436 rate 128Kbit burst 4K limit 10K
438 will limit tunneled traffic to 128Kbit with maximal burst size of 4K
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/iproute2/examples/
H A DSYN-DoS.rate.limit36 police rate 1kbit burst 40 mtu 9k drop flowid :1
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/iproute2/examples/diffserv/
H A DEdge238 # Allow up to at least 60 packets to burst (assuming maximum packet
44 police rate 1500kbit burst 90k mtu 9k drop flowid :1
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/iproute2/include/linux/
H A Dpkt_cls.h131 __u32 burst; member in struct:tc_police
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/iproute2/tc/
H A Dm_police.c37 fprintf(stderr, "Usage: ... police rate BPS burst BYTES[/BYTES] [ mtu BYTES[/BYTES] ]\n");
158 } else if (matches(*argv, "burst") == 0 ||
163 fprintf(stderr, "Double \"buffer/burst\" spec\n");
252 fprintf(stderr, "\"burst\" requires \"rate\".\n");
271 p.burst = tc_calc_xmittime(p.rate.rate, buffer);
337 buffer = ((double)p->rate.rate*tc_core_tick2usec(p->burst))/1000000;
338 fprintf(f, "burst %s ", sprint_size(buffer, b1));
341 fprintf(f, "[%08x] ", p->burst);
H A Dq_gred.c41 fprintf(stderr, " avpkt BYTES burst PACKETS probability PROBABILITY "
119 unsigned burst = 0; local
169 } else if (strcmp(*argv, "burst") == 0) {
171 if (get_unsigned(&burst, *argv, 0)) {
172 fprintf(stderr, "Illegal \"burst\"\n");
219 if (!opt.qth_min || !opt.qth_max || !burst || !opt.limit || !avpkt ||
221 fprintf(stderr, "Required parameter (min, max, burst, limit, "
226 if ((wlog = tc_red_eval_ewma(opt.qth_min, burst, avpkt)) < 0) {
232 "large.\n", burst);
H A Dq_red.c30 fprintf(stderr, "Usage: ... red limit BYTES min BYTES max BYTES avpkt BYTES burst PACKETS\n");
40 unsigned burst = 0; local
73 } else if (strcmp(*argv, "burst") == 0) {
75 if (get_unsigned(&burst, *argv, 0)) {
76 fprintf(stderr, "Illegal \"burst\"\n");
121 if (!opt.qth_min || !opt.qth_max || !burst || !opt.limit || !avpkt) {
122 fprintf(stderr, "Required parameter (min, max, burst, limit, avpket) is missing\n");
126 if ((wlog = tc_red_eval_ewma(opt.qth_min, burst, avpkt)) < 0) {
131 fprintf(stderr, "RED: WARNING. Burst %d seems to be to large.\n", burst);
H A Dtc_red.c50 burst + 1 - qmin/avpkt < (1-(1-W)^burst)/W
53 int tc_red_eval_ewma(unsigned qmin, unsigned burst, unsigned avpkt) argument
57 double a = (double)burst + 1 - (double)qmin/avpkt;
62 if (a <= (1 - pow(1-W, burst))/W)
H A Dtc_red.h5 extern int tc_red_eval_ewma(unsigned qmin, unsigned burst, unsigned avpkt);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/iptables-1.4.12.1/extensions/
H A Dlibxt_hashlimit.c41 "[--hashlimit-burst <num>] number to match in a burst, default %u\n"
80 " --hashlimit-burst <num> number to match in a burst, default %u\n"
92 {.name = "hashlimit-burst", .id = O_BURST, .type = XTTYPE_UINT32,
94 XTOPT_POINTER(s, cfg.burst)},
125 {.name = "hashlimit-burst", .id = O_BURST, .type = XTTYPE_UINT32,
127 XTOPT_POINTER(s, cfg.burst)},
187 r->cfg.burst = XT_HASHLIMIT_BURST;
197 info->cfg.burst
[all...]
H A Dlibxt_limit.c28 "--limit-burst number number to match in a burst, default %u\n",
34 {.name = "limit-burst", .id = O_BURST, .type = XTTYPE_UINT32,
35 .flags = XTOPT_PUT, XTOPT_POINTER(struct xt_rateinfo, burst),
81 r->burst = XT_LIMIT_BURST;
86 if (r->avg*r->burst/r->burst != r->avg)
88 "Sorry: burst too large for that avg rate.\n");
134 printf(" burst %u", r->burst);
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/iptables-1.4.12.1/include/linux/netfilter/
H A Dxt_hashlimit.h25 __u32 burst; /* Period multiplier for upper limit. */ member in struct:hashlimit_cfg
49 __u32 burst; /* Period multiplier for upper limit. */ member in struct:hashlimit_cfg1
H A Dxt_limit.h15 __u32 burst; /* Period multiplier for upper limit. */ member in struct:xt_rateinfo
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/tools/
H A Dtrasher.c51 int burst= 1 + random() * (uint64_t) (abs(maxburst)-1) / RAND_MAX; local
55 if(maxburst<0) burst= -maxburst;
57 if(pos + burst > length)
60 while(burst--){
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/arm/mach-omap2/
H A Dsram-fn.S159 mov r5, r5, lsr #8 @ isolate rfr field and drop burst
170 add r5, r5, #0x1 @ turn on burst of 1
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/arm/plat-omap/
H A Ddma.c313 unsigned int burst = 0; local
321 burst = 0x1;
323 burst = 0x2;
327 burst = 0x2;
336 burst = 0x3;
339 /* OMAP1 don't support burst 16
345 OMAP_DMA_CSDP_REG(lch) |= (burst << 7);
392 unsigned int burst = 0; local
400 burst = 0x1;
402 burst
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/cris/arch-v10/kernel/
H A Dhead.S554 | IO_STATE (R_EXT_DMA_0_CMD, rq_ack, burst) \
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/char/drm/
H A Dvia_verifier.c717 int burst = 0; local
730 (burst & 63), *buf++);
731 burst += 4;
751 (burst & 63), *buf++);
752 burst += 4;
763 "Attempt to access 3D- or command burst area.\n");
811 "Attempt to access 3D- or command burst area.\n");
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/media/dvb/b2c2/
H A Dflexcop-fe-tuner.c112 static int flexcop_send_diseqc_msg(struct dvb_frontend* fe, int len, u8 *msg, unsigned long burst) argument
124 if (burst != -1) {
125 if (burst)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/media/dvb/dvb-usb/
H A Dgp8psk-fe.c154 fe_sec_mini_cmd_t burst)
162 cmd = (burst == SEC_MINI_A) ? 0x00 : 0x01;
153 gp8psk_fe_send_diseqc_burst(struct dvb_frontend* fe, fe_sec_mini_cmd_t burst) argument
H A Dvp702x-fe.c231 static int vp702x_fe_send_diseqc_burst (struct dvb_frontend* fe, fe_sec_mini_cmd_t burst) argument
306 s->lnb_buf[3] = 0xff; /* 0=tone burst, 2=data burst, ff=off */
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/media/dvb/frontends/
H A Dcx24110.c375 static int cx24110_diseqc_send_burst(struct dvb_frontend* fe, fe_sec_mini_cmd_t burst) argument
381 if (burst == SEC_MINI_A)
383 else if (burst == SEC_MINI_B)
H A Dcx24123.c196 {0x20, 0x00}, /* Tuner burst clock rate = 500KHz */
197 {0x21, 0x15}, /* Tuner burst mode, word length = 0x15 */
738 static int cx24123_diseqc_send_burst(struct dvb_frontend* fe, fe_sec_mini_cmd_t burst) argument
757 if (burst == SEC_MINI_A)
759 else if (burst == SEC_MINI_B)
H A Dstv0299.c304 static int stv0299_send_diseqc_burst (struct dvb_frontend* fe, fe_sec_mini_cmd_t burst) argument
316 if (stv0299_writeregI (state, 0x08, (val & ~0x7) | 0x2)) /* burst mode */
319 if (stv0299_writeregI (state, 0x09, burst == SEC_MINI_A ? 0x00 : 0xff))
H A Dtda8083.c207 static int tda8083_send_diseqc_burst (struct tda8083_state* state, fe_sec_mini_cmd_t burst) argument
209 switch (burst) {
211 tda8083_writereg (state, 0x29, (5 << 2)); /* send burst A */
372 static int tda8083_diseqc_send_burst(struct dvb_frontend* fe, fe_sec_mini_cmd_t burst) argument
376 tda8083_send_diseqc_burst (state, burst);

Completed in 377 milliseconds

123