Lines Matching refs:fwd
187 void fwd( Complex * dst, const Scalar * src, Index nfft)
189 m_impl.fwd(dst,src,static_cast<int>(nfft));
195 void fwd( Complex * dst, const Complex * src, Index nfft)
197 m_impl.fwd(dst,src,static_cast<int>(nfft));
210 void fwd( std::vector<Complex> & dst, const std::vector<_Input> & src)
216 fwd(&dst[0],&src[0],src.size());
221 void fwd( MatrixBase<ComplexDerived> & dst, const MatrixBase<InputDerived> & src, Index nfft=-1)
249 fwd( &dst[0],&tmp[0],nfft );
251 fwd( &dst[0],&src[0],nfft );
258 fwd( const MatrixBase<InputDerived> & src, Index nfft=-1)
406 m_ifc.fwd( dst, m_src, m_nfft);