/external/oboe/apps/fxlab/app/src/main/cpp/effects/descrip/ |
D | EffectDescription.h | 25 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 …]
|
D | FlangerDescription.h | 41 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()
|
D | GainDescription.h | 39 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()
|
D | PassthroughDescription.h | 39 template<class iter_type> 40 static _ef<iter_type> buildEffect(std::array<float, getNumParams()> ) { in buildEffect() 41 return [](iter_type, iter_type) {}; in buildEffect()
|
D | VibratoDescription.h | 39 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()
|
D | EchoDescription.h | 39 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()
|
D | SlapbackDescription.h | 41 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()
|
D | FIRDescription.h | 38 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()
|
D | IIRDescription.h | 41 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()
|
D | DistortionDescription.h | 39 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()
|
D | DoublingDescription.h | 25 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()
|
D | AllPassDescription.h | 39 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()
|
D | WhiteChorusDescription.h | 40 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()
|
D | OverdriveDescription.h | 44 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/ |
D | FunctionList.h | 25 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/ |
D | DriveControl.h | 22 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;
|
D | SingleFunctionEffects.h | 36 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()
|
D | CombFilter.h | 21 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};
|
D | DelayLineEffect.h | 28 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};
|
D | VibratroEffect.h | 20 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()
|
D | SlapbackEffect.h | 20 template <class iter_type> 21 class SlapbackEffect: public DelayLineEffect<iter_type> { 24 DelayLineEffect<iter_type> {1, feedforward, 0, in SlapbackEffect()
|
D | EchoEffect.h | 23 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/ |
D | locale | 570 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/ |
D | locale | 575 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/ |
D | handler_type_requirements.hpp | 123 …iter_type) typedef ASIO_HANDLER_TYPE(handler_type, void(asio::error_code, iter_type))… argument 125 …iter_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…
|