Home
last modified time | relevance | path

Searched refs:decay (Results 1 - 25 of 60) sorted by relevance

123

/third_party/skia/third_party/externals/tint/src/
H A Dtraits.h23 /// Convience type definition for std::decay<T>::type
25 using Decay = typename std::decay<T>::type;
57 using type = Signature<typename std::decay<R>::type,
58 typename std::decay<ARGS>::type...>;
65 using type = Signature<typename std::decay<R>::type,
66 typename std::decay<ARGS>::type...>;
73 using type = Signature<typename std::decay<R>::type,
74 typename std::decay<ARGS>::type...>;
/third_party/ffmpeg/libavfilter/
H A Daf_aecho.c34 float *delay, *decay; member
94 av_freep(&s->decay); in uninit()
116 s->decay = av_realloc_f(s->decay, nb_decays, sizeof(*s->decay)); in init()
117 if (!s->delay || !s->decay) in init()
121 fill_items(s->decays, &nb_decays, s->decay); in init()
130 av_log(ctx, AV_LOG_ERROR, "At least one decay & delay must be set.\n"); in init()
143 if (s->decay[i] <= 0 || s->decay[ in init()
[all...]
H A Daf_aphaser.c37 double decay; member
62 { "decay", "set decay", OFFSET(decay), AV_OPT_TYPE_DOUBLE, {.dbl=.4}, 0, .99, FLAGS },
78 if (s->in_gain > (1 - s->decay * s->decay)) in init()
80 if (s->in_gain / (1 - s->decay) > 1 / s->out_gain) in init()
109 s->delay_buffer_length)] * s->decay; \
145 double v = *src * s->in_gain + buffer[pos + c] * s->decay; \
H A Daf_compand.c41 double decay; member
121 cp->volume += delta * cp->decay; in update_volume()
363 new_nb_items += sscanf(tstr, "%lf", &s->channels[i].decay) == 1; in config_output()
364 if (s->channels[i].decay < 0) { in config_output()
381 s->channels[i].decay = s->channels[nb_decays - 1].decay; in config_output()
485 if (cp->decay > 1.0 / sample_rate) in config_output()
486 cp->decay = 1.0 - exp(-1.0 / (sample_rate * cp->decay)); in config_output()
488 cp->decay in config_output()
[all...]
H A Daf_asubboost.c33 double decay; member
103 const double feedback = s->feedback, decay = s->decay; in filter_channels() local
139 buffer[write_pos] = buffer[write_pos] * decay + out_sample * feedback; in filter_channels()
220 { "decay", "set decay", OFFSET(decay), AV_OPT_TYPE_DOUBLE, {.dbl=0.0}, 0, 1, FLAGS },
H A Dvf_lagfun.c33 float decay; member
79 const float decay = s->decay; \
103 const float v = fmaxf(src[x], osrc[x] * decay); \
199 { "decay", "set decay", OFFSET(decay), AV_OPT_TYPE_FLOAT, {.dbl=.95}, 0, 1, FLAGS },
/third_party/skia/third_party/externals/abseil-cpp/absl/container/internal/
H A Dhash_generator_testing.h125 return std::pair<K, V>(Generator<typename std::decay<K>::type>()(), in operator ()()
126 Generator<typename std::decay<V>::type>()()); in operator ()()
133 return std::tuple<Ts...>(Generator<typename std::decay<Ts>::type>()()...); in operator ()()
148 typename std::decay<decltype(std::declval<U&>().key())>::type,
149 typename std::decay<decltype(std::declval<U&>().value())>::type>> {};
H A Dhash_policy_testing.h158 -> std::vector<typename std::decay<typename Set::key_type>::type> {
159 std::vector<typename std::decay<typename Set::key_type>::type> res;
H A Dcontainer_memory.h127 std::tuple_size<typename std::decay<T>::type>::value>())) { in make_index_sequence()
131 std::tuple_size<typename std::decay<T>::type>::value>()); in make_index_sequence()
152 std::tuple_size<typename std::decay<Tuple>::type>::value>()); in ConstructFromTuple()
163 std::tuple_size<typename std::decay<Tuple>::type>::value>(), in WithConstructed()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
H A DAny.h66 llvm::negation<std::is_same<typename std::decay<T>::type, Any>>,
76 llvm::negation<std::is_convertible<Any, typename std::decay<T>::type>>,
77 std::is_copy_constructible<typename std::decay<T>::type>>::value,
80 using U = typename std::decay<T>::type; in Any()
150 using U = typename std::decay<T>::type; in any_cast()
H A DScopeExit.h57 LLVM_NODISCARD detail::scope_exit<typename std::decay<Callable>::type>
59 return detail::scope_exit<typename std::decay<Callable>::type>( in make_scope_exit()
/third_party/skia/third_party/externals/oboe/apps/OboeTester/app/src/main/cpp/analyzer/
H A DPeakDetector.h35 mLevel *= mDecay; // exponential decay in process()
54 * This provides an exponential decay curve.
56 * @param decay scale level for each input
58 void setDecay(double decay) { in setDecay() argument
59 mDecay = decay; in setDecay()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
H A DFormatVariadicDetails.h39 format_provider<typename std::decay<T>::type>::format(Item, S, Options);
62 using Decayed = typename std::decay<T>::type;
78 using ConstRefT = const typename std::decay<T>::type &;
/third_party/skia/third_party/externals/abseil-cpp/absl/random/
H A Dbit_gen_ref.h45 typename std::decay<decltype((URBG::min)())>::type>::value>,
48 typename std::decay<decltype((URBG::max)())>::type>::value>,
51 typename std::decay<decltype(std::declval<URBG>()())>::type>::value>>
/third_party/ffmpeg/libavcodec/
H A Dopus_rc.c275 int ff_opus_rc_dec_laplace(OpusRangeCoder *rc, uint32_t symbol, int decay) in ff_opus_rc_dec_laplace() argument
288 symbol = 1 + ((32768 - 32 - symbol) * (16384-decay) >> 15); in ff_opus_rc_dec_laplace()
294 symbol = (((symbol - 2) * decay) >> 15) + 1; 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() argument
322 symbol = ((32768 - 32 - symbol)*(16384 - decay)) >> 15; in ff_opus_rc_enc_laplace()
325 symbol = (symbol*decay) >> 14; in ff_opus_rc_enc_laplace()
H A Dopus_rc.h103 int ff_opus_rc_dec_laplace(OpusRangeCoder *rc, uint32_t symbol, int decay);
104 void ff_opus_rc_enc_laplace(OpusRangeCoder *rc, int *value, uint32_t symbol, int decay);
H A Dratecontrol.h38 double decay; member
/third_party/googletest/googlemock/include/gmock/
H A Dgmock-actions.h427 std::is_constructible<typename std::decay<Callable>::type, Callable>,
429 internal::is_callable_r<Result, typename std::decay<Callable>::type,
437 std::is_constructible<typename std::decay<Callable>::type, Callable>,
440 internal::is_callable_r<Result, typename std::decay<Callable>::type>>;
454 OnceAction, typename std::decay<Callable>::type>>,
459 : function_(StdFunctionAdaptor<typename std::decay<Callable>::type>( in OnceAction()
471 OnceAction, typename std::decay<Callable>::type>>,
480 : OnceAction(IgnoreIncomingArguments<typename std::decay<Callable>::type>{ in OnceAction()
825 fun_ = IgnoreArgs<typename ::std::decay<G>::type>{::std::forward<G>(g)}; in Init()
1786 internal::DoAllAction<typename std::decay<Actio
[all...]
/third_party/skia/third_party/externals/abseil-cpp/absl/meta/
H A Dtype_traits_test.cc1137 ABSL_INTERNAL_EXPECT_ALIAS_EQUIVALENCE(decay, int); in TEST()
1138 ABSL_INTERNAL_EXPECT_ALIAS_EQUIVALENCE(decay, const int); in TEST()
1139 ABSL_INTERNAL_EXPECT_ALIAS_EQUIVALENCE(decay, volatile int); in TEST()
1140 ABSL_INTERNAL_EXPECT_ALIAS_EQUIVALENCE(decay, const volatile int); in TEST()
1142 ABSL_INTERNAL_EXPECT_ALIAS_EQUIVALENCE(decay, int&); in TEST()
1143 ABSL_INTERNAL_EXPECT_ALIAS_EQUIVALENCE(decay, const int&); in TEST()
1144 ABSL_INTERNAL_EXPECT_ALIAS_EQUIVALENCE(decay, volatile int&); in TEST()
1145 ABSL_INTERNAL_EXPECT_ALIAS_EQUIVALENCE(decay, const volatile int&); in TEST()
1147 ABSL_INTERNAL_EXPECT_ALIAS_EQUIVALENCE(decay, int&); in TEST()
1148 ABSL_INTERNAL_EXPECT_ALIAS_EQUIVALENCE(decay, cons in TEST()
[all...]
/third_party/skia/third_party/externals/abseil-cpp/absl/types/
H A Doptional.h172 in_place_t, typename std::decay<U>::type> >,
174 optional<T>, typename std::decay<U>::type> >,
185 in_place_t, typename std::decay<U>::type>>,
187 optional<T>, typename std::decay<U>::type>>,
289 std::is_same<optional<T>, typename std::decay<U>::type>>,
292 std::is_same<T, typename std::decay<U>::type>>>,
569 constexpr optional<typename std::decay<T>::type> make_optional(T&& v) {
570 return optional<typename std::decay<T>::type>(absl::forward<T>(v));
/third_party/node/deps/v8/src/base/
H A Dlogging.h274 // or std::decay<T>::type if T is not an enum. Booleans are converted to
281 using decay = typename std::decay<T>::type;
282 static constexpr bool is_enum = std::is_enum<decay>::value;
284 typename std::conditional<is_enum, decay, Dummy>::type>::type;
286 typename std::conditional<is_enum, underlying, decay>::type;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/Support/
H A DFormatVariadicDetails.h37 format_provider<typename std::decay<T>::type>::format(Item, S, Options);
49 using Decayed = typename std::decay<T>::type;
/third_party/skia/third_party/externals/abseil-cpp/absl/random/internal/
H A Dsalted_seed_seq.h154 SaltedSeedSeq<typename std::decay<SSeq>::type> MakeSaltedSeedSeq(SSeq&& seq) { in MakeSaltedSeedSeq()
155 using sseq_type = typename std::decay<SSeq>::type; in MakeSaltedSeedSeq()
/third_party/skia/third_party/externals/abseil-cpp/absl/base/
H A Dinline_variable_test.cc57 std::decay<decltype(inline_variable_fun_ptr)>::type>::value, in TEST()
/third_party/nghttp2/src/
H A Dtemplate.h46 typename std::decay<typename std::common_type<T...>::type>::type,
50 typename std::decay<typename std::common_type<T...>::type>::type, in make_array()
70 using ResultType = typename std::result_of<typename std::decay<F>::type(
71 typename std::decay<T>::type...)>::type;

Completed in 19 milliseconds

123