Lines Matching refs:maxPolyphony
286 pVoiceMgr->maxPolyphony = (EAS_U16) MAX_SYNTH_VOICES; in VMInitialize()
391 pSynth->poolAlloc[0] = (EAS_U8) pEASData->pVoiceMgr->maxPolyphony; in VMInitMIDI()
460 if (pSynth->maxPolyphony < pVoiceMgr->maxPolyphony) in VMReset()
461 pSynth->poolAlloc[0] = (EAS_U8) pVoiceMgr->maxPolyphony; in VMReset()
463 pSynth->poolAlloc[0] = (EAS_U8) pSynth->maxPolyphony; in VMReset()
701 EAS_INT maxPolyphony; in VMMIPUpdateChannelMuting() local
711 if (pSynth->maxPolyphony) in VMMIPUpdateChannelMuting()
712 maxPolyphony = pSynth->maxPolyphony; in VMMIPUpdateChannelMuting()
714 maxPolyphony = pVoiceMgr->maxPolyphony; in VMMIPUpdateChannelMuting()
721 if ((pSynth->channels[i].mip != 0) && (pSynth->channels[i].mip <= maxPolyphony)) in VMMIPUpdateChannelMuting()
1655 if ((pSynth->maxPolyphony == 0) || (pVoiceMgr->maxPolyphony < pSynth->maxPolyphony)) in VMStartVoice()
1656 maxSynthPoly = pVoiceMgr->maxPolyphony; in VMStartVoice()
1658 maxSynthPoly = pSynth->maxPolyphony; in VMStartVoice()
1661 if ((pVoiceMgr->activeVoices < pVoiceMgr->maxPolyphony) && in VMStartVoice()
3039 pSynth->maxPolyphony = 0; in VMSetPolyphony()
3044 pSynth->maxPolyphony = (EAS_U16) polyphonyCount; in VMSetPolyphony()
3047 if (polyphonyCount > pVoiceMgr->maxPolyphony) in VMSetPolyphony()
3048 polyphonyCount = pVoiceMgr->maxPolyphony; in VMSetPolyphony()