Home
last modified time | relevance | path

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

/dports/audio/avldrums-lv2/avldrums.lv2-0.4.2/fluidsynth/src/
H A Dfluid_synth.h119 int effects_groups; /**< the number of effects units (>= 1) */ member
H A Dfluid_synth.c643 fluid_settings_getint(settings, "synth.effects-groups", &synth->effects_groups); in new_fluid_synth()
780 …synth->polyphony, nbuf, synth->effects_channels, synth->effects_groups, synth->sample_rate, synth-… in new_fluid_synth()
3694 nfxunits = synth->effects_groups; in fluid_synth_process_LOCAL()
5640 result = synth->effects_groups; in fluid_synth_count_effects_groups()
H A Dfluid_voice.c356 i += (voice->chan % channel->synth->effects_groups) * channel->synth->effects_channels; in fluid_voice_init()
/dports/audio/gmsynth-lv2/gmsynth.lv2-0.5.0/fluidsynth/src/
H A Dfluid_synth.h119 int effects_groups; /**< the number of effects units (>= 1) */ member
H A Dfluid_synth.c643 fluid_settings_getint(settings, "synth.effects-groups", &synth->effects_groups); in new_fluid_synth()
780 …synth->polyphony, nbuf, synth->effects_channels, synth->effects_groups, synth->sample_rate, synth-… in new_fluid_synth()
3694 nfxunits = synth->effects_groups; in fluid_synth_process_LOCAL()
5640 result = synth->effects_groups; in fluid_synth_count_effects_groups()
H A Dfluid_voice.c356 i += (voice->chan % channel->synth->effects_groups) * channel->synth->effects_channels; in fluid_voice_init()
/dports/audio/fluidsynth/fluidsynth-2.2.4/src/synth/
H A Dfluid_synth.h121 int effects_groups; /**< the number of effects units (>= 1) */ member
H A Dfluid_synth.c674 fluid_settings_getint(settings, "synth.effects-groups", &synth->effects_groups); in new_fluid_synth()
823 synth->effects_channels, synth->effects_groups, in new_fluid_synth()
4134 nfxunits = synth->effects_groups; in fluid_synth_process_LOCAL()
5808 if(fx_group < -1 || fx_group >= synth->effects_groups) in fluid_synth_reverb_on()
6030 if(fx_group < -1 || fx_group >= synth->effects_groups) in fluid_synth_reverb_set_param()
6226 if(fx_group < -1 || fx_group >= synth->effects_groups) in fluid_synth_reverb_get_param()
6282 if(fx_group < -1 || fx_group >= synth->effects_groups) in fluid_synth_chorus_on()
6511 if(fx_group < -1 || fx_group >= synth->effects_groups) in fluid_synth_chorus_set_param()
6761 if(fx_group < -1 || fx_group >= synth->effects_groups) in fluid_synth_chorus_get_param()
6946 result = synth->effects_groups; in fluid_synth_count_effects_groups()
H A Dfluid_voice.c359 i += (voice->chan % channel->synth->effects_groups) * channel->synth->effects_channels; in fluid_voice_init()
/dports/audio/ardour6/Ardour-6.8.0/libs/fluidsynth/src/
H A Dfluid_synth.h119 int effects_groups; /**< the number of effects units (>= 1) */ member
H A Dfluid_synth.c669 fluid_settings_getint(settings, "synth.effects-groups", &synth->effects_groups); in new_fluid_synth()
818 synth->effects_channels, synth->effects_groups, in new_fluid_synth()
4021 nfxunits = synth->effects_groups; in fluid_synth_process_LOCAL()
5695 if(fx_group < -1 || fx_group >= synth->effects_groups) in fluid_synth_reverb_on()
5917 if(fx_group < -1 || fx_group >= synth->effects_groups) in fluid_synth_reverb_set_param()
6113 if(fx_group < -1 || fx_group >= synth->effects_groups) in fluid_synth_reverb_get_param()
6169 if(fx_group < -1 || fx_group >= synth->effects_groups) in fluid_synth_chorus_on()
6398 if(fx_group < -1 || fx_group >= synth->effects_groups) in fluid_synth_chorus_set_param()
6648 if(fx_group < -1 || fx_group >= synth->effects_groups) in fluid_synth_chorus_get_param()
6832 result = synth->effects_groups; in fluid_synth_count_effects_groups()
H A Dfluid_voice.c359 i += (voice->chan % channel->synth->effects_groups) * channel->synth->effects_channels; in fluid_voice_init()
/dports/games/freeorion/freeorion-0.4.10.2/universe/
H A DUniverse.cpp994 const std::vector<std::shared_ptr<Effect::EffectsGroup>>& effects_groups, in DispatchEffectsGroupScopeEvaluations() argument
1005 already_evaluated_activation_condition_idx.reserve(effects_groups.size()); in DispatchEffectsGroupScopeEvaluations()
1013 std::vector<Condition::ObjectSet> active_sources{effects_groups.size()}; in DispatchEffectsGroupScopeEvaluations()
1015 for (std::size_t i = 0; i < effects_groups.size(); ++i) { in DispatchEffectsGroupScopeEvaluations()
1016 const auto* effects_group = effects_groups.at(i).get(); in DispatchEffectsGroupScopeEvaluations()
1065 …TraceLogger(effects) << "After activation condition, for " << effects_groups.size() << " effects g… in DispatchEffectsGroupScopeEvaluations()
1080 already_evaluated_activation_condition_idx.reserve(effects_groups.size()); in DispatchEffectsGroupScopeEvaluations()
1092 for (std::size_t i = 0; i < effects_groups.size(); ++i) { in DispatchEffectsGroupScopeEvaluations()
1099 const auto* effects_group = effects_groups.at(i).get(); in DispatchEffectsGroupScopeEvaluations()
H A DEffect.h193 … FO_COMMON_API std::string Dump(const std::vector<std::shared_ptr<EffectsGroup>>& effects_groups);
H A DEffects.cpp313 std::string Dump(const std::vector<std::shared_ptr<EffectsGroup>>& effects_groups) { in Dump() argument
316 for (auto& effects_group : effects_groups) { in Dump()