Home | History | Annotate | Download | only in src

Lines Matching refs:xn

39 		Word16 xn[],                          /* (i)     : target vector                         */

49 Word16 xn[], /* (i) : target vector */
66 Word16 xn[], /* (i) : target vector */
90 Norm_corr_asm(exc, xn, h, L_subfr, t_min, t_max, corr);
92 Norm_Corr(exc, xn, h, L_subfr, t_min, t_max, corr);
163 Word16 xn[], /* (i) : target vector */
184 /* Compute rounded down 1/sqrt(energy of xn[]) */
188 L_tmp += (xn[i] * xn[i]);
189 L_tmp += (xn[i+1] * xn[i+1]);
190 L_tmp += (xn[i+2] * xn[i+2]);
191 L_tmp += (xn[i+3] * xn[i+3]);
197 //exp = exp + 2; /* energy of xn[] x 2 + rounded up */
204 /* Compute correlation between xn[] and excf[] */
209 L_tmp += (xn[i] * excf[i]);
211 L_tmp += (xn[i+1] * excf[i+1]);
213 L_tmp += (xn[i+2] * excf[i+2]);
215 L_tmp += (xn[i+3] * excf[i+3]);