HomeSort by relevance Sort by last modified time
    Searched defs:decay (Results 1 - 11 of 11) sorted by null

  /external/chromium_org/third_party/opus/src/celt/tests/
test_unit_laplace.c 45 int ec_laplace_get_start_freq(int decay)
48 int fs = (ft*(16384-decay))/(16384+decay);
59 int val[10000], decay[10000]; local
64 val[0] = 3; decay[0] = 6000;
65 val[1] = 0; decay[1] = 5800;
66 val[2] = -1; decay[2] = 5600;
70 decay[i] = rand()%11000+5000;
74 ec_laplace_get_start_freq(decay[i]), decay[i])
    [all...]
  /external/libopus/celt/tests/
test_unit_laplace.c 45 int ec_laplace_get_start_freq(int decay)
48 int fs = (ft*(16384-decay))/(16384+decay);
59 int val[10000], decay[10000]; local
64 val[0] = 3; decay[0] = 6000;
65 val[1] = 0; decay[1] = 5800;
66 val[2] = -1; decay[2] = 5600;
70 decay[i] = rand()%11000+5000;
74 ec_laplace_get_start_freq(decay[i]), decay[i])
    [all...]
  /bionic/libc/kernel/uapi/sound/
asound_fm.h 42 unsigned char decay; member in struct:snd_dm_fm_voice
  /external/kernel-headers/original/uapi/sound/
asound_fm.h 54 unsigned char decay; /* 4 bits: decay rate */ member in struct:snd_dm_fm_voice
  /external/libvorbis/lib/
envelope.c 98 float decay; local
133 decay=filters->nearDC_acc=filters->nearDC_partialacc+temp;
136 decay=filters->nearDC_acc+=temp;
142 decay*=(1./(VE_NEARDC+1));
145 decay=todB(&decay)*.5-15.f;
154 if(val<decay)val=decay;
157 decay-=8.;
vorbisenc.c 72 float decay; member in struct:__anon4310
349 p->tone_decay=att[is].decay*(1.-ds)+att[is+1].decay*ds;
    [all...]
  /external/chromium_org/third_party/webrtc/modules/audio_processing/agc/
digital_agc.c 314 int16_t decay; local
360 // Determine decay factor depending on VAD
367 // decay = -2^17 / DecayTime; -> -65
368 decay = -65;
371 decay = 0;
374 // decay = (int16_t)(((lower_thr - logratio)
378 decay = (int16_t)WEBRTC_SPL_RSHIFT_W32(tmp32, 10);
381 // adjust decay factor for long silence (detected as low standard deviation)
387 decay = 0;
390 // decay = (int16_t)(((stt->vadNearend.stdLongTerm - 4000) * decay) >> 12)
    [all...]
  /external/chromium_org/v8/benchmarks/spinning-balls/
v.js 85 Point.prototype.decay = function () {
343 // Decay the current point and remove it from the list
345 if (point.decay()) {
  /external/clang/test/PCH/
cxx-templates.h 316 template<typename> struct decay {}; struct in namespace:rdar15468709a
319 template<typename BarParamTy> auto bar(BarParamTy barParam) -> decay<decltype(barParam)>; member in namespace:rdar15468709a
330 template<typename> struct decay {}; struct in namespace:rdar15468709b
335 template<typename... BarParamTy> auto bar(BarParamTy... barParam) -> decay<decltype(returnsInt(barParam...))>; member in namespace:rdar15468709b
346 template<typename> struct decay {}; struct in namespace:rdar15468709c
351 template<typename BarParamTy> auto bar(BarParamTy barParam) -> decay<decltype(barParam)>; member in namespace:rdar15468709c
  /external/chromium_org/third_party/opus/src/celt/
celt_decoder.c 394 /* Energy decay */
395 opus_val16 decay = loss_count==0 ? local
400 oldBandE[c*nbEBands+i] -= decay;
466 opus_val16 decay; local
541 decay = celt_sqrt(frac_div32(SHR32(E1, 1), E2));
551 "decay". */
557 attenuation = MULT16_16_Q15(fade, decay);
563 attenuation = MULT16_16_Q15(attenuation, decay);
    [all...]
  /external/libopus/celt/
celt_decoder.c 394 /* Energy decay */
395 opus_val16 decay = loss_count==0 ? local
400 oldBandE[c*nbEBands+i] -= decay;
466 opus_val16 decay; local
541 decay = celt_sqrt(frac_div32(SHR32(E1, 1), E2));
551 "decay". */
557 attenuation = MULT16_16_Q15(fade, decay);
563 attenuation = MULT16_16_Q15(attenuation, decay);
    [all...]

Completed in 243 milliseconds