• Home
  • Raw
  • Download

Lines Matching refs:nlength

66                                      WORD32 *fin_im, WORD32 nlength) {  in ixheaacd_mps_complex_fft_64_dec()  argument
71 WORD32 npoints = nlength; in ixheaacd_mps_complex_fft_64_dec()
530 for (i = 0; i < 2 * nlength; i += 2) { in ixheaacd_mps_complex_fft_64_dec()
538 VOID ixheaacd_complex_fft_p2_dec(WORD32 *xr, WORD32 *xi, WORD32 nlength, in ixheaacd_complex_fft_p2_dec() argument
548 WORD32 npoints = nlength; in ixheaacd_complex_fft_p2_dec()
569 for (i = 0; i < nlength; i++) { in ixheaacd_complex_fft_p2_dec()
1612 for (i = 0; i < nlength; i++) { in ixheaacd_complex_fft_p2_dec()
1658 VOID ixheaacd_complex_fft_p3(WORD32 *xr, WORD32 *xi, WORD32 nlength, in ixheaacd_complex_fft_p3() argument
1667 WORD32 mpass = nlength; in ixheaacd_complex_fft_p3()
1705 for (i = 0; i < nlength; i++) { in ixheaacd_complex_fft_p3()
1717 for (i = 0; i < nlength; i += 3) { in ixheaacd_complex_fft_p3()
1751 for (i = 0; i < nlength; i += 3) { in ixheaacd_complex_fft_p3()
1809 VOID ixheaacd_complex_fft(WORD32 *data_r, WORD32 *data_i, WORD32 nlength, in ixheaacd_complex_fft() argument
1811 if (nlength & (nlength - 1)) { in ixheaacd_complex_fft()
1812 if ((nlength != 24) && (nlength != 48) && (nlength != 96) && in ixheaacd_complex_fft()
1813 (nlength != 192) && (nlength != 384)) { in ixheaacd_complex_fft()
1814 printf("%d point FFT not supported", nlength); in ixheaacd_complex_fft()
1817 ixheaacd_complex_fft_p3(data_r, data_i, nlength, fft_mode, preshift); in ixheaacd_complex_fft()
1819 (*ixheaacd_complex_fft_p2)(data_r, data_i, nlength, fft_mode, preshift); in ixheaacd_complex_fft()