Searched defs:getU (Results 1 - 13 of 13) sorted by relevance

/external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
H A DFieldLUDecomposition.java62 FieldMatrix<T> getU(); method in interface:FieldLUDecomposition
H A DLUDecomposition.java60 RealMatrix getU(); method in interface:LUDecomposition
H A DSingularValueDecomposition.java61 RealMatrix getU(); method in interface:SingularValueDecomposition
67 * @see #getU()
H A DBiDiagonalTransformer.java88 public RealMatrix getU() { method in class:BiDiagonalTransformer
H A DFieldLUDecompositionImpl.java172 public FieldMatrix<T> getU() { method in class:FieldLUDecompositionImpl
H A DLUDecompositionImpl.java181 public RealMatrix getU() { method in class:LUDecompositionImpl
H A DSingularValueDecompositionImpl.java157 public RealMatrix getU() throws InvalidMatrixException { method in class:SingularValueDecompositionImpl
167 cachedUt = getU().transpose();
/external/llvm/lib/Support/
H A DDataExtractor.cpp17 static T getU(uint32_t *offset_ptr, const DataExtractor *de, function
40 *value_ptr = getU<T>(offset_ptr, de, isLittleEndian, Data);
51 return getU<uint8_t>(offset_ptr, this, IsLittleEndian, Data.data());
62 return getU<uint16_t>(offset_ptr, this, IsLittleEndian, Data.data());
72 return getU<uint32_t>(offset_ptr, this, IsLittleEndian, Data.data());
82 return getU<uint64_t>(offset_ptr, this, IsLittleEndian, Data.data());
H A DScaledNumber.cpp26 auto getU = [](uint64_t N) { return N >> 32; }; local
28 uint64_t UL = getU(LHS), LL = getL(LHS), UR = getU(RHS), LR = getL(RHS);
37 Upper += getU(N) + (NewLower < Lower);
/external/swiftshader/third_party/LLVM/lib/Support/
H A DDataExtractor.cpp17 static T getU(uint32_t *offset_ptr, const DataExtractor *de, function
40 *value_ptr = getU<T>(offset_ptr, de, isLittleEndian, Data);
51 return getU<uint8_t>(offset_ptr, this, IsLittleEndian, Data.data());
62 return getU<uint16_t>(offset_ptr, this, IsLittleEndian, Data.data());
72 return getU<uint32_t>(offset_ptr, this, IsLittleEndian, Data.data());
82 return getU<uint64_t>(offset_ptr, this, IsLittleEndian, Data.data());
/external/eigen/Eigen/src/Cholesky/
H A DLLT.h118 return Traits::getU(m_matrix);
395 static inline MatrixU getU(const MatrixType& m) { return MatrixU(m.adjoint()); } function in struct:Eigen::internal::LLT_Traits
405 static inline MatrixU getU(const MatrixType& m) { return MatrixU(m); } function in struct:Eigen::internal::LLT_Traits
H A DLDLT.h144 return Traits::getU(m_matrix);
473 static inline MatrixU getU(const MatrixType& m) { return MatrixU(m.adjoint()); } function in struct:Eigen::internal::LDLT_Traits
481 static inline MatrixU getU(const MatrixType& m) { return MatrixU(m); } function in struct:Eigen::internal::LDLT_Traits
/external/eigen/Eigen/src/SparseCholesky/
H A DSimplicialCholesky.h283 static inline MatrixU getU(const MatrixType& m) { return MatrixU(m.adjoint()); } function in struct:Eigen::internal::traits
297 static inline MatrixU getU(const MatrixType& m) { return MatrixU(m.adjoint()); } function in struct:Eigen::internal::traits
360 return Traits::getU(Base::m_matrix);
457 return Traits::getU(Base::m_matrix);
616 LDLTTraits::getU(Base::m_matrix).solveInPlace(dest);
618 LLTTraits::getU(Base::m_matrix).solveInPlace(dest);

Completed in 357 milliseconds