Home
last modified time | relevance | path

Searched refs:othersize (Results 1 – 5 of 5) sorted by relevance

/external/eigen/test/
Dproduct_symm.cpp12 template<typename Scalar, int Size, int OtherSize> void symm(int size = Size, int othersize = Other… in symm() argument
29 Rhs1 rhs1 = Rhs1::Random(cols, othersize), rhs12(cols, othersize), rhs13(cols, othersize); in symm()
30 Rhs2 rhs2 = Rhs2::Random(othersize, rows), rhs22(othersize, rows), rhs23(othersize, rows); in symm()
31 Rhs3 rhs3 = Rhs3::Random(cols, othersize), rhs32(cols, othersize), rhs33(cols, othersize); in symm()
Dproduct_mmtr.cpp33 DenseIndex othersize = internal::random<DenseIndex>(1,200); in mmtr() local
39 MatrixColMaj soc(size,othersize); soc.setRandom(); in mmtr()
40 MatrixColMaj osc(othersize,size); osc.setRandom(); in mmtr()
41 MatrixRowMaj sor(size,othersize); sor.setRandom(); in mmtr()
42 MatrixRowMaj osr(othersize,size); osr.setRandom(); in mmtr()
/external/eigen/Eigen/src/Core/
DSolveTriangular.h93 const Index othersize = Side==OnTheLeft? rhs.cols() : rhs.rows();
102 …::run(size, othersize, &actualLhs.coeffRef(0,0), actualLhs.outerStride(), &rhs.coeffRef(0,0), rhs.…
DPlainObjectBase.h366 const Index othersize = other.rows()*other.cols();
370 resize(1, othersize);
375 resize(othersize, 1);
/external/python/cpython2/Objects/
Dbufferobject.c683 Py_ssize_t othersize; in buffer_ass_subscript() local
726 if ((othersize = (*pb->bf_getreadbuffer)(value, 0, &ptr2)) < 0) in buffer_ass_subscript()
729 if (othersize != slicelength) { in buffer_ass_subscript()