Home
last modified time | relevance | path

Searched refs:resolve_slot_with_size (Results 1 – 3 of 3) sorted by relevance

/dports/audio/supercollider/SuperCollider-3.11.0-Source/server/supernova/server/
H A Dsynth.hpp40 slot_index_t resolve_slot_with_size(const char* str, int& size_of_slot) {
41 return class_ptr->resolve_slot_with_size(str, size_of_slot);
48 … slot_index_t resolve_slot_with_size(const char* str, std::size_t hashed_str, int& size_of_slot) {
49 return class_ptr->resolve_slot_with_size(str, hashed_str, size_of_slot);
103 …slot_index_t slot_id = definition_instance::resolve_slot_with_size(slot_str, hashed_str, size_of_p…
122 …slot_index_t slot_id = definition_instance::resolve_slot_with_size(slot_str, hashed_str, size_of_p…
H A Dsynth_definition.hpp89 slot_index_t resolve_slot_with_size(const char* str, int& number_of_values) const { in resolve_slot_with_size() function in nova::detail::slot_resolver
90 return resolve_slot_with_size(str, string_hash(str), number_of_values); in resolve_slot_with_size()
101 …slot_index_t resolve_slot_with_size(const char* str, std::size_t hashed_value, int& number_of_valu… in resolve_slot_with_size() function in nova::detail::slot_resolver
/dports/audio/supercollider/SuperCollider-3.11.0-Source/server/supernova/sc/
H A Dsc_synth.hpp167 int slot_index = resolve_slot_with_size(slot_name, controls_per_slot); in map_control_buses()