Home
last modified time | relevance | path

Searched refs:iter_type (Results 1 – 25 of 49) sorted by relevance

12

/external/oboe/apps/fxlab/app/src/main/cpp/effects/descrip/
DEffectDescription.h25 template<class iter_type>
26 using _ef = std::function<void(iter_type, iter_type)>;
74 template<class iter_type>
75 static _ef<iter_type> buildEffect(std::array<float, N> paramArr);
78 template<class iter_type>
79 static _ef<iter_type> buildDefaultEffect() { in buildDefaultEffect()
85 return EffectType::template buildEffect<iter_type>(params); in buildDefaultEffect()
89 template<class iter_type>
90 static _ef<iter_type> modifyEffect( in modifyEffect() argument
91 _ef<iter_type> /* effect */, std::array<float, N> paramArr) { in modifyEffect()
[all …]
DFlangerDescription.h41 template <class iter_type>
42 static _ef<iter_type> buildEffect(std::array<float, getNumParams()> paramArr) { in buildEffect()
43 return std::function<void(iter_type, iter_type)> { in buildEffect()
44 FlangerEffect<iter_type>{paramArr[0], paramArr[1], paramArr[2]} in buildEffect()
DGainDescription.h39 template<class iter_type>
40 static _ef<iter_type> buildEffect(std::array<float, getNumParams()> paramArr) { in buildEffect()
42 return _ef<iter_type> { in buildEffect()
43 [=](iter_type beg, iter_type end) { in buildEffect()
DPassthroughDescription.h39 template<class iter_type>
40 static _ef<iter_type> buildEffect(std::array<float, getNumParams()> ) { in buildEffect()
41 return [](iter_type, iter_type) {}; in buildEffect()
DVibratoDescription.h39 template<class iter_type>
40 static _ef<iter_type> buildEffect(std::array<float, getNumParams()> paramArr) { in buildEffect()
41 return _ef<iter_type> { in buildEffect()
42 VibratoEffect<iter_type>{paramArr[0], paramArr[1]} in buildEffect()
DEchoDescription.h39 template<class iter_type>
40 static _ef<iter_type> buildEffect(std::array<float, getNumParams()> paramArr) { in buildEffect()
41 return _ef<iter_type> { in buildEffect()
42 EchoEffect<iter_type>{paramArr[0], paramArr[1]} in buildEffect()
DSlapbackDescription.h41 template<class iter_type>
42 static _ef<iter_type> buildEffect(std::array<float, getNumParams()> paramArr) { in buildEffect()
43 return _ef<iter_type> { in buildEffect()
44 SlapbackEffect<iter_type>{paramArr[0], paramArr[1]} in buildEffect()
DFIRDescription.h38 template<class iter_type>
39 static _ef<iter_type> buildEffect(std::array<float, getNumParams()> paramArr) { in buildEffect()
40 return _ef<iter_type> { in buildEffect()
41 CombFilter<iter_type>{1, paramArr[1], 0, static_cast<int>(paramArr[0])} in buildEffect()
DIIRDescription.h41 template<class iter_type>
42 static _ef<iter_type> buildEffect(std::array<float, getNumParams()> paramArr) { in buildEffect()
43 return _ef<iter_type> { in buildEffect()
44 CombFilter<iter_type>{paramArr[2], 0, paramArr[1], static_cast<int>(paramArr[0])} in buildEffect()
DDistortionDescription.h39 template<class iter_type>
40 static _ef<iter_type> buildEffect(std::array<float, getNumParams()> paramArr) { in buildEffect()
42 return DriveControl<iter_type> {SingleFunctionEffects::distortion<iter_type>, scale}; in buildEffect()
DDoublingDescription.h25 template<class iter_type>
26 static _ef<iter_type> buildEffect(std::array<float, getNumParams()> paramArr) { in buildEffect()
27 return _ef<iter_type> { in buildEffect()
28 DoublingEffect<iter_type>{paramArr[0], paramArr[1], paramArr[2]} in buildEffect()
DAllPassDescription.h39 template<class iter_type>
40 static _ef<iter_type> buildEffect(std::array<float, getNumParams()> paramArr) { in buildEffect()
41 return _ef<iter_type> { in buildEffect()
42 CombFilter<iter_type>{paramArr[1], 1, -(paramArr[1]), static_cast<int>(paramArr[0])} in buildEffect()
DWhiteChorusDescription.h40 template<class iter_type>
41 static _ef<iter_type> buildEffect(std::array<float, getNumParams()> paramArr) { in buildEffect()
42 return _ef<iter_type> { in buildEffect()
43 WhiteChorusEffect<iter_type>{paramArr[0], paramArr[1], paramArr[2]} in buildEffect()
DOverdriveDescription.h44 template<class iter_type>
45 static _ef<iter_type> buildEffect(std::array<float, getNumParams()> paramArr) { in buildEffect()
47 return DriveControl<iter_type> {SingleFunctionEffects::overdrive<iter_type>, scale}; in buildEffect()
/external/oboe/apps/fxlab/app/src/main/cpp/
DFunctionList.h25 template<class iter_type>
27 std::vector<std::pair<std::function<void(iter_type, iter_type)>, bool>> functionList;
37 void operator()(iter_type begin, iter_type end) { in operator()
44 void addEffect(std::function<void(iter_type, iter_type)> f) { in addEffect() argument
66 void modifyEffectAt(size_t index, std::function<void(iter_type, iter_type)> fun) { in modifyEffectAt() argument
79 return iter_type(); in getType()
/external/oboe/apps/fxlab/app/src/main/cpp/effects/
DDriveControl.h22 template <class iter_type>
27 DriveControl(std::function<void(iter_type, iter_type)> function, double scale): in DriveControl() argument
30 void operator() (iter_type beg, iter_type end) { in operator()
37 std::function<void(iter_type, iter_type)> mFunction;
DSingleFunctionEffects.h36 template <class iter_type>
37 void overdrive(iter_type beg, iter_type end) { in overdrive()
48 template <class iter_type>
49 void distortion(iter_type beg, iter_type end) { in distortion()
DCombFilter.h21 template <class iter_type>
33 void operator () (typename std::iterator_traits<iter_type>::reference x) { in operator()
39 void operator () (iter_type begin, iter_type end) { in operator()
51 DelayLine<typename std::iterator_traits<iter_type>::value_type> delayLine {kDelay + 1};
DDelayLineEffect.h28 template <class iter_type>
42 void operator () (typename std::iterator_traits<iter_type>::reference x) { in operator()
57 void operator () (iter_type begin, iter_type end) { in operator()
77 DelayLine<typename std::iterator_traits<iter_type>::value_type> delayLine {kDelayLineSize};
DVibratroEffect.h20 template <class iter_type>
21 class VibratoEffect : public DelayLineEffect<iter_type> {
24 DelayLineEffect<iter_type>(0, 1, 0, 1, depth_ms * SAMPLE_RATE / 1000, in VibratoEffect()
DSlapbackEffect.h20 template <class iter_type>
21 class SlapbackEffect: public DelayLineEffect<iter_type> {
24 DelayLineEffect<iter_type> {1, feedforward, 0, in SlapbackEffect()
DEchoEffect.h23 template <class iter_type>
24 class EchoEffect: public DelayLineEffect<iter_type> {
27 DelayLineEffect<iter_type> {1, 0, feedback, in EchoEffect()
/external/llvm-project/libcxx/include/
Dlocale570 typedef _InputIterator iter_type;
577 iter_type get(iter_type __b, iter_type __e, ios_base& __iob,
584 iter_type get(iter_type __b, iter_type __e, ios_base& __iob,
591 iter_type get(iter_type __b, iter_type __e, ios_base& __iob,
598 iter_type get(iter_type __b, iter_type __e, ios_base& __iob,
605 iter_type get(iter_type __b, iter_type __e, ios_base& __iob,
612 iter_type get(iter_type __b, iter_type __e, ios_base& __iob,
619 iter_type get(iter_type __b, iter_type __e, ios_base& __iob,
626 iter_type get(iter_type __b, iter_type __e, ios_base& __iob,
633 iter_type get(iter_type __b, iter_type __e, ios_base& __iob,
[all …]
/external/libcxx/include/
Dlocale575 typedef _InputIterator iter_type;
582 iter_type get(iter_type __b, iter_type __e, ios_base& __iob,
589 iter_type get(iter_type __b, iter_type __e, ios_base& __iob,
596 iter_type get(iter_type __b, iter_type __e, ios_base& __iob,
603 iter_type get(iter_type __b, iter_type __e, ios_base& __iob,
610 iter_type get(iter_type __b, iter_type __e, ios_base& __iob,
617 iter_type get(iter_type __b, iter_type __e, ios_base& __iob,
624 iter_type get(iter_type __b, iter_type __e, ios_base& __iob,
631 iter_type get(iter_type __b, iter_type __e, ios_base& __iob,
638 iter_type get(iter_type __b, iter_type __e, ios_base& __iob,
[all …]
/external/parameter-framework/asio-1.10.6/include/asio/detail/
Dhandler_type_requirements.hpp123iter_type) typedef ASIO_HANDLER_TYPE(handler_type, void(asio::error_code, iter_type))… argument
125iter_type) typedef ASIO_HANDLER_TYPE(handler_type, void(asio::error_code, iter_type))… argument
149 #define ASIO_COMPOSED_CONNECT_HANDLER_CHECK( handler_type, handler, iter_type) typedef int …
151 #define ASIO_RESOLVE_HANDLER_CHECK( handler_type, handler, iter_type) typedef int ASIO_UNUS…

12