Home
last modified time | relevance | path

Searched refs:isComplexTransform (Results 1 – 2 of 2) sorted by relevance

/external/pffft/
Dpffft.hpp121 static bool isComplexTransform() { return sizeof(T) == sizeof(Complex); } in isComplexTransform() function in pffft::Fft
126 …static int minFFtsize() { return pffft_min_fft_size( isComplexTransform() ? PFFFT_COMPLEX : PFFFT_… in minFFtsize()
168 int getSpectrumSize() const { return isComplexTransform() ? length : ( length / 2 ); } in getSpectrumSize()
174 int getInternalLayoutSize() const { return isComplexTransform() ? ( 2 * length ) : length; } in getInternalLayoutSize()
Dtest_pffft.cpp67 const bool cplx = pffft::Fft<T>::isComplexTransform(); in Ttest()