Home | History | Annotate | Download | only in src

Lines Matching refs:pInput

204 static inline void fft15(FIXP_DBL *pInput)
217 const FIXP_DBL *pSrc = pInput;
294 FIXP_DBL *RESTRICT pDst = pInput;
1086 #define fftN2(pInput, length, dim1, dim2, fft_func1, fft_func2, RotVectorReal, RotVectorImag) \
1100 const FIXP_DBL* pSrc = pInput; \
1121 output samples are at the address of pInput. The input vector for the fft of length dim2 is built \
1123 of pInput. \
1128 FIXP_DBL *RESTRICT pDstOut = pInput; \
1160 FIXP_DBL *pInput,
1172 at the address of pInput
1186 pSrc = pInput;
1221 output samples are at the address of pInput. The input vector for the fft of length dim2 is built
1223 of pInput.
1227 pDstOut = pInput;
1283 static inline void fft60(FIXP_DBL *pInput, INT *pScalefactor)
1286 pInput, 60, 4, 15,
1303 static inline void fft240(FIXP_DBL *pInput, INT *pScalefactor)
1306 pInput, 240, 16, 15,
1322 static inline void fft480(FIXP_DBL *pInput, INT *pScalefactor)
1325 pInput, 480, 32, 15,
1332 void fft(int length, FIXP_DBL *pInput, INT *pScalefactor)
1336 fft_32(pInput);
1344 fft_16(pInput);
1348 fft_8(pInput);
1352 fft3(pInput);
1355 fft_4(pInput);
1359 fft5(pInput);
1362 fft15(pInput);
1366 fft60(pInput, pScalefactor);
1369 dit_fft(pInput, 6, SineTable512, 512);
1373 fft240(pInput, pScalefactor);
1376 dit_fft(pInput, 8, SineTable512, 512);
1380 fft480(pInput, pScalefactor);
1383 dit_fft(pInput, 9, SineTable512, 512);
1394 void ifft(int length, FIXP_DBL *pInput, INT *scalefactor)