Searched refs:OtherMap (Results 1 – 4 of 4) sorted by relevance
/external/eigen/blas/ |
D | Rank2Update.h | 23 typedef Map<const Matrix<Scalar,Dynamic,1> > OtherMap; in run() typedef 27 …numext::conj(alpha) * numext::conj(u[i]) * OtherMap(v+(UpLo==Lower ? i : 0), UpLo==Lower ? size-i … in run() 28 … + alpha * numext::conj(v[i]) * OtherMap(u+(UpLo==Lower ? i : 0), UpLo==Lower ? size-i : (i+1)); in run() 41 typedef Map<const Matrix<Scalar,Dynamic,1> > OtherMap; in run() typedef 46 …numext::conj(alpha) * numext::conj(u[i]) * OtherMap(v+(UpLo==Lower ? i : 0), UpLo==Lower ? size-i … in run() 47 … + alpha * numext::conj(v[i]) * OtherMap(u+(UpLo==Lower ? i : 0), UpLo==Lower ? size-i : (i+1)); in run()
|
D | GeneralRank1Update.h | 24 typedef Map<const Matrix<Scalar,Dynamic,1> > OtherMap; 25 typedef typename conj_expr_if<ConjLhs,OtherMap>::type ConjRhsType; 29 …Map<Matrix<Scalar,Dynamic,1> >(mat+stride*i,rows) += alpha * cj(v[i]) * ConjRhsType(OtherMap(u,row…
|
D | PackedSelfadjointProduct.h | 27 typedef Map<const Matrix<Scalar,Dynamic,1> > OtherMap; 28 typedef typename conj_expr_if<ConjLhs,OtherMap>::type ConjRhsType; 33 …(mat, UpLo==Lower ? size-i : (i+1)) += alpha * cj(vec[i]) * ConjRhsType(OtherMap(vec+(UpLo==Lower …
|
/external/eigen/Eigen/src/Core/products/ |
D | SelfadjointProduct.h | 28 typedef Map<const Matrix<Scalar,Dynamic,1> > OtherMap; 29 …pedef typename internal::conditional<ConjLhs,typename OtherMap::ConjugateReturnType,const OtherMap… 33 …+= (alpha * cj(vecY[i])) * ConjLhsType(OtherMap(vecX+(UpLo==Lower ? i : 0),UpLo==Lower ? size-i : …
|