Lines Matching refs:pInput
464 static inline void fft12(FIXP_DBL *pInput) { in fft12() argument
469 pSrc = pInput; in fft12()
561 pDst = pInput; in fft12()
603 static inline void fft15(FIXP_DBL *pInput) { in fft15() argument
615 const FIXP_DBL *pSrc = pInput; in fft15()
687 FIXP_DBL *RESTRICT pDst = pInput; in fft15()
1577 static inline void fftN2_func(FIXP_DBL *pInput, const int length, in fftN2_func() argument
1598 pSrc = pInput; in fftN2_func()
1651 pDstOut = pInput; in fftN2_func()
1693 #define fftN2(DATA_TYPE, pInput, length, dim1, dim2, fft_func1, fft_func2, \ argument
1698 fftN2_func(pInput, length, dim1, dim2, fft_func1, fft_func2, \
1715 static inline void fft6(FIXP_DBL *pInput) { in fft6() argument
1716 fftN2(FIXP_DBL, pInput, 6, 2, 3, fft2, fft3, RotVectorReal6, RotVectorImag6); in fft6()
1721 static inline void fft12(FIXP_DBL *pInput) { in fft12() argument
1722 fftN2(FIXP_DBL, pInput, 12, 3, 4, fft3, fft_4, RotVectorReal12, in fft12()
1728 static inline void fft20(FIXP_DBL *pInput) { in fft20() argument
1729 fftN2(FIXP_DBL, pInput, 20, 4, 5, fft_4, fft5, RotVectorReal20, in fft20()
1734 static inline void fft24(FIXP_DBL *pInput) { in fft24() argument
1735 fftN2(FIXP_DBL, pInput, 24, 2, 12, fft2, fft12, RotVectorReal24, in fft24()
1739 static inline void fft48(FIXP_DBL *pInput) { in fft48() argument
1740 fftN2(FIXP_DBL, pInput, 48, 4, 12, fft_4, fft12, RotVectorReal48, in fft48()
1745 static inline void fft60(FIXP_DBL *pInput) { in fft60() argument
1746 fftN2(FIXP_DBL, pInput, 60, 4, 15, fft_4, fft15, RotVectorReal60, in fft60()
1752 static inline void fft80(FIXP_DBL *pInput) { in fft80() argument
1753 fftN2(FIXP_DBL, pInput, 80, 5, 16, fft5, fft_16, RotVectorReal80, in fft80()
1759 static inline void fft96(FIXP_DBL *pInput) { in fft96() argument
1760 fftN2(FIXP_DBL, pInput, 96, 3, 32, fft3, fft_32, RotVectorReal96, in fft96()
1766 static inline void fft120(FIXP_DBL *pInput) { in fft120() argument
1767 fftN2(FIXP_DBL, pInput, 120, 8, 15, fft_8, fft15, RotVectorReal120, in fft120()
1773 static inline void fft192(FIXP_DBL *pInput) { in fft192() argument
1774 fftN2(FIXP_DBL, pInput, 192, 16, 12, fft_16, fft12, RotVectorReal192, in fft192()
1780 static inline void fft240(FIXP_DBL *pInput) { in fft240() argument
1781 fftN2(FIXP_DBL, pInput, 240, 16, 15, fft_16, fft15, RotVectorReal240, in fft240()
1787 static inline void fft384(FIXP_DBL *pInput) { in fft384() argument
1788 fftN2(FIXP_DBL, pInput, 384, 12, 32, fft12, fft_32, RotVectorReal384, in fft384()
1794 static inline void fft480(FIXP_DBL *pInput) { in fft480() argument
1795 fftN2(FIXP_DBL, pInput, 480, 32, 15, fft_32, fft15, RotVectorReal480, in fft480()
1800 void fft(int length, FIXP_DBL *pInput, INT *pScalefactor) { in fft() argument
1802 C_ALLOC_ALIGNED_CHECK(pInput); in fft()
1805 fft_32(pInput); in fft()
1810 fft_16(pInput); in fft()
1814 fft_8(pInput); in fft()
1818 fft2(pInput); in fft()
1822 fft3(pInput); in fft()
1826 fft_4(pInput); in fft()
1830 fft5(pInput); in fft()
1834 fft6(pInput); in fft()
1838 fft10(pInput); in fft()
1842 fft12(pInput); in fft()
1846 fft15(pInput); in fft()
1850 fft20(pInput); in fft()
1854 fft24(pInput); in fft()
1858 fft48(pInput); in fft()
1862 fft60(pInput); in fft()
1866 dit_fft(pInput, 6, SineTable512, 512); in fft()
1870 fft80(pInput); in fft()
1874 fft96(pInput); in fft()
1878 fft120(pInput); in fft()
1882 dit_fft(pInput, 7, SineTable512, 512); in fft()
1886 fft192(pInput); in fft()
1890 fft240(pInput); in fft()
1894 dit_fft(pInput, 8, SineTable512, 512); in fft()
1898 fft384(pInput); in fft()
1902 fft480(pInput); in fft()
1906 dit_fft(pInput, 9, SineTable512, 512); in fft()
1916 void ifft(int length, FIXP_DBL *pInput, INT *scalefactor) { in ifft() argument