HomeSort by relevance Sort by last modified time
    Searched full:rate (Results 1 - 25 of 1678) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/iproute2/tc/
tc_cbq.h 4 unsigned tc_cbq_calc_maxidle(unsigned bndw, unsigned rate, unsigned avpkt,
6 unsigned tc_cbq_calc_offtime(unsigned bndw, unsigned rate, unsigned avpkt,
q_tbf.c 28 fprintf(stderr, "Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ]\n");
114 } else if (strcmp(*argv, "rate") == 0) {
116 if (opt.rate.rate) {
117 fprintf(stderr, "Double \"rate\" spec\n");
120 if (get_rate(&opt.rate.rate, *argv)) {
121 explain1("rate");
127 if (opt.peakrate.rate) {
131 if (get_rate(&opt.peakrate.rate, *argv))
    [all...]
q_htb.c 35 " r2q DRR quantums are computed as rate in Bps/r2q {10}\n"
37 "... class add ... htb rate R1 [burst B1] [mpu B] [overhead O]\n"
40 " rate rate allocated to this class (class can still borrow)\n"
42 " mpu minimum packet size used in rate computations\n"
43 " overhead per-packet size overhead used in rate computations\n"
45 " ceil definite upper class rate (no borrows) {rate}\n"
47 " mtu max packet size we create rate map for {1600}\n"
170 if (opt.ceil.rate) {
    [all...]
m_police.c 37 fprintf(stderr, "Usage: ... police rate BPS burst BYTES[/BYTES] [ mtu BYTES[/BYTES] ]\n");
192 } else if (strcmp(*argv, "rate") == 0) {
194 if (p.rate.rate) {
195 fprintf(stderr, "Double \"rate\" spec\n");
198 if (get_rate(&p.rate.rate, *argv)) {
199 explain1("rate");
214 if (p.peakrate.rate) {
218 if (get_rate(&p.peakrate.rate, *argv))
    [all...]
tc_cbq.c 27 unsigned tc_cbq_calc_maxidle(unsigned bndw, unsigned rate, unsigned avpkt,
35 if (bndw != rate && maxburst) {
36 double vxmt = (double)avpkt/rate - xmt;
44 unsigned tc_cbq_calc_offtime(unsigned bndw, unsigned rate, unsigned avpkt,
48 double offtime = (double)avpkt/rate - (double)avpkt/bndw;
tc_core.h 21 unsigned tc_calc_xmittime(unsigned rate, unsigned size);
22 unsigned tc_calc_xmitsize(unsigned rate, unsigned ticks);
  /external/iptables/extensions/
libipt_connrate.man 1 This module matches the current transfer rate in a connection.
4 Match against the current connection transfer rate being within 'from'
libip6t_limit.man 1 This module matches at a limited rate using a token bucket filter.
7 .BI "--limit " "rate"
8 Maximum average matching rate: specified as a number, with an optional
libipt_limit.man 1 This module matches at a limited rate using a token bucket filter.
7 .BI "--limit " "rate"
8 Maximum average matching rate: specified as a number, with an optional
  /external/iproute2/include/linux/
gen_stats.h 33 * struct gnet_stats_rate_est - rate estimator
34 * @bps: current byte rate
35 * @pps: current packet rate
61 * struct gnet_estimator - rate estimator configuration
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
gen_stats.h 28 * struct gnet_stats_rate_est - rate estimator
29 * @bps: current byte rate
30 * @pps: current packet rate
56 * struct gnet_estimator - rate estimator configuration
video_encoder.h 9 #define VIDEO_ENCODER_CCIR 16 /* CCIR-601 pixel rate (720 pixels per line) instead of square pixel rate */
  /system/wlan/ti/sta_dk_4_0_4_32/common/src/core/data_ctrl/Ctrl/
RateAdaptation.c 37 /* MODULE: Rate Adaptation.c */
51 rate_e rate, UINT8* Index);
54 rate_e rate,
59 rate_e rate);
62 rate_e rate,UINT8* FB,UINT8* SU);
67 rate_e rate,
124 * DESCRIPTION: This function initialize the Rate Adaptation algorithm
129 * rateAdaptationInitParam - pointer to Rate Adaptation
175 /* resset Tspecs Rate Parameters */
203 (" Rate Adaptation initialize success\n"))
    [all...]
  /system/wlan/ti/sta_dk_4_0_4_32/common/src/utils/
utils.c 106 DESCRIPTION: Translates a network rate (0x02, 0x82, 0x84, etc...) to host rate (1, 2, 3, ....)
108 INPUT: rate - Network rate
113 RETURN: Host rate if the input rate is valid, otherwise returns 0.
165 rate_e networkToHostRate(UINT8 rate)
167 switch (rate)
229 DESCRIPTION: Translates a host rate (1, 2, 3, ....) to network rate (0x02, 0x82, 0x84, etc...)
301 rate_e rate = DRV_RATE_1M; local
1348 rate_e rate = DRV_RATE_1M; local
    [all...]
  /external/qemu/audio/
rate_template.h 33 struct rate *rate = opaque; local
43 ilast = rate->ilast;
51 if (rate->opos_inc == (1ULL + UINT_MAX)) {
71 while (rate->ipos <= (rate->opos >> 32)) {
73 rate->ipos++;
85 t = (rate->opos & UINT_MAX) * (1.f / UINT_MAX);
87 t = (rate->opos & UINT_MAX) / (mixeng_real) UINT_MAX;
92 t = rate->opos & 0xffffffff
    [all...]
  /frameworks/base/libs/rs/java/Fountain/res/raw/
fountain.c 9 int rate = Control->rate; local
13 if (rate) {
14 float rMax = ((float)rate) * 0.005f;
23 while (rate--) {
fountain2.rs 12 int rate;
30 int rate = Control->rate;
34 if (rate) {
35 float rMax = ((float)rate) * 0.005f;
44 while (rate--) {
  /system/media/opensles/libopensles/
IRatePitch.c 22 static SLresult IRatePitch_SetRate(SLRatePitchItf self, SLpermille rate)
27 if (!(this->mMinRate <= rate && rate <= this->mMaxRate)) {
31 this->mRate = rate;
49 SLpermille rate = this->mRate; local
51 *pRate = rate;
IVisualization.c 23 slVisualizationCallback callback, void *pContext, SLmilliHertz rate)
27 if (!(0 < rate && rate <= 20000)) {
34 this->mRate = rate;
IPlaybackRate.c 22 static SLresult IPlaybackRate_SetRate(SLPlaybackRateItf self, SLpermille rate)
28 if (!(this->mMinRate <= rate && rate <= this->mMaxRate)) {
32 this->mRate = rate;
38 result = android_audioPlayer_setPlayRate(ap, rate, true);
60 SLpermille rate = this->mRate; local
62 *pRate = rate;
119 SLpermille rate, SLuint32 *pCapabilities)
128 if (!(this->mMinRate <= rate && rate <= this->mMaxRate))
    [all...]
  /external/kernel-headers/original/linux/
clk.h 66 * clk_get_rate - obtain the current clock rate (in Hz) for a clock source.
89 * clk_round_rate - adjust a rate to the exact rate a clock can provide
91 * @rate: desired clock rate in Hz
93 * Returns rounded clock rate in Hz, or negative errno.
95 long clk_round_rate(struct clk *clk, unsigned long rate);
98 * clk_set_rate - set the clock rate for a clock source
100 * @rate: desired clock rate in H
    [all...]
  /hardware/ti/wlan/wl1271/Test/
siteMgrDebug.c 368 WLAN_OS_REPORT(("Max Basic Rate RATE_1M_BIT\n"));
372 WLAN_OS_REPORT(("Max Basic Rate RATE_2M_BIT\n"));
376 WLAN_OS_REPORT(("Max Basic Rate RATE_5_5M_BIT\n"));
380 WLAN_OS_REPORT(("Max Basic Rate RATE_11M_BIT\n"));
384 WLAN_OS_REPORT(("Max Basic Rate RATE_6M_BIT\n"));
388 WLAN_OS_REPORT(("Max Basic Rate RATE_9M_BIT\n"));
392 WLAN_OS_REPORT(("Max Basic Rate RATE_12M_BIT\n"));
396 WLAN_OS_REPORT(("Max Basic Rate RATE_18M_BIT\n"));
400 WLAN_OS_REPORT(("Max Basic Rate RATE_24M_BIT\n"));
404 WLAN_OS_REPORT(("Max Basic Rate RATE_36M_BIT\n"))
    [all...]
  /system/wlan/ti/wilink_6_1/Test/
siteMgrDebug.c 351 WLAN_OS_REPORT(("Max Basic Rate RATE_1M_BIT\n"));
355 WLAN_OS_REPORT(("Max Basic Rate RATE_2M_BIT\n"));
359 WLAN_OS_REPORT(("Max Basic Rate RATE_5_5M_BIT\n"));
363 WLAN_OS_REPORT(("Max Basic Rate RATE_11M_BIT\n"));
367 WLAN_OS_REPORT(("Max Basic Rate RATE_6M_BIT\n"));
371 WLAN_OS_REPORT(("Max Basic Rate RATE_9M_BIT\n"));
375 WLAN_OS_REPORT(("Max Basic Rate RATE_12M_BIT\n"));
379 WLAN_OS_REPORT(("Max Basic Rate RATE_18M_BIT\n"));
383 WLAN_OS_REPORT(("Max Basic Rate RATE_24M_BIT\n"));
387 WLAN_OS_REPORT(("Max Basic Rate RATE_36M_BIT\n"))
    [all...]
  /external/iproute2/testsuite/tests/
policer 4 $TC class add dev $DEV parent 10:0 classid 10:12 cbq bandwidth 100mbit rate 100mbit allot 1514 prio 3 maxburst 1 avpkt 500 bounded
5 $TC filter add dev $DEV parent 10:0 protocol ip prio 10 u32 match ip protocol 1 0xff police rate 2kbit buffer 10k drop flowid 10:12
11 $TC class add dev $DEV parent 10:0 classid 10:12 cbq bandwidth 100mbit rate 100mbit allot 1514 prio 3 maxburst 1 avpkt 500 bounded
12 $TC filter add dev $DEV parent 10:0 protocol ip prio 10 u32 match ip protocol 1 0xff police rate 2kbit buffer 10k drop flowid 10:12
  /external/iproute2/examples/
cbqinit.eth1 18 # rate == all the bandwidth
21 # est 1sec 8sec means, that kernel will evaluate average rate
23 # This rate is viewed with "tc -s class ls dev $DEVICE"
26 $BANDWIDTH rate 10Mbit allot 1514 maxburst 50 avpkt 1000
31 # "rate". It is not necessary, weight=1 will work as well.
36 $BANDWIDTH rate 4Mbit allot 1514 weight 500Kbit \
48 $BANDWIDTH rate 1Mbit allot 1514 weight 100Kbit \
56 $BANDWIDTH rate 100Kbit allot 1514 weight 10Mbit \
64 rate 5Mbit $BANDWIDTH allot 1514b avpkt 1000 \
74 rate 1Mbit $BANDWIDTH allot 1514b avpkt 1000 weight 10Kbit
    [all...]

Completed in 463 milliseconds

1 2 3 4 5 6 7 8 91011>>