Lines Matching refs:coeffCntr

52   WebRtc_Word16 coeffCntr;  in WebRtcIsac_RemoveLarMean()  local
76 for(coeffCntr = 0; coeffCntr < UB_LPC_ORDER; coeffCntr++) in WebRtcIsac_RemoveLarMean()
79 *lar++ -= meanLAR[coeffCntr]; in WebRtcIsac_RemoveLarMean()
181 WebRtc_Word16 coeffCntr; in WebRtcIsac_DecorrelateInterVec() local
214 for(coeffCntr = 0; coeffCntr < UB_LPC_ORDER; coeffCntr++) in WebRtcIsac_DecorrelateInterVec()
218 out[coeffCntr + colCntr * UB_LPC_ORDER] = 0; in WebRtcIsac_DecorrelateInterVec()
221 out[coeffCntr + colCntr * UB_LPC_ORDER] += in WebRtcIsac_DecorrelateInterVec()
222 data[coeffCntr + rowCntr * UB_LPC_ORDER] * in WebRtcIsac_DecorrelateInterVec()
439 WebRtc_Word16 coeffCntr; in WebRtcIsac_CorrelateInterVec() local
464 for(coeffCntr = 0; coeffCntr < UB_LPC_ORDER; coeffCntr++) in WebRtcIsac_CorrelateInterVec()
471 myVec[rowCntr] += data[coeffCntr + colCntr * UB_LPC_ORDER] * //*ptrData * in WebRtcIsac_CorrelateInterVec()
479 out[coeffCntr + rowCntr * UB_LPC_ORDER] = myVec[rowCntr]; in WebRtcIsac_CorrelateInterVec()
503 WebRtc_Word16 coeffCntr; in WebRtcIsac_AddLarMean() local
528 for(coeffCntr = 0; coeffCntr < UB_LPC_ORDER; coeffCntr++) in WebRtcIsac_AddLarMean()
530 *data++ += meanLAR[coeffCntr]; in WebRtcIsac_AddLarMean()
551 WebRtc_Word16 coeffCntr; in WebRtcIsac_ToLogDomainRemoveMean() local
552 for(coeffCntr = 0; coeffCntr < UB_LPC_GAIN_DIM; coeffCntr++) in WebRtcIsac_ToLogDomainRemoveMean()
554 data[coeffCntr] = log(data[coeffCntr]) - WebRtcIsac_kMeanLpcGain; in WebRtcIsac_ToLogDomainRemoveMean()
607 WebRtc_Word16 coeffCntr; in WebRtcIsac_QuantizeLpcGain() local
608 for(coeffCntr = 0; coeffCntr < UB_LPC_GAIN_DIM; coeffCntr++) in WebRtcIsac_QuantizeLpcGain()
610 *idx = (int)floor((*data - WebRtcIsac_kLeftRecPointLpcGain[coeffCntr]) / in WebRtcIsac_QuantizeLpcGain()
617 else if(*idx >= WebRtcIsac_kNumQCellLpcGain[coeffCntr]) in WebRtcIsac_QuantizeLpcGain()
619 *idx = WebRtcIsac_kNumQCellLpcGain[coeffCntr] - 1; in WebRtcIsac_QuantizeLpcGain()
621 *data = WebRtcIsac_kLeftRecPointLpcGain[coeffCntr] + *idx * in WebRtcIsac_QuantizeLpcGain()
645 WebRtc_Word16 coeffCntr; in WebRtcIsac_DequantizeLpcGain() local
646 for(coeffCntr = 0; coeffCntr < UB_LPC_GAIN_DIM; coeffCntr++) in WebRtcIsac_DequantizeLpcGain()
648 *out = WebRtcIsac_kLeftRecPointLpcGain[coeffCntr] + *idx * in WebRtcIsac_DequantizeLpcGain()
702 WebRtc_Word16 coeffCntr; in WebRtcIsac_AddMeanToLinearDomain() local
703 for(coeffCntr = 0; coeffCntr < UB_LPC_GAIN_DIM; coeffCntr++) in WebRtcIsac_AddMeanToLinearDomain()
705 lpcGains[coeffCntr] = exp(lpcGains[coeffCntr] + WebRtcIsac_kMeanLpcGain); in WebRtcIsac_AddMeanToLinearDomain()