Lines Matching refs:Nfft
1221 void radix4FftStageOne(INT16* pSrc, INT16* pDst, int Nfft){ in radix4FftStageOne() argument
1228 int revBitInc = 1<<(1+__clz(Nfft)-2); // -2 for 4 byte LD in radix4FftStageOne()
1230 loopLen = Nfft>>2; in radix4FftStageOne()
1294 void radix4IfftStageOne(INT16* pSrc, INT16* pDst, int Nfft){ in radix4IfftStageOne() argument
1302 int revBitInc = 1<<(1+__clz(Nfft)-2); // -2 for 4 byte LD in radix4IfftStageOne()
1304 loopLen = Nfft>>2; in radix4IfftStageOne()
1513 void radix4FftStageOne(INT16* pSrc, INT16* pDst, int Nfft){ in radix4FftStageOne() argument
1521 int log2Nfft = myMsb(Nfft); in radix4FftStageOne()
1523 loopLen = Nfft>>2; in radix4FftStageOne()
1534 void radix4IfftStageOne(INT16* pSrc, INT16* pDst, int Nfft){ in radix4IfftStageOne() argument
1542 int log2Nfft = myMsb(Nfft); in radix4IfftStageOne()
1544 loopLen = Nfft>>2; in radix4IfftStageOne()
1696 void radix4IfftStageOneParallel(INT16* pSrc, INT16* pDst, int Nfft) { in radix4IfftStageOneParallel() argument
1705 int log2Nfft = 31 - __clz(Nfft); in radix4IfftStageOneParallel()
1707 int log2Nfft = myMsb(Nfft); in radix4IfftStageOneParallel()
1710 loopLen = Nfft >> 2; in radix4IfftStageOneParallel()
1723 void radix4IfftStageOneStride(INT16* pSrc, INT16* pDst, int Nfft) { in radix4IfftStageOneStride() argument
1732 int log2Nfft = 31 - __clz(Nfft); in radix4IfftStageOneStride()
1734 int log2Nfft = myMsb(Nfft); in radix4IfftStageOneStride()
1737 loopLen = Nfft >> 2; in radix4IfftStageOneStride()
1749 void radix4FftMainStages(INT16* pSrc, INT16* pDst, int Nfft, const INT16* pCoeff, int lenCoeff){ in radix4FftMainStages() argument
1753 int log2Nfft = 31-__clz(Nfft); in radix4FftMainStages()
1755 int log2Nfft = myMsb(Nfft); in radix4FftMainStages()
1764 loop1 = Nfft>>2; in radix4FftMainStages()
1790 void radix4IfftMainStages(INT16* pSrc, INT16* pDst, int Nfft, const INT16* pCoeff, int lenCoeff){ in radix4IfftMainStages() argument
1794 int log2Nfft = 31-__clz(Nfft); in radix4IfftMainStages()
1796 int log2Nfft = myMsb(Nfft); in radix4IfftMainStages()
1805 loop1 = Nfft>>2; in radix4IfftMainStages()
1832 void radix4IfftMainStagesParallel(INT16* pSrc, INT16* pDst, int Nfft, const INT16* pCoeff, int lenC… in radix4IfftMainStagesParallel() argument
1836 int log2Nfft = 31 - __clz(Nfft); in radix4IfftMainStagesParallel()
1838 int log2Nfft = myMsb(Nfft); in radix4IfftMainStagesParallel()
1847 loop1 = Nfft >> 2; in radix4IfftMainStagesParallel()
1874 void myBitRev(INT16* pSrc, int Nfft){ in myBitRev() argument
1880 int log2Nfft = 31-__clz(Nfft); in myBitRev()
1882 int log2Nfft = myMsb(Nfft); in myBitRev()
1887 for(ii=0;ii<Nfft;ii++){ in myBitRev()
1897 void radix2IfftMainStages(INT16* pBfr, int Nfft, const INT16* pCoeff, int lenCoeff){ in radix2IfftMainStages() argument
1901 int log2Nfft = 31-__clz(Nfft); in radix2IfftMainStages()
1903 int log2Nfft = myMsb(Nfft); in radix2IfftMainStages()
1910 loop1 = Nfft>>1; in radix2IfftMainStages()
1933 void radix4FftLastStage(INT16* pSrc, INT16* pDst, int Nfft, const INT16* pCoeff, int lenCoeff){ in radix4FftLastStage() argument
1937 int log2Nfft = 31-__clz(Nfft); in radix4FftLastStage()
1939 int log2Nfft = myMsb(Nfft); in radix4FftLastStage()
1948 loopLen = Nfft>>1; in radix4FftLastStage()
1959 loopLen = Nfft>>2; in radix4FftLastStage()
1971 void radix4IfftLastStage(INT16* pSrc, INT16* pDst, int Nfft, const INT16* pCoeff, int lenCoeff){ in radix4IfftLastStage() argument
1975 int log2Nfft = 31-__clz(Nfft); in radix4IfftLastStage()
1977 int log2Nfft = myMsb(Nfft); in radix4IfftLastStage()
1986 loopLen = Nfft>>1; in radix4IfftLastStage()
1997 loopLen = Nfft>>2; in radix4IfftLastStage()
2010 void radix4IfftLastStageParallel(INT16* pSrc, INT16* pDst, int Nfft, const INT16* pCoeff, int lenCo… in radix4IfftLastStageParallel() argument
2014 int log2Nfft = 31 - __clz(Nfft); in radix4IfftLastStageParallel()
2016 int log2Nfft = myMsb(Nfft); in radix4IfftLastStageParallel()
2027 loopLen = Nfft >> 1; in radix4IfftLastStageParallel()
2038 loopLen = Nfft >> 2; in radix4IfftLastStageParallel()
2052 void radix4Fft(INT16* pSrc, INT16* pDst, int Nfft, const INT16* pCoeff, int lenCoeff){ in radix4Fft() argument
2054 radix4FftStageOne(pSrc, pDst, Nfft); in radix4Fft()
2056 radix4FftMainStages(pSrc, pDst, Nfft, pCoeff, lenCoeff); in radix4Fft()
2058 radix4FftLastStage(pSrc, pDst, Nfft, pCoeff, lenCoeff); in radix4Fft()
2062 void radix4Ifft(INT16* pSrc, INT16* pDst, int Nfft, const INT16* pCoeff, int lenCoeff){ in radix4Ifft() argument
2064 radix4IfftStageOne(pSrc, pDst, Nfft); in radix4Ifft()
2066 radix4IfftMainStages(pSrc, pDst, Nfft, pCoeff, lenCoeff); in radix4Ifft()
2068 radix4IfftLastStage(pSrc, pDst, Nfft, pCoeff, lenCoeff); in radix4Ifft()
2072 void radix4IfftParallel(INT16* pSrc, INT16* pDst, int Nfft, const INT16* pCoeff, int lenCoeff) { in radix4IfftParallel() argument
2074 radix4IfftStageOneParallel(pSrc, pDst, Nfft); in radix4IfftParallel()
2076 radix4IfftMainStagesParallel(pSrc, pDst, Nfft, pCoeff, lenCoeff); in radix4IfftParallel()
2078 radix4IfftLastStageParallel(pSrc, pDst, Nfft, pCoeff, lenCoeff); in radix4IfftParallel()
2083 void radix4IfftStride(INT16* pSrc, INT16* pDst, int Nfft, const INT16* pCoeff, int lenCoeff) { in radix4IfftStride() argument
2085 radix4IfftStageOneStride(pSrc, pDst, Nfft); in radix4IfftStride()
2087 radix4IfftMainStages(pSrc, pDst, Nfft, pCoeff, lenCoeff); in radix4IfftStride()
2089 radix4IfftLastStage(pSrc, pDst, Nfft, pCoeff, lenCoeff); in radix4IfftStride()
2094 void radix2Ifft(INT16* pBfr, int Nfft, const INT16* pCoeff, int lenCoeff){ in radix2Ifft() argument
2111 int log2Nfft = 31-__clz(Nfft); in radix2Ifft()
2113 int log2Nfft = myMsb(Nfft); in radix2Ifft()
2118 for(ii=0;ii<Nfft;ii++){ in radix2Ifft()
2128 loop1 = Nfft>>1; in radix2Ifft()
2196 void radix2FftFlt(float* pBfr, int Nfft, const float* pCoeff, int lenCoeff) { in radix2FftFlt() argument
2211 int log2Nfft = 31 - __clz(Nfft); in radix2FftFlt()
2213 int log2Nfft = myMsb(Nfft); in radix2FftFlt()
2218 for (ii = 0;ii<Nfft;ii++) { in radix2FftFlt()
2228 loop1 = Nfft >> 1; in radix2FftFlt()
2269 void radix2IfftFlt(float* pBfr, int Nfft, const float* pCoeff, int lenCoeff) { in radix2IfftFlt() argument
2284 int log2Nfft = 31 - __clz(Nfft); in radix2IfftFlt()
2286 int log2Nfft = myMsb(Nfft); in radix2IfftFlt()
2291 for (ii = 0;ii<Nfft;ii++) { in radix2IfftFlt()
2301 loop1 = Nfft >> 1; in radix2IfftFlt()
2346 void radix2IfftStride(INT16* pBfr, int Nfft, const INT16* pCoeff, int lenCoeff) { in radix2IfftStride() argument
2363 int log2Nfft = 31 - __clz(Nfft); in radix2IfftStride()
2365 int log2Nfft = myMsb(Nfft); in radix2IfftStride()
2370 for (ii = 0;ii<Nfft;ii++) { in radix2IfftStride()
2380 loop1 = Nfft >> 1; in radix2IfftStride()
2435 void radix2IfftParallel(INT16* pBfr, int Nfft, const INT16* pCoeff, int lenCoeff) { in radix2IfftParallel() argument
2452 int log2Nfft = 31 - __clz(Nfft); in radix2IfftParallel()
2454 int log2Nfft = myMsb(Nfft); in radix2IfftParallel()
2459 for (ii = 0;ii<Nfft;ii++) { in radix2IfftParallel()
2471 loop1 = Nfft >> 1; in radix2IfftParallel()