Lines Matching refs:Voice
51 return sizeof( Voice ) * voiceCount; in GetRequiredMemSize()
58 int voiceCount = memSize / sizeof( Voice ); in Initialize()
64 m_FreeVoiceList.PushBack( new( ptr )Voice() ); in Initialize()
65 ptr += sizeof( Voice ); in Initialize()
81 Voice& voice = m_FreeVoiceList.GetFront(); in Finalize()
83 voice.~Voice(); // デストラクタ呼び出し in Finalize()
94 Voice& voice = m_PrioVoiceList.GetFront(); in StopAllVoices()
100 Voice::CALLBACK_STATUS_CANCEL, in StopAllVoices()
108 Voice* VoiceManager::AllocVoice( in AllocVoice()
111 Voice::VoiceCallback callback, in AllocVoice()
122 Voice& voice = m_FreeVoiceList.GetFront(); in AllocVoice()
136 void VoiceManager::FreeVoice( Voice* voice ) in FreeVoice()
173 void VoiceManager::AppendVoiceList( Voice* voice ) in AppendVoiceList()
191 void VoiceManager::RemoveVoiceList( Voice* voice ) in RemoveVoiceList()
197 void VoiceManager::ChangeVoicePriority( Voice* voice ) in ChangeVoicePriority()
219 if ( itr->GetPriority() <= Voice::PRIORITY_RELEASE ) return; in UpdateEachVoicePriority()
222 if ( itr->GetPriority() == Voice::PRIORITY_NODROP ) continue; in UpdateEachVoicePriority()
243 Voice* dropVoice = &m_PrioVoiceList.GetFront(); in DropLowestPriorityVoice()
249 Voice::VoiceCallback callbackFunc = dropVoice->m_Callback; in DropLowestPriorityVoice()
259 Voice::CALLBACK_STATUS_DROP_VOICE, in DropLowestPriorityVoice()