HomeSort by relevance Sort by last modified time
    Searched refs:phaseAccum (Results 1 - 10 of 10) sorted by null

  /external/sonivox/arm-hybrid-22k/lib_src/
eas_wt_IPC_frame.h 71 EAS_U32 phaseAccum; /* current sample, integer portion of phase */
eas_wtsynth.c 137 pVoiceMgr->wtVoices[i].phaseAccum = DEFAULT_PHASE_INT;
384 pWTVoice->phaseAccum = 4574296;
395 pWTVoice->phaseAccum = (EAS_U32) pSynth->pEAS->pSamples + pSynth->pEAS->pSampleOffsets[pRegion->waveIndex];
397 pWTVoice->phaseAccum = pSynth->pEAS->pSampleOffsets[pRegion->waveIndex];
399 pWTVoice->phaseAccum = (EAS_U32) pSynth->pEAS->pSamples + pSynth->pEAS->pSampleOffsets[pRegion->waveIndex];
404 pWTVoice->loopStart = pWTVoice->phaseAccum + pRegion->loopStart;
405 pWTVoice->loopEnd = pWTVoice->phaseAccum + pRegion->loopEnd - 1;
408 pWTVoice->loopStart = pWTVoice->loopEnd = pWTVoice->phaseAccum + pSynth->pEAS->pSampleLen[pRegion->waveIndex] - 1;
415 wtConfig.phaseAccum = pWTVoice->phaseAccum;
    [all...]
eas_wtengine.h 129 EAS_U32 phaseAccum; /* current sample, integer portion of phase */
eas_wtengine.c 188 pSamples = (const EAS_SAMPLE*) pWTVoice->phaseAccum;
247 pWTVoice->phaseAccum = (EAS_U32) pSamples;
281 pSamples = (const EAS_SAMPLE*) pWTVoice->phaseAccum;
334 pWTVoice->phaseAccum = (EAS_U32) pSamples;
434 tmp0 = (EAS_I32) (pWTVoice->phaseAccum) >> 18;
448 pWTVoice->phaseAccum = pWTVoice->loopEnd;
  /external/sonivox/arm-wt-22k/lib_src/
eas_wt_IPC_frame.h 71 EAS_U32 phaseAccum; /* current sample, integer portion of phase */
eas_wtsynth.c 137 pVoiceMgr->wtVoices[i].phaseAccum = DEFAULT_PHASE_INT;
384 pWTVoice->phaseAccum = 4574296;
395 pWTVoice->phaseAccum = (EAS_U32) pSynth->pEAS->pSamples + pSynth->pEAS->pSampleOffsets[pRegion->waveIndex];
397 pWTVoice->phaseAccum = pSynth->pEAS->pSampleOffsets[pRegion->waveIndex];
399 pWTVoice->phaseAccum = (EAS_U32) pSynth->pEAS->pSamples + pSynth->pEAS->pSampleOffsets[pRegion->waveIndex];
404 pWTVoice->loopStart = pWTVoice->phaseAccum + pRegion->loopStart;
405 pWTVoice->loopEnd = pWTVoice->phaseAccum + pRegion->loopEnd - 1;
408 pWTVoice->loopStart = pWTVoice->loopEnd = pWTVoice->phaseAccum + pSynth->pEAS->pSampleLen[pRegion->waveIndex] - 1;
415 wtConfig.phaseAccum = pWTVoice->phaseAccum;
    [all...]
eas_wtengine.h 129 EAS_U32 phaseAccum; /* current sample, integer portion of phase */
eas_wtengine.c 188 pSamples = (const EAS_SAMPLE*) pWTVoice->phaseAccum;
247 pWTVoice->phaseAccum = (EAS_U32) pSamples;
281 pSamples = (const EAS_SAMPLE*) pWTVoice->phaseAccum;
334 pWTVoice->phaseAccum = (EAS_U32) pSamples;
434 tmp0 = (EAS_I32) (pWTVoice->phaseAccum) >> 18;
448 pWTVoice->phaseAccum = pWTVoice->loopEnd;
eas_dlssynth.c 348 pWTVoice->phaseAccum = (EAS_U32) pSynth->pDLS->pDLSSamples + pSynth->pDLS->pDLSSampleOffsets[pDLSRegion->wtRegion.waveIndex];
351 pWTVoice->loopStart = pWTVoice->phaseAccum + pDLSRegion->wtRegion.loopStart;
352 pWTVoice->loopEnd = pWTVoice->phaseAccum + pDLSRegion->wtRegion.loopEnd - 1;
355 pWTVoice->loopStart = pWTVoice->loopEnd = pWTVoice->phaseAccum + pSynth->pDLS->pDLSSampleLen[pDLSRegion->wtRegion.waveIndex] - 1;
  /external/webkit/Source/WebCore/platform/audio/
FFTFrame.cpp 91 double phaseAccum = 0.0;
160 phaseAccum += deltaPhaseBlend;
163 if (phaseAccum > piDouble)
164 phaseAccum -= 2.0 * piDouble;
165 if (phaseAccum < -piDouble)
166 phaseAccum += 2.0 * piDouble;
168 Complex c = complexFromMagnitudePhase(mag, phaseAccum);

Completed in 40 milliseconds