Lines Matching refs:tmp0
80 EAS_I32 tmp0; in WT_VoiceGain() local
109 tmp0 = *pInputBuffer++; in WT_VoiceGain()
115 tmp2 *= tmp0; in WT_VoiceGain()
127 tmp0 = tmp2 * gainLeft; in WT_VoiceGain()
129 tmp0 = tmp0 >> NUM_MIXER_GUARD_BITS; in WT_VoiceGain()
130 tmp1 += tmp0; in WT_VoiceGain()
137 tmp0 = tmp2 * gainRight; in WT_VoiceGain()
139 tmp0 = tmp0 >> NUM_MIXER_GUARD_BITS; in WT_VoiceGain()
140 tmp1 += tmp0; in WT_VoiceGain()
422 EAS_I32 tmp0; in WT_NoiseGenerator() local
434 tmp0 = (EAS_I32) (pWTVoice->phaseAccum) >> 18; in WT_NoiseGenerator()
440 nInterpolatedSample = MULT_AUDIO_COEF( tmp0, (PHASE_ONE - pWTVoice->phaseFrac)); in WT_NoiseGenerator()
447 tmp0 = tmp1; in WT_NoiseGenerator()
566 EAS_I32 tmp0; in WT_InterpolateMono() local
588 tmp0 = (EAS_I32)(pCurrentPhaseInt - pLoopEnd); in WT_InterpolateMono()
589 if (tmp0 >= 0) in WT_InterpolateMono()
590 pCurrentPhaseInt = pLoopStart + tmp0; in WT_InterpolateMono()
592 tmp0 = *pCurrentPhaseInt; in WT_InterpolateMono()
597 tmp1 = tmp1 - tmp0; in WT_InterpolateMono()
600 tmp1 = tmp0 + (tmp1 >> NUM_EG1_FRAC_BITS); in WT_InterpolateMono()
608 tmp0 = *pMixBuffer; in WT_InterpolateMono()
611 tmp0 = tmp2 + tmp0; in WT_InterpolateMono()
612 *pMixBuffer++ = tmp0; in WT_InterpolateMono()