Home | History | Annotate | Download | only in lib_src

Lines Matching defs:tempValue

540     EAS_I32 tempValue;
711 //tempValue = SATURATE(psEarly->m_zLpf + pReverbData->m_nRevOutFbkL);
712 tempValue = SATURATE((EAS_I32)pReverbData->m_sEarlyL.m_zLpf + (EAS_I32)pReverbData->m_nRevOutFbkL);
715 tempValue = MULT_EG1_EG1(tempValue, (pReverbData->m_nWet<<1));
717 tempValue += *pOutputBuffer;
718 *pOutputBuffer++ = (EAS_PCM)SATURATE(tempValue);
751 tempValue = SATURATE((EAS_I32)pReverbData->m_sEarlyR.m_zLpf + (EAS_I32)pReverbData->m_nRevOutFbkR);
754 tempValue = MULT_EG1_EG1(tempValue, (pReverbData->m_nWet << 1));
756 tempValue = tempValue + *pOutputBuffer;
757 *pOutputBuffer++ = (EAS_PCM)SATURATE(tempValue);