Home
last modified time | relevance | path

Searched refs:pEAS (Results 1 – 5 of 5) sorted by relevance

/external/sonivox/arm-wt-22k/lib_src/
Deas_wtsynth.c181 pArticulation = &pSynth->pEAS->pArticulations[pWTVoice->artIndex]; in WT_ReleaseVoice()
262 if (pWTVoice->eg1Value < pSynth->pEAS->pArticulations[pWTVoice->artIndex].eg1.sustainLevel) in WT_SustainPedal()
343 pRegion = &(pSynth->pEAS->pWTRegions[regionIndex]); in WT_StartVoice()
350 pArt = &pSynth->pEAS->pArticulations[pWTVoice->artIndex]; in WT_StartVoice()
399 …pWTVoice->phaseAccum = (EAS_U32) pSynth->pEAS->pSamples + pSynth->pEAS->pSampleOffsets[pRegion->wa… in WT_StartVoice()
401 pWTVoice->phaseAccum = pSynth->pEAS->pSampleOffsets[pRegion->waveIndex]; in WT_StartVoice()
403 …pWTVoice->phaseAccum = (EAS_U32) pSynth->pEAS->pSamples + pSynth->pEAS->pSampleOffsets[pRegion->wa… in WT_StartVoice()
412 …pWTVoice->loopStart = pWTVoice->loopEnd = pWTVoice->phaseAccum + pSynth->pEAS->pSampleLen[pRegion-… in WT_StartVoice()
529 pWTRegion = &pSynth->pEAS->pWTRegions[pVoice->regionIndex & REGION_INDEX_MASK]; in WT_UpdateVoice()
530 pArt = &pSynth->pEAS->pArticulations[pWTVoice->artIndex]; in WT_UpdateVoice()
[all …]
Deas_voicemgt.c133 return &pSynth->pEAS->pFMRegions[regionIndex & REGION_INDEX_MASK].region; in GetRegionPtr()
135 return &pSynth->pEAS->pWTRegions[regionIndex].region; in GetRegionPtr()
137 return &pSynth->pEAS->pWTRegions[regionIndex].region; in GetRegionPtr()
139 return &pSynth->pEAS->pFMRegions[regionIndex].region; in GetRegionPtr()
2579 static EAS_RESULT VMFindProgram (const S_EAS *pEAS, EAS_U32 bank, EAS_U8 programNum, EAS_U16 *pRegi… in VMFindProgram() argument
2587 if (pEAS == NULL) in VMFindProgram()
2591 for (i = 0; i < pEAS->numBanks; i++) in VMFindProgram()
2593 if (bank == (EAS_U32) pEAS->pBanks[i].locale) in VMFindProgram()
2595 regionIndex = pEAS->pBanks[i].regionIndex[programNum]; in VMFindProgram()
2609 for (i = 0, p = pEAS->pPrograms; i < pEAS->numPrograms; i++, p++) in VMFindProgram()
[all …]
Deas_mdls.c443 static void DumpDLS (S_EAS *pEAS);
2679 static void DumpDLS (S_EAS *pEAS) in DumpDLS() argument
2686 EAS_ReportEx(_EAS_SEVERITY_NOFILTER, 0x19299ed4, 0x00000022 , pEAS->numPrograms); in DumpDLS()
2687 EAS_ReportEx(_EAS_SEVERITY_NOFILTER, 0x19299ed4, 0x00000023 , pEAS->numWTRegions); in DumpDLS()
2688 EAS_ReportEx(_EAS_SEVERITY_NOFILTER, 0x19299ed4, 0x00000024 , pEAS->numDLSArticulations); in DumpDLS()
2689 EAS_ReportEx(_EAS_SEVERITY_NOFILTER, 0x19299ed4, 0x00000025 , pEAS->numSamples); in DumpDLS()
2692 for (i = 0; i < pEAS->numPrograms; i++) in DumpDLS()
2695 pEAS->pPrograms[i].locale >> 16, in DumpDLS()
2696 (pEAS->pPrograms[i].locale >> 8) & 0x7f, in DumpDLS()
2697 pEAS->pPrograms[i].locale & 0x7f); in DumpDLS()
[all …]
Deas_vm_protos.h839 EAS_RESULT VMSetGlobalEASLib (S_VOICE_MGR *pVoiceMgr, EAS_SNDLIB_HANDLE pEAS);
840 EAS_RESULT VMSetEASLib (S_SYNTH *pSynth, EAS_SNDLIB_HANDLE pEAS);
Deas_synth.h308 const S_EAS *pEAS; member