/external/libvorbis/lib/ |
barkmel.c | 22 double rate; local 24 rate=48000.f; 25 fprintf(stderr,"rate=%gHz, block=%d, f(1)=%.2gHz bark(1)=%.2g (of %.2g)\n", 26 rate,i,rate/2 / (i/2),toBARK(rate/2 /(i/2)),toBARK(rate/2)); 28 rate=44100.f; 29 fprintf(stderr,"rate=%gHz, block=%d, f(1)=%.2gHz bark(1)=%.2g (of %.2g)\n", 30 rate,i,rate/2 / (i/2),toBARK(rate/2 /(i/2)),toBARK(rate/2)) [all...] |
/external/webkit/Source/WebCore/platform/audio/ |
AudioResampler.h | 54 // 0 < rate <= MaxRate 55 void setRate(double rate); 56 double rate() const { return m_rate; } function in class:WebCore::AudioResampler
|
AudioResamplerKernel.cpp | 56 double nextFractionalIndex = m_virtualReadIndex + framesToProcess * rate(); 82 double rate = this->rate(); 83 rate = max(0.0, rate); 84 rate = min(AudioResampler::MaxRate, rate); 97 ASSERT(virtualReadIndex >= 0 && 1 + static_cast<unsigned>(virtualReadIndex + (framesToProcess - 1) * rate) < m_sourceBuffer.size()); 112 virtualReadIndex += rate; 136 double AudioResamplerKernel::rate() cons function in class:WebCore::AudioResamplerKernel [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;
|
IPlaybackRate.c | 22 static SLresult IPlaybackRate_SetRate(SLPlaybackRateItf self, SLpermille rate) 28 if (!(thiz->mMinRate <= rate && rate <= thiz->mMaxRate)) { 36 result = android_audioPlayer_setPlaybackRateAndConstraints(ap, rate, thiz->mProperties); 44 thiz->mRate = rate; 62 SLpermille rate = thiz->mRate; local 64 *pRate = rate; 128 SLpermille rate, SLuint32 *pCapabilities) 138 if (!(thiz->mMinRate <= rate && rate <= thiz->mMaxRate)) [all...] |
/bionic/libc/kernel/common/media/ |
tegra_camera.h | 34 unsigned long rate; member in struct:tegra_camera_clk_info
|
/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/kernel-headers/original/media/ |
tegra_camera.h | 31 unsigned long rate; member in struct:tegra_camera_clk_info
|
/external/ppp/pppd/plugins/pppoatm/ |
text2qos.c | 30 unsigned int rate,fract; local 37 rate = strtoul(*text,&end,10); 47 if (rate > UINT_MAX/1000) return RATE_ERROR; 48 rate *= 1000; 63 rate += fract; 69 rate = (rate+(up ? 8*ATM_CELL_PAYLOAD-1 : 0))/8/ 74 if (rate > INT_MAX) return RATE_ERROR; 76 return rate;
|
/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...] |
mixeng.c | 270 * Sound Tools rate change effect file. 289 struct rate { struct 301 struct rate *rate = audio_calloc (AUDIO_FUNC, 1, sizeof (*rate)); local 303 if (!rate) { 304 dolog ("Could not allocate resampler (%zu bytes)\n", sizeof (*rate)); 308 rate->opos = 0; 311 rate->opos_inc = ((uint64_t) inrate << 32) / outrate; 313 rate->ipos = 0 [all...] |
/external/webkit/Source/WebCore/platform/graphics/openvg/ |
ImageOpenVG.cpp | 122 double rate = static_cast<double>(scaledSize.width()) / origSize.width(); local 123 double temp = srcRect.right() * rate; 124 srcRect.setX(srcRect.x() * rate); 126 temp = srcRect.bottom() * rate; 127 srcRect.setY(srcRect.y() * rate);
|
/bionic/libc/kernel/common/linux/ |
tegra_audio.h | 27 int rate; member in struct:tegra_audio_in_config
|
/external/iproute2/tc/ |
q_gred.c | 125 unsigned rate = 0; local 200 if (get_rate(&rate, *argv)) { 216 if (rate == 0) 217 get_rate(&rate, "10Mbit"); 239 if ((wlog = tc_red_eval_idle_damping(opt.Wlog, avpkt, rate, sbuf)) < 0)
|
q_red.c | 40 unsigned rate = 0; local 87 if (get_rate(&rate, *argv)) { 104 if (rate == 0) 105 get_rate(&rate, "10Mbit"); 124 if ((wlog = tc_red_eval_idle_damping(opt.Wlog, avpkt, rate, sbuf)) < 0) {
|
/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/kernel-headers/original/linux/ |
tegra_audio.h | 30 int rate; member in struct:tegra_audio_in_config
|
/external/speex/include/speex/ |
speex_header.h | 64 spx_int32_t rate; /**< Sampling rate used */ member in struct:SpeexHeader 68 spx_int32_t bitrate; /**< Bit-rate used */ 78 void speex_init_header(SpeexHeader *header, int rate, int nb_channels, const struct SpeexMode *m);
|
/external/chromium/chrome/browser/chromeos/ |
preferences.cc | 482 input_method::AutoRepeatRate rate; local 483 rate.initial_delay_in_ms = language_xkb_auto_repeat_delay_pref_.GetValue(); 484 rate.repeat_interval_in_ms = 486 DCHECK(rate.initial_delay_in_ms > 0); 487 DCHECK(rate.repeat_interval_in_ms > 0); 488 input_method::SetAutoRepeatRate(rate);
|
/external/chromium/chrome/browser/net/ |
referrer.cc | 91 double rate = it->second.subresource_use_rate(); local 93 if (rate > lowest_rate_seen) 99 lowest_rate_seen = rate; 132 double rate; local 133 if (!subresource_list->GetDouble(index++, &rate)) 143 (*this)[url].SetSubresourceUseRate(rate); 151 FundamentalValue* rate(new FundamentalValue( 155 subresource_list->Append(rate); 179 // Note: the use rate is temporarilly possibly incorect, as we need to find
|
/external/jmonkeyengine/engine/src/test/jme3test/audio/ |
TestDoppler.java | 51 private float rate = -0.05f; field in class:TestDoppler 86 angle += tpf * rate; 90 rate = -rate; 93 rate = -rate;
|
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/ |
ProgressiveDownloadInformationBox.java | 55 long rate; field in class:ProgressiveDownloadInformationBox.Entry 58 public Entry(long rate, long initialDelay) { 59 this.rate = rate; 64 return rate; 67 public void setRate(long rate) { 68 this.rate = rate; 82 "rate=" + rate [all...] |
/external/opencv/cv/src/ |
_cv.h | 103 double *rate; member in struct:CvPyramid
|
/external/openssh/ |
misc.h | 84 u_int64_t rate, thresh, lamt; member in struct:bwlimit
|
/external/qemu/distrib/sdl-1.2.15/src/audio/nds/ |
soundcommon.h | 54 u32 rate; member in struct:__anon13305 66 extern void SoundSystemInit(u32 rate,u32 buffersize,u8 channel,u8 format);
|