Lines Matching refs:Voice
49 return sizeof( Voice ) * voiceCount; in GetRequiredMemSize()
56 int voiceCount = memSize / sizeof( Voice ); in Initialize()
62 m_FreeVoiceList.PushBack( new( ptr )Voice() ); in Initialize()
63 ptr += sizeof( Voice ); in Initialize()
79 Voice& voice = m_FreeVoiceList.GetFront(); in Finalize()
81 voice.~Voice(); // デストラクタ呼び出し in Finalize()
92 Voice& voice = m_PrioVoiceList.GetFront(); in StopAllVoices()
98 Voice::CALLBACK_STATUS_CANCEL, in StopAllVoices()
106 Voice* VoiceManager::AllocVoice( in AllocVoice()
109 Voice::VoiceCallback callback, in AllocVoice()
120 Voice& voice = m_FreeVoiceList.GetFront(); in AllocVoice()
134 void VoiceManager::FreeVoice( Voice* voice ) in FreeVoice()
171 void VoiceManager::AppendVoiceList( Voice* voice ) in AppendVoiceList()
189 void VoiceManager::RemoveVoiceList( Voice* voice ) in RemoveVoiceList()
195 void VoiceManager::ChangeVoicePriority( Voice* voice ) in ChangeVoicePriority()
217 if ( itr->GetPriority() <= Voice::PRIORITY_RELEASE ) return; in UpdateEachVoicePriority()
220 if ( itr->GetPriority() == Voice::PRIORITY_NODROP ) continue; in UpdateEachVoicePriority()
241 Voice* dropVoice = &m_PrioVoiceList.GetFront(); in DropLowestPriorityVoice()
247 Voice::VoiceCallback callbackFunc = dropVoice->m_Callback; in DropLowestPriorityVoice()
257 Voice::CALLBACK_STATUS_DROP_VOICE, in DropLowestPriorityVoice()