/external/eigen/doc/snippets/ |
MatrixBase_replicate.cpp | 3 cout << "m.replicate<3,2>() = ..." << endl; 4 cout << m.replicate<3,2>() << endl;
|
MatrixBase_replicate_int_int.cpp | 3 cout << "v.replicate(2,5) = ..." << endl; 4 cout << v.replicate(2,5) << endl;
|
DirectionWise_replicate.cpp | 3 cout << "m.colwise().replicate<3>() = ..." << endl; 4 cout << m.colwise().replicate<3>() << endl;
|
DirectionWise_replicate_int.cpp | 3 cout << "v.rowwise().replicate(5) = ..." << endl; 4 cout << v.rowwise().replicate(5) << endl;
|
/external/eigen/test/ |
array_replicate.cpp | 12 template<typename MatrixType> void replicate(const MatrixType& m) function 15 Replicate.cpp 42 VERIFY_IS_APPROX(x1, m1.replicate(f1,f2)); 47 VERIFY_IS_APPROX(x2, (m2.template replicate<2,3>())); 52 VERIFY_IS_APPROX(x2, v1.rowwise().replicate(f1)); 57 VERIFY_IS_APPROX(vx1, v1.colwise().replicate(f2)); 63 CALL_SUBTEST_1( replicate(Matrix<float, 1, 1>()) ); 64 CALL_SUBTEST_2( replicate(Vector2f()) ); 65 CALL_SUBTEST_3( replicate(Vector3d()) ); 66 CALL_SUBTEST_4( replicate(Vector4f()) ) [all...] |
/external/eigen/Eigen/src/Core/ |
Replicate.h | 16 * \class Replicate 24 * It is the return type of DenseBase::replicate() and most of the time 27 * \sa DenseBase::replicate() 32 struct traits<Replicate<MatrixType,RowFactor,ColFactor> > 62 template<typename MatrixType,int RowFactor,int ColFactor> class Replicate 63 : public internal::dense_xpr_base< Replicate<MatrixType,RowFactor,ColFactor> >::type 65 typedef typename internal::traits<Replicate>::MatrixTypeNested MatrixTypeNested; 66 typedef typename internal::traits<Replicate>::_MatrixTypeNested _MatrixTypeNested; 69 typedef typename internal::dense_xpr_base<Replicate>::type Base; 70 EIGEN_DENSE_PUBLIC_INTERFACE(Replicate) 139 DenseBase<Derived>::replicate() const function in class:Eigen::DenseBase 154 DenseBase<Derived>::replicate(Index rowFactor,Index colFactor) const function in class:Eigen::DenseBase 169 VectorwiseOp<ExpressionType,Direction>::replicate(Index factor) const function in class:Eigen::VectorwiseOp [all...] |
DenseBase.h | 477 const Replicate<Derived,RowFactor,ColFactor> replicate() const; 478 const Replicate<Derived,Dynamic,Dynamic> replicate(Index rowFacor,Index colFactor) const;
|
VectorwiseOp.h | 216 typedef Replicate<OtherDerived, 385 typedef Replicate<ExpressionType,Direction==Vertical?Dynamic:1,Direction==Horizontal?Dynamic:1> ReplicateReturnType; 386 const ReplicateReturnType replicate(Index factor) const; 394 * \sa VectorwiseOp::replicate(Index), DenseBase::replicate(), class Replicate 397 template<int Factor> const Replicate<ExpressionType,(IsVertical?Factor:1),(IsHorizontal?Factor:1)> 398 replicate(Index factor = Factor) const function in class:Eigen::VectorwiseOp 400 return Replicate<ExpressionType,Direction==Vertical?Factor:1,Direction==Horizontal?Factor:1> 535 const Replicate<HNormalized_Factors [all...] |
/external/libvpx/libvpx/vp8/common/x86/ |
mfqe_sse2.asm | 34 pshuflw xmm0, xmm0, 0x0 ; replicate to all low words 35 punpcklqdq xmm0, xmm0 ; replicate to all hi words 111 pshuflw xmm0, xmm0, 0x0 ; replicate to all low words 112 punpcklqdq xmm0, xmm0 ; replicate to all hi words
|
/external/sonivox/jet_tools/JetCreator/ |
JetCreator.py | 425 for replicate in dlg.lstReplicate:
426 self.jet_file.AddSegment(replicate[0], dlg.GetValue(JetDefs.F_MIDIFILE),
427 mbtFct(replicate[1],-1), mbtFct(replicate[2],-1),
502 for replicate in dlg.lstReplicate:
503 self.jet_file.AddSegment(replicate[0], dlg.GetValue(JetDefs.F_MIDIFILE),
504 mbtFct(replicate[1],-1), mbtFct(replicate[2],-1),
660 for replicate in dlg.lstReplicate:
661 self.jet_file.AddEvent(self.currentSegmentName, replicate[0], [all...] |
/external/eigen/Eigen/src/Geometry/ |
Homogeneous.h | 181 Replicate<HNormalized_Factors, 257 .template replicate<MatrixType::ColsAtCompileTime>(m_rhs.cols()); 296 .template replicate<MatrixType::RowsAtCompileTime>(m_lhs.rows());
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
org.eclipse.test.performance_3.6.0.v20091014.jar | |