Searched refs:Lower (Results 1 - 25 of 163) sorted by relevance

1234567

/external/eigen/doc/snippets/
H A DSelfAdjointView_operatorNorm.cpp3 << ones.selfadjointView<Lower>().operatorNorm() << endl;
H A DSelfAdjointView_eigenvalues.cpp2 VectorXd eivals = ones.selfadjointView<Lower>().eigenvalues();
H A DMatrixBase_selfadjointView.cpp6 << Matrix3i(m.selfadjointView<Lower>()) << endl;
/external/eigen/blas/
H A DRank2Update.h26 Map<Matrix<Scalar,Dynamic,1> >(mat+stride*i+(UpLo==Lower ? i : 0), UpLo==Lower ? size-i : (i+1)) +=
27 numext::conj(alpha) * numext::conj(u[i]) * OtherMap(v+(UpLo==Lower ? i : 0), UpLo==Lower ? size-i : (i+1))
28 + alpha * numext::conj(v[i]) * OtherMap(u+(UpLo==Lower ? i : 0), UpLo==Lower ? size-i : (i+1));
45 Map<Matrix<Scalar,Dynamic,1> >(mat+offset, UpLo==Lower ? size-i : (i+1)) +=
46 numext::conj(alpha) * numext::conj(u[i]) * OtherMap(v+(UpLo==Lower ? i : 0), UpLo==Lower ? size-i : (i+1))
47 + alpha * numext::conj(v[i]) * OtherMap(u+(UpLo==Lower
[all...]
H A DPackedSelfadjointProduct.h33 Map<Matrix<Scalar,Dynamic,1> >(mat, UpLo==Lower ? size-i : (i+1)) += alpha * cj(vec[i]) * ConjRhsType(OtherMap(vec+(UpLo==Lower ? i : 0), UpLo==Lower ? size-i : (i+1)));
35 mat[UpLo==Lower ? 0 : i] = numext::real(mat[UpLo==Lower ? 0 : i]);
36 mat += UpLo==Lower ? size-i : (i+1);
47 selfadjoint_packed_rank1_update<Scalar,Index,ColMajor,UpLo==Lower?Upper:Lower,ConjRhs,ConjLhs>::run(size,mat,vec,alpha);
/external/swiftshader/third_party/LLVM/lib/Support/
H A DConstantRange.cpp34 Lower = Upper = APInt::getMaxValue(BitWidth);
36 Lower = Upper = APInt::getMinValue(BitWidth);
41 ConstantRange::ConstantRange(const APInt &V) : Lower(V), Upper(V + 1) {}
44 Lower(L), Upper(U) {
48 "Lower == Upper, but they aren't min or max value!");
119 return Lower == Upper && Lower.isMaxValue();
125 return Lower == Upper && Lower.isMinValue();
132 return Lower
[all...]
/external/eigen/test/
H A Dconjugate_gradient.cpp16 ConjugateGradient<SparseMatrixType, Lower > cg_colmajor_lower_diag;
18 ConjugateGradient<SparseMatrixType, Lower|Upper> cg_colmajor_loup_diag;
19 ConjugateGradient<SparseMatrixType, Lower, IdentityPreconditioner> cg_colmajor_lower_I;
H A Dsimplicial_cholesky.cpp15 SimplicialCholesky<SparseMatrixType, Lower> chol_colmajor_lower_amd;
17 SimplicialLLT< SparseMatrixType, Lower> llt_colmajor_lower_amd;
19 SimplicialLDLT< SparseMatrixType, Lower> ldlt_colmajor_lower_amd;
21 SimplicialLDLT< SparseMatrixType, Lower, NaturalOrdering<I> > ldlt_colmajor_lower_nat;
H A Dcholmod_support.cpp17 CholmodDecomposition<SparseMatrix<T>, Lower> g_chol_colmajor_lower; g_chol_colmajor_lower.setMode(CholmodSupernodalLLt);
19 CholmodDecomposition<SparseMatrix<T>, Lower> g_llt_colmajor_lower; g_llt_colmajor_lower.setMode(CholmodSimplicialLLt);
21 CholmodDecomposition<SparseMatrix<T>, Lower> g_ldlt_colmajor_lower; g_ldlt_colmajor_lower.setMode(CholmodLDLt);
24 CholmodSupernodalLLT<SparseMatrix<T>, Lower> chol_colmajor_lower;
26 CholmodSimplicialLLT<SparseMatrix<T>, Lower> llt_colmajor_lower;
28 CholmodSimplicialLDLT<SparseMatrix<T>, Lower> ldlt_colmajor_lower;
H A Dincomplete_cholesky.cpp18 ConjugateGradient<SparseMatrixType, Lower, IncompleteCholesky<T, Lower, AMDOrdering<I> > > cg_illt_lower_amd;
19 ConjugateGradient<SparseMatrixType, Lower, IncompleteCholesky<T, Lower, NaturalOrdering<I> > > cg_illt_lower_nat;
22 ConjugateGradient<SparseMatrixType, Upper|Lower, IncompleteCholesky<T, Lower, AMDOrdering<I> > > cg_illt_uplo_amd;
59 Eigen::Lower | Eigen::Upper,
H A Dselfadjoint.cpp35 m3 = m1.template selfadjointView<Lower>();
36 VERIFY_IS_APPROX(MatrixType(m3.template triangularView<Lower>()), MatrixType(m1.template triangularView<Lower>()));
44 m3 = m1.template selfadjointView<Lower>();
46 m4 -= m1.template selfadjointView<Lower>();
52 Matrix3d m = Matrix3d::Random().selfadjointView<Lower>();
H A Dpardiso_support.cpp10 PardisoLLT < SparseMatrix<T, RowMajor>, Lower> pardiso_llt_lower;
12 PardisoLDLT < SparseMatrix<T, RowMajor>, Lower> pardiso_ldlt_lower;
H A Dproduct_mmtr.cpp41 CHECK_MMTR(matc, Lower, = s*soc*sor.adjoint());
43 CHECK_MMTR(matr, Lower, = s*soc*soc.adjoint());
46 CHECK_MMTR(matc, Lower, += s*soc*soc.adjoint());
48 CHECK_MMTR(matr, Lower, += s*sor*soc.adjoint());
51 CHECK_MMTR(matc, Lower, -= s*soc*soc.adjoint());
53 CHECK_MMTR(matr, Lower, -= s*soc*soc.adjoint());
56 CHECK_MMTR(matc, Lower, -= s*sqr*sqc.template triangularView<Upper>());
58 CHECK_MMTR(matc, Lower, += s*sqr*sqc.template triangularView<Lower>());
59 CHECK_MMTR(matc, Upper, = s*sqc*sqc.template triangularView<Lower>());
[all...]
H A Dproduct_symm.cpp36 m2 = m1.template triangularView<Lower>();
37 m3 = m2.template selfadjointView<Lower>();
39 VERIFY_IS_APPROX(rhs12 = (s1*m2).template selfadjointView<Lower>() * (s2*rhs1),
45 VERIFY_IS_APPROX(rhs12 = (s1*m2).template selfadjointView<Lower>().transpose() * (s2*rhs1),
48 VERIFY_IS_APPROX(rhs12 = (s1*m2).conjugate().template selfadjointView<Lower>() * (s2*rhs1),
51 VERIFY_IS_APPROX(rhs12 = (s1*m2).template selfadjointView<Lower>().conjugate() * (s2*rhs1),
57 VERIFY_IS_APPROX(rhs12 = (s1*m2).template selfadjointView<Lower>().adjoint() * (s2*rhs1),
66 m2 = m1.template triangularView<Lower>();
67 VERIFY_IS_APPROX(rhs12 = (s1*m2).template selfadjointView<Lower>() * (s2*rhs2.adjoint()),
75 VERIFY_IS_APPROX(rhs12 = (s1*m2.adjoint()).template selfadjointView<Lower>() * (s
[all...]
H A Dproduct_syrk.cpp38 VERIFY_IS_APPROX((m2.template selfadjointView<Lower>().rankUpdate(rhs2,s1)._expression()),
39 ((s1 * rhs2 * rhs2.adjoint()).eval().template triangularView<Lower>().toDenseMatrix()));
41 VERIFY_IS_APPROX(((m2.template triangularView<Lower>() += s1 * rhs2 * rhs22.adjoint()).nestedExpression()),
42 ((s1 * rhs2 * rhs22.adjoint()).eval().template triangularView<Lower>().toDenseMatrix()));
54 VERIFY_IS_APPROX(m2.template selfadjointView<Lower>().rankUpdate(rhs1.adjoint(),s1)._expression(),
55 (s1 * rhs1.adjoint() * rhs1).eval().template triangularView<Lower>().toDenseMatrix());
57 VERIFY_IS_APPROX((m2.template triangularView<Lower>() += s1 * rhs11.adjoint() * rhs1).nestedExpression(),
58 (s1 * rhs11.adjoint() * rhs1).eval().template triangularView<Lower>().toDenseMatrix());
69 VERIFY_IS_APPROX(m2.template selfadjointView<Lower>().rankUpdate(rhs3.adjoint(),s1)._expression(),
70 (s1 * rhs3.adjoint() * rhs3).eval().template triangularView<Lower>()
[all...]
H A Dsparse_permutations.cpp65 lo = mat.template triangularView<Lower>();
68 lo_sym_d = mat_d.template selfadjointView<Lower>();
72 VERIFY_IS_APPROX(lo, DenseMatrix(mat_d.template triangularView<Lower>()));
115 VERIFY( is_sorted( res = mat.template selfadjointView<Lower>().twistedBy(p_null) ));
124 VERIFY( is_sorted( res = lo.template selfadjointView<Lower>().twistedBy(p_null) ));
133 VERIFY( is_sorted( res = mat.template selfadjointView<Lower>() ));
141 VERIFY( is_sorted( res = lo.template selfadjointView<Lower>() ));
150 res.template selfadjointView<Lower>() = mat.template selfadjointView<Upper>();
151 res_d = up_sym_d.template triangularView<Lower>();
154 res.template selfadjointView<Upper>() = mat.template selfadjointView<Lower>();
[all...]
/external/libchrome/sandbox/linux/services/
H A Dresource_limits.h19 // Lower the soft and hard limit of |resource| to |limit|. If the current
21 static bool Lower(int resource, rlim_t limit) WARN_UNUSED_RESULT;
/external/swiftshader/third_party/LLVM/include/llvm/Support/
H A DConstantRange.h43 APInt Lower, Upper; member in class:llvm::ConstantRange
55 /// Lower==Upper and Lower != Min or Max value for its type. It will also
57 ConstantRange(const APInt &Lower, const APInt &Upper);
71 const APInt &getLower() const { return Lower; }
79 uint32_t getBitWidth() const { return Lower.getBitWidth(); }
112 if (Upper == Lower + 1)
113 return &Lower;
148 return Lower == CR.Lower
[all...]
/external/llvm/include/llvm/Support/
H A DUnicodeCharRanges.h26 /// \brief Represents a closed range of Unicode code points [Lower, Upper].
28 uint32_t Lower; member in struct:llvm::sys::UnicodeCharRange
33 return Value < Range.Lower;
79 if (I != Ranges.begin() && Prev >= I->Lower) {
83 DEBUG(dbgs().write_hex(I->Lower) << "\n");
86 if (I->Upper < I->Lower) {
88 DEBUG(dbgs().write_hex(I->Lower));
/external/llvm/lib/IR/
H A DConstantRange.cpp36 Lower = Upper = APInt::getMaxValue(BitWidth);
38 Lower = Upper = APInt::getMinValue(BitWidth);
44 : Lower(std::move(V)), Upper(Lower + 1) {}
47 : Lower(std::move(L)), Upper(std::move(U)) {
48 assert(Lower.getBitWidth() == Upper.getBitWidth() &&
50 assert((Lower != Upper || (Lower.isMaxValue() || Lower.isMinValue())) &&
51 "Lower
[all...]
/external/clang/unittests/Basic/
H A DVirtualFileSystemTest.cpp236 IntrusiveRefCntPtr<DummyFileSystem> Lower(new DummyFileSystem());
239 new vfs::OverlayFileSystem(Lower));
242 Lower->addDirectory("/lower-only");
246 ErrorOr<vfs::Status> Status1 = Lower->status("/lower-only");
261 IntrusiveRefCntPtr<DummyFileSystem> Lower(new DummyFileSystem());
264 new vfs::OverlayFileSystem(Lower));
268 Lower->addDirectory("/both", sys::fs::owner_read);
275 Lower->addRegularFile("/both/foo", sys::fs::owner_read);
395 IntrusiveRefCntPtr<DummyFileSystem> Lower(new DummyFileSystem());
398 new vfs::OverlayFileSystem(Lower));
[all...]
/external/eigen/unsupported/test/
H A Dminres.cpp18 MINRES<SparseMatrix<T>, Lower, IdentityPreconditioner > minres_colmajor_lower_I;
22 MINRES<SparseMatrix<T>, Lower, DiagonalPreconditioner<T> > minres_colmajor_lower_diag;
24 MINRES<SparseMatrix<T>, Lower|Upper, DiagonalPreconditioner<T> > minres_colmajor_uplo_diag;
/external/llvm/include/llvm/IR/
H A DConstantRange.h44 APInt Lower, Upper; member in class:llvm::ConstantRange
59 /// Lower==Upper and Lower != Min or Max value for its type. It will also
61 ConstantRange(APIntMoveTy Lower, APIntMoveTy Upper);
124 const APInt &getLower() const { return Lower; }
132 uint32_t getBitWidth() const { return Lower.getBitWidth(); }
164 if (Upper == Lower + 1)
165 return &Lower;
196 return Lower == CR.Lower
[all...]
/external/icu/icu4c/source/test/testdata/break_rules/
H A Dsentence.txt17 Lower = [\p{Sentence_Break = Lower}];
42 SB7: (Upper | Lower) ExtFmt* ATerm ExtFmt* Upper;
43 SB8: ATerm ExtFmt* (Close ExtFmt*)* (Sp ExtFmt*)* ([^OLetter Upper Lower ParaSep SATerm ExtFmt] ExtFmt *)* Lower;
/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DCaseMap.java43 public static Lower toLower() { return Lower.DEFAULT; }
75 public static final class Lower extends CaseMap { class in class:CaseMap
76 private static final Lower DEFAULT = new Lower(0);
77 private static final Lower OMIT_UNCHANGED = new Lower(CaseMapImpl.OMIT_UNCHANGED_TEXT);
78 private Lower(int opt) { super(opt); } method in class:CaseMap.Lower
85 public Lower omitUnchangedText() {

Completed in 2264 milliseconds

1234567