Lines Matching refs:pScalefactor
1283 static inline void fft60(FIXP_DBL *pInput, INT *pScalefactor) in fft60() argument
1290 *pScalefactor += SCALEFACTOR60; in fft60()
1303 static inline void fft240(FIXP_DBL *pInput, INT *pScalefactor) in fft240() argument
1310 *pScalefactor += SCALEFACTOR240; in fft240()
1322 static inline void fft480(FIXP_DBL *pInput, INT *pScalefactor) in fft480() argument
1329 *pScalefactor += SCALEFACTOR480; in fft480()
1332 void fft(int length, FIXP_DBL *pInput, INT *pScalefactor) in fft() argument
1337 *pScalefactor += SCALEFACTOR32; in fft()
1345 *pScalefactor += SCALEFACTOR16; in fft()
1349 *pScalefactor += SCALEFACTOR8; in fft()
1356 *pScalefactor += SCALEFACTOR4; in fft()
1363 *pScalefactor += 2; in fft()
1366 fft60(pInput, pScalefactor); in fft()
1370 *pScalefactor += SCALEFACTOR64; in fft()
1373 fft240(pInput, pScalefactor); in fft()
1377 *pScalefactor += SCALEFACTOR256; in fft()
1380 fft480(pInput, pScalefactor); in fft()
1384 *pScalefactor += SCALEFACTOR512; in fft()