Home
last modified time | relevance | path

Searched defs:decay (Results 1 – 15 of 15) sorted by relevance

/third_party/boost/boost/hana/detail/
Ddecay.hpp33 struct decay { struct
34 using type = typename std::remove_cv<U>::type;
38 struct decay<T, U[]> { using type = U*; }; struct
40 struct decay<T, U[N]> { using type = U*; }; argument
43 struct decay<T, R(A...)> { using type = R(*)(A...); }; argument
45 struct decay<T, R(A..., ...)> { using type = R(*)(A..., ...); }; argument
/third_party/boost/boost/type_traits/
Ddecay.hpp32 struct decay struct
35 typedef typename remove_reference<T>::type Ty;
37 …boost::detail::decay_imp<Ty, boost::is_array<Ty>::value, boost::is_function<Ty>::value>::type type;
/third_party/boost/boost/phoenix/core/
Dvalue.hpp118 struct decay struct
120 typedef T type;
123 struct decay<T[N]> : decay<T const *> {}; struct
/third_party/skia/third_party/externals/oboe/apps/OboeTester/app/src/main/cpp/analyzer/
DPeakDetector.h58 void setDecay(double decay) { in setDecay()
/third_party/ffmpeg/libavfilter/
Dvf_lagfun.c34 float decay; member
83 const float decay = s->decay; in lagfun_frame8() local
119 const float decay = s->decay; in lagfun_frame16() local
Daf_asubboost.c32 double decay; member
120 const float wet = s->wet_gain, dry = s->dry_gain, feedback = s->feedback, decay = s->decay; in filter_frame() local
Daf_aphaser.c37 double decay; member
Daf_aecho.c34 float *delay, *decay; member
Daf_compand.c41 double decay; member
/third_party/boost/boost/hana/
Dtraits.hpp190 constexpr auto decay = metafunction<std::decay>; variable
/third_party/ffmpeg/libavcodec/
Dopus_rc.c275 int ff_opus_rc_dec_laplace(OpusRangeCoder *rc, uint32_t symbol, int decay) in ff_opus_rc_dec_laplace()
314 void ff_opus_rc_enc_laplace(OpusRangeCoder *rc, int *value, uint32_t symbol, int decay) in ff_opus_rc_enc_laplace()
Dratecontrol.h38 double decay; member
/third_party/gstreamer/gstplugins_good/gst/level/
Dgstlevel.c570 gdouble decay) in gst_level_message_append_channel()
/third_party/gstreamer/gstplugins_good/gst/effectv/
Dgstripple.c103 static const gint decay = 8; variable
/third_party/boost/boost/thread/detail/
Dmove.hpp314 struct decay : boost::decay<Tp> {}; struct