HomeSort by relevance Sort by last modified time
    Searched full:rate (Results 26 - 50 of 3459) sorted by null

12 3 4 5 6 7 8 91011>>

  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/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 */
  /frameworks/base/core/java/android/speech/tts/
EventLogTags.logtags 5 76001 tts_speak_success (engine|3),(caller_uid|1),(caller_pid|1),(length|1),(locale|3),(rate|1),(pitch|1),(engine_latency|2|3),(engine_total|2|3),(audio_latency|2|3)
6 76002 tts_speak_failure (engine|3),(caller_uid|1),(caller_pid|1),(length|1),(locale|3),(rate|1),(pitch|1)
  /external/jmonkeyengine/engine/src/test/jme3test/model/shape/
TestExpandingTorus.java 15 private float rate = 1; field in class:TestExpandingTorus
37 rate = -rate;
40 rate = -rate;
42 outerRadius += rate * tpf;
  /external/chromium_org/remoting/base/
rate_counter.h 17 // Measures average rate per second of a sequence of point rate samples
22 // Constructs a rate counter over the specified |time_window|.
26 // Records a point event count to include in the rate.
29 // Returns the rate-per-second of values recorded over the time window.
31 double Rate();
46 // Time window over which to calculate the rate.
rate_counter_unittest.cc 12 // One second window and one sample per second, so rate equals each sample.
15 EXPECT_EQ(0, rate_counter.Rate());
22 EXPECT_EQ(static_cast<double>(kTestValues[i]), rate_counter.Rate());
26 // Record all samples instantaneously, so the rate is the total of the samples.
29 EXPECT_EQ(0, rate_counter.Rate());
39 EXPECT_EQ(expected, rate_counter.Rate());
43 // rate should be the average of it and the preceding one. For the first it
47 EXPECT_EQ(0, rate_counter.Rate());
58 EXPECT_EQ(expected, rate_counter.Rate());
63 // Rate should be the average of all but the first sample
    [all...]
  /external/webrtc/src/modules/audio_coding/codecs/isac/fix/test/QA/
runiSACNB.txt 29 for rate in ${TARGETRATE[*]}
32 $ISAC $rate -FL 30 -NB 1 $INDIR/"$file" $OUTDIR/nb130_$index1"$file" >> $LOGFILE
33 $ISAC $rate -FL 60 -NB 1 $INDIR/"$file" $OUTDIR/nb160_$index1"$file" >> $LOGFILE
34 $ISAC $rate -FL 30 -NB 2 $INDIR/"$file" $OUTDIR/nb230_$index1"$file" >> $LOGFILE
35 $ISAC $rate -FL 60 -NB 2 $INDIR/"$file" $OUTDIR/nb260_$index1"$file" >> $LOGFILE
36 $ISAC $rate -FL 30 -NB 2 -PL 10 $INDIR/"$file" $OUTDIR/nb2plc30_$index1"$file" >> $LOGFILE
37 $ISAC $rate -FL 60 -NB 2 -PL 10 $INDIR/"$file" $OUTDIR/nb2plc60_$index1"$file" >> $LOGFILE
  /external/iproute2/tc/
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/chromium_org/chrome/common/extensions/docs/examples/extensions/speak_selection/
options.js 13 var rateElement = document.getElementById('rate');
16 var rate = localStorage['rate'] || 1.0;
19 rateElement.value = rate;
23 rate = rateElement.value;
24 localStorage['rate'] = rate;
39 rate = 1.0;
42 localStorage['rate'] = rate;
    [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/services/java/com/android/server/power/
RampAnimator.java 25 * a given variable rate until it reaches a particular target value.
55 * @param rate The convergence rate, in units per second.
58 public boolean animateTo(int target, int rate) {
67 // Adjust the rate based on the closest target.
68 // If a faster rate is specified, then use the new rate so that we converge
70 // If a slower rate is specified, then use the new rate only if the current
73 // Otherwise, continue at the previous rate
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_ossaudiodev.py 29 rate = au.getframerate()
40 return (data, rate, 16, nchannels)
44 def play_sound_file(self, data, rate, ssize, nchannels):
75 expected_time = float(len(data)) / (ssize//8) / nchannels / rate
78 dsp.setparameters(AFMT_S16_NE, nchannels, rate)
101 (fmt, channels, rate) = config
104 dsp.speed(rate) == rate):
112 result = dsp.setparameters(fmt, channels, rate, False)
113 self.assertEqual(result, (fmt, channels, rate),
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_ossaudiodev.py 29 rate = au.getframerate()
40 return (data, rate, 16, nchannels)
44 def play_sound_file(self, data, rate, ssize, nchannels):
75 expected_time = float(len(data)) / (ssize//8) / nchannels / rate
78 dsp.setparameters(AFMT_S16_NE, nchannels, rate)
101 (fmt, channels, rate) = config
104 dsp.speed(rate) == rate):
112 result = dsp.setparameters(fmt, channels, rate, False)
113 self.assertEqual(result, (fmt, channels, rate),
    [all...]
  /frameworks/wilhelm/src/itf/
IRatePitch.c 22 static SLresult IRatePitch_SetRate(SLRatePitchItf self, SLpermille rate)
27 if (!(thiz->mMinRate <= rate && rate <= thiz->mMaxRate)) {
31 thiz->mRate = rate;
49 SLpermille rate = thiz->mRate; local
51 *pRate = rate;
IVisualization.c 23 slVisualizationCallback callback, void *pContext, SLmilliHertz rate)
27 if (!(0 < rate && rate <= 20000)) {
34 thiz->mRate = rate;
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
video_encoder.h 9 #define VIDEO_ENCODER_CCIR 16 /* CCIR-601 pixel rate (720 pixels per line) instead of square pixel rate */
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
video_encoder.h 9 #define VIDEO_ENCODER_CCIR 16 /* CCIR-601 pixel rate (720 pixels per line) instead of square pixel rate */
  /external/llvm/lib/Target/PowerPC/
PPCScheduleE5500.td 62 [30, 2, 2], // Latency= 4..26, Repeat rate= 4..26
67 [20, 2, 2], // Latency= 4..16, Repeat rate= 4..16
71 [11], // Latency = 7, Repeat rate = 1
75 [11, 2, 2], // Latency = 7, Repeat rate = 7
80 [9, 2, 2], // Latency = 4..7, Repeat rate = 2..4
85 [8, 2, 2], // Latency = 4, Repeat rate = 1
90 [8, 2, 2], // Latency = 4, Repeat rate = 1
103 [6, 2, 2], // Latency = 2, Repeat rate = 2
107 [5, 2, 2], // Latency = 1, Repeat rate = 1
111 [6, 2, 2], // Latency = 2, Repeat rate =
    [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...]
  /external/iptables/extensions/
libxt_rateest.man 1 The rate estimator can match on estimated rates as collected by the RATEEST
2 target. It supports matching on absolute bps/pps values, comparing two rate
3 estimators and matching on the difference between two rate estimators.
19 \fBrateest1\fP \fIoperator\fP \fBrateest2\fP \fBrateest-bps\fP(without rate!)
21 \fBrateest1\fP \fIoperator\fP \fBrateest2\fP \fBrateest-pps\fP(without rate!)
32 between the estimator-determined flow rate and the static value chosen with the
33 BPS/PPS options. If the flow rate is higher than the specified BPS/PPS, 0 will
38 Match if rate is less than given rate/estimator.
41 Match if rate is greater than given rate/estimator
    [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/jmonkeyengine/engine/src/terrain/com/jme3/terrain/noise/basis/
NoiseAggregator.java 35 * A simple aggregator basis. Takes two basis functions and a rate and return
43 private final float rate; field in class:NoiseAggregator
47 public NoiseAggregator(final Basis a, final Basis b, final float rate) {
50 this.rate = rate;
61 return this.a.value(x, y, z) * (1 - this.rate) + this.rate * this.b.value(x, y, z);
  /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 561 milliseconds

12 3 4 5 6 7 8 91011>>