Home
last modified time | relevance | path

Searched refs:paramArr (Results 1 – 15 of 15) sorted by relevance

/external/oboe/apps/fxlab/app/src/main/cpp/effects/descrip/
DIIRDescription.h42 static _ef<iter_type> buildEffect(std::array<float, getNumParams()> paramArr) { in buildEffect() argument
44 CombFilter<iter_type>{paramArr[2], 0, paramArr[1], static_cast<int>(paramArr[0])} in buildEffect()
DDoublingDescription.h26 static _ef<iter_type> buildEffect(std::array<float, getNumParams()> paramArr) { in buildEffect() argument
28 DoublingEffect<iter_type>{paramArr[0], paramArr[1], paramArr[2]} in buildEffect()
DAllPassDescription.h40 static _ef<iter_type> buildEffect(std::array<float, getNumParams()> paramArr) { in buildEffect() argument
42 CombFilter<iter_type>{paramArr[1], 1, -(paramArr[1]), static_cast<int>(paramArr[0])} in buildEffect()
DWhiteChorusDescription.h41 static _ef<iter_type> buildEffect(std::array<float, getNumParams()> paramArr) { in buildEffect() argument
43 WhiteChorusEffect<iter_type>{paramArr[0], paramArr[1], paramArr[2]} in buildEffect()
DFlangerDescription.h42 static _ef<iter_type> buildEffect(std::array<float, getNumParams()> paramArr) { in buildEffect() argument
44 FlangerEffect<iter_type>{paramArr[0], paramArr[1], paramArr[2]} in buildEffect()
DTremoloDescription.h40 static _ef<iter_type> buildEffect(std::array<float, getNumParams()> paramArr ) { in buildEffect() argument
42 TremoloEffect {paramArr[0], paramArr[1]}}; in buildEffect()
DVibratoDescription.h40 static _ef<iter_type> buildEffect(std::array<float, getNumParams()> paramArr) { in buildEffect() argument
42 VibratoEffect<iter_type>{paramArr[0], paramArr[1]} in buildEffect()
DEchoDescription.h40 static _ef<iter_type> buildEffect(std::array<float, getNumParams()> paramArr) { in buildEffect() argument
42 EchoEffect<iter_type>{paramArr[0], paramArr[1]} in buildEffect()
DSlapbackDescription.h42 static _ef<iter_type> buildEffect(std::array<float, getNumParams()> paramArr) { in buildEffect() argument
44 SlapbackEffect<iter_type>{paramArr[0], paramArr[1]} in buildEffect()
DFIRDescription.h39 static _ef<iter_type> buildEffect(std::array<float, getNumParams()> paramArr) { in buildEffect() argument
41 CombFilter<iter_type>{1, paramArr[1], 0, static_cast<int>(paramArr[0])} in buildEffect()
DEffectDescription.h75 static _ef<iter_type> buildEffect(std::array<float, N> paramArr);
91 _ef<iter_type> /* effect */, std::array<float, N> paramArr) { in modifyEffect() argument
92 return EffectType::template buildEffect<iter_type>(std::move(paramArr)); in modifyEffect()
DDistortionDescription.h40 static _ef<iter_type> buildEffect(std::array<float, getNumParams()> paramArr) { in buildEffect() argument
41 double scale = pow(2.0, paramArr[0] / 10); in buildEffect()
DOverdriveDescription.h45 static _ef<iter_type> buildEffect(std::array<float, getNumParams()> paramArr) { in buildEffect() argument
46 double scale = pow(2.0, paramArr[0] / 10); in buildEffect()
DGainDescription.h40 static _ef<iter_type> buildEffect(std::array<float, getNumParams()> paramArr) { in buildEffect() argument
41 float scale = paramArr[0] / 10; in buildEffect()
/external/oboe/apps/fxlab/app/src/main/cpp/
Dnative-lib.cpp62 const auto &paramArr = arg.getParams(); in Java_com_mobileer_androidfxlab_NativeInterface_getEffects() local
63 auto jparamArr = env->NewObjectArray(paramArr.size(), jparamcl, nullptr); in Java_com_mobileer_androidfxlab_NativeInterface_getEffects()
65 for (auto const &elem: paramArr) { in Java_com_mobileer_androidfxlab_NativeInterface_getEffects()