HomeSort by relevance Sort by last modified time
    Searched refs:decay (Results 1 - 25 of 49) sorted by null

1 2

  /external/libopus/celt/
laplace.h 37 @param decay Probability of the value +/- 1, multiplied by 16384
39 void ec_laplace_encode(ec_enc *enc, int *value, unsigned fs, int decay);
45 @param decay Probability of the value +/- 1, multiplied by 16384
48 int ec_laplace_decode(ec_dec *dec, unsigned fs, int decay);
laplace.c 43 /* When called, decay is positive and at most 11456. */
44 static unsigned ec_laplace_get_freq1(unsigned fs0, int decay)
48 return ft*(opus_int32)(16384-decay)>>15;
51 void ec_laplace_encode(ec_enc *enc, int *value, unsigned fs, int decay)
63 fs = ec_laplace_get_freq1(fs, decay);
69 fs = (fs*(opus_int32)decay)>>15;
94 int ec_laplace_decode(ec_dec *dec, unsigned fs, int decay)
105 fs = ec_laplace_get_freq1(fs, decay)+LAPLACE_MINP;
111 fs = ((fs-2*LAPLACE_MINP)*(opus_int32)decay)>>15;
  /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...]
  /external/libcxx/test/std/utilities/meta/meta.trans/meta.trans.other/
decay.pass.cpp 12 // decay
21 static_assert((std::is_same<typename std::decay<T>::type, U>::value), "");
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/meta/meta.trans/meta.trans.other/
decay.pass.cpp 12 // decay
19 static_assert((std::is_same<typename std::decay<T>::type, U>::value), "");
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/utilities/meta/meta.trans/meta.trans.other/
decay.pass.cpp 12 // decay
19 static_assert((std::is_same<typename std::decay<T>::type, U>::value), "");
  /frameworks/native/libs/vr/libpdx/private/pdx/rpc/
find_replace.h 17 using IsSameBaseType = typename std::is_same<typename std::decay<T>::type,
18 typename std::decay<U>::type>;
argument_encoder.h 44 using ReturnType = typename std::decay<Return>::type;
108 using ArgsTupleType = std::tuple<typename std::decay<Args>::type...>;
128 using ArgsTupleType = std::tuple<typename std::decay<Args>::type...>;
129 using ReturnType = typename std::decay<Return>::type;
  /external/libcxx/test/std/experimental/iterator/ostream.joiner/ostream.joiner.ops/
ostream_joiner.op.assign.pass.cpp 57 typedef exp::ostream_joiner<typename std::decay<Delim>::type, CharT, Traits> Joiner;
59 static_assert((std::is_copy_constructible<Joiner>::value == std::is_copy_constructible<typename std::decay<Delim>::type>::value), "" );
60 static_assert((std::is_move_constructible<Joiner>::value == std::is_move_constructible<typename std::decay<Delim>::type>::value), "" );
61 static_assert((std::is_copy_assignable<Joiner> ::value == std::is_copy_assignable<typename std::decay<Delim>::type> ::value), "" );
62 static_assert((std::is_move_assignable<Joiner> ::value == std::is_move_assignable<typename std::decay<Delim>::type> ::value), "" );
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/experimental/iterator/ostream.joiner/ostream.joiner.ops/
ostream_joiner.op.assign.pass.cpp 57 typedef exp::ostream_joiner<typename std::decay<Delim>::type, CharT, Traits> Joiner;
59 static_assert((std::is_copy_constructible<Joiner>::value == std::is_copy_constructible<typename std::decay<Delim>::type>::value), "" );
60 static_assert((std::is_move_constructible<Joiner>::value == std::is_move_constructible<typename std::decay<Delim>::type>::value), "" );
61 static_assert((std::is_copy_assignable<Joiner> ::value == std::is_copy_assignable<typename std::decay<Delim>::type> ::value), "" );
62 static_assert((std::is_move_assignable<Joiner> ::value == std::is_move_assignable<typename std::decay<Delim>::type> ::value), "" );
  /external/libbrillo/brillo/
any.h 85 using CanonicalDestType = typename std::decay<DestType>::type;
152 T TryGet(typename std::decay<T>::type const& def_val) const {
162 return TryGet<T>(typename std::decay<T>::type());
  /external/libchrome/base/
bind_internal.h 282 using Traits = FunctorTraits<typename std::decay<Functor>::type>;
302 using Traits = FunctorTraits<typename std::decay<Functor>::type>;
337 FunctorTraits<typename std::decay<Functor>::type>::is_method;
339 using DecayedArgsTuple = typename std::decay<BoundArgsTuple>::type;
357 typename FunctorTraits<typename std::decay<Functor>::type>::RunType;
407 using Type = BindState<typename std::decay<Functor>::type,
408 typename std::decay<BoundArgs>::type...>;
413 using Type = BindState<typename std::decay<Functor>::type>;
425 using DecayedReceiver = typename std::decay<Receiver>::type;
429 typename std::decay<Functor>::type
    [all...]
  /external/libcxx/test/std/experimental/iterator/ostream.joiner/ostream.joiner.creation/
make_ostream_joiner.pass.cpp 18 // ostream_joiner<typename decay<_Delim>::type, _CharT, _Traits>
36 typedef exp::ostream_joiner<typename std::decay<Delim>::type, CharT, Traits> Joiner;
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/experimental/iterator/ostream.joiner/ostream.joiner.creation/
make_ostream_joiner.pass.cpp 18 // ostream_joiner<typename decay<_Delim>::type, _CharT, _Traits>
36 typedef exp::ostream_joiner<typename std::decay<Delim>::type, CharT, Traits> Joiner;
  /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/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.;
  /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
  /hardware/qcom/msm8996/kernel-headers/sound/
asound_fm.h 42 unsigned char decay; member in struct:snd_dm_fm_voice
  /hardware/qcom/msm8996/original-kernel-headers/sound/
asound_fm.h 54 unsigned char decay; /* 4 bits: decay rate */ member in struct:snd_dm_fm_voice
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/alsa/sound/
asound_fm.h 54 unsigned char decay; /* 4 bits: decay rate */ member in struct:snd_dm_fm_voice
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/sound/
asound_fm.h 54 unsigned char decay; /* 4 bits: decay rate */ member in struct:snd_dm_fm_voice
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/alsa/sound/
asound_fm.h 54 unsigned char decay; /* 4 bits: decay rate */ member in struct:snd_dm_fm_voice
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/sound/
asound_fm.h 54 unsigned char decay; /* 4 bits: decay rate */ member in struct:snd_dm_fm_voice
  /external/webrtc/webrtc/modules/audio_processing/agc/legacy/
digital_agc.c 311 int16_t decay; local
349 // Determine decay factor depending on VAD
356 // decay = -2^17 / DecayTime; -> -65
357 decay = -65;
360 decay = 0;
363 // decay = (int16_t)(((lower_thr - logratio)
367 decay = (int16_t)(tmp32 >> 10);
370 // adjust decay factor for long silence (detected as low standard deviation)
376 decay = 0;
379 // decay = (int16_t)(((stt->vadNearend.stdLongTerm - 4000) * decay) >> 12)
    [all...]

Completed in 1239 milliseconds

1 2