Lines Matching refs:dim2
1578 const int dim1, const int dim2, in fftN2_func() argument
1591 FDK_ASSERT(length == dim1 * dim2); in fftN2_func()
1600 for (i = 0; i < dim2; i++) { in fftN2_func()
1602 pDst[2 * j] = pSrc[2 * j * dim2]; in fftN2_func()
1603 pDst[2 * j + 1] = pSrc[2 * j * dim2 + 1]; in fftN2_func()
1653 for (int j = 0; j < dim2; j++) { in fftN2_func()
1661 switch (dim2) { in fftN2_func()
1683 for (int j = 0; j < dim2; j++) { in fftN2_func()
1693 #define fftN2(DATA_TYPE, pInput, length, dim1, dim2, fft_func1, fft_func2, \ argument
1697 C_AALLOC_SCRATCH_START(aDst2, DATA_TYPE, 2 * dim2) \
1698 fftN2_func(pInput, length, dim1, dim2, fft_func1, fft_func2, \
1700 C_AALLOC_SCRATCH_END(aDst2, DATA_TYPE, 2 * dim2) \