Lines Matching refs:pInput
204 static inline void fft15(FIXP_DBL *pInput) in fft15() argument
217 const FIXP_DBL *pSrc = pInput; in fft15()
294 FIXP_DBL *RESTRICT pDst = pInput; in fft15()
1086 #define fftN2(pInput, length, dim1, dim2, fft_func1, fft_func2, RotVectorReal, RotVectorImag) \ argument
1100 const FIXP_DBL* pSrc = pInput; \
1128 FIXP_DBL *RESTRICT pDstOut = pInput; \
1160 FIXP_DBL *pInput, in fftN2() argument
1186 pSrc = pInput; in fftN2()
1227 pDstOut = pInput; in fftN2()
1283 static inline void fft60(FIXP_DBL *pInput, INT *pScalefactor) in fft60() argument
1286 pInput, 60, 4, 15, in fft60()
1303 static inline void fft240(FIXP_DBL *pInput, INT *pScalefactor) in fft240() argument
1306 pInput, 240, 16, 15, in fft240()
1322 static inline void fft480(FIXP_DBL *pInput, INT *pScalefactor) in fft480() argument
1325 pInput, 480, 32, 15, in fft480()
1332 void fft(int length, FIXP_DBL *pInput, INT *pScalefactor) in fft() argument
1336 fft_32(pInput); in fft()
1344 fft_16(pInput); in fft()
1348 fft_8(pInput); in fft()
1352 fft3(pInput); in fft()
1355 fft_4(pInput); in fft()
1359 fft5(pInput); in fft()
1362 fft15(pInput); in fft()
1366 fft60(pInput, pScalefactor); in fft()
1369 dit_fft(pInput, 6, SineTable512, 512); in fft()
1373 fft240(pInput, pScalefactor); in fft()
1376 dit_fft(pInput, 8, SineTable512, 512); in fft()
1380 fft480(pInput, pScalefactor); in fft()
1383 dit_fft(pInput, 9, SineTable512, 512); in fft()
1394 void ifft(int length, FIXP_DBL *pInput, INT *scalefactor) in ifft() argument