Home
last modified time | relevance | path

Searched refs:getU (Results 1 – 12 of 12) sorted by relevance

/external/llvm/lib/Support/
DDataExtractor.cpp17 static T getU(uint32_t *offset_ptr, const DataExtractor *de, in getU() function
40 *value_ptr = getU<T>(offset_ptr, de, isLittleEndian, Data); in getUs()
51 return getU<uint8_t>(offset_ptr, this, IsLittleEndian, Data.data()); in getU8()
62 return getU<uint16_t>(offset_ptr, this, IsLittleEndian, Data.data()); in getU16()
72 return getU<uint32_t>(offset_ptr, this, IsLittleEndian, Data.data()); in getU32()
82 return getU<uint64_t>(offset_ptr, this, IsLittleEndian, Data.data()); in getU64()
DScaledNumber.cpp25 auto getU = [](uint64_t N) { return N >> 32; }; in multiply64() local
27 uint64_t UL = getU(LHS), LL = getL(LHS), UR = getU(RHS), LR = getL(RHS); in multiply64()
36 Upper += getU(N) + (NewLower < Lower); in multiply64()
/external/eigen/Eigen/src/SparseCholesky/
DSimplicialCholesky.h261 static inline MatrixU getU(const MatrixType& m) { return m.adjoint(); }
275 static inline MatrixU getU(const MatrixType& m) { return m.adjoint(); }
336 return Traits::getU(Base::m_matrix);
431 return Traits::getU(Base::m_matrix);
590 LDLTTraits::getU(Base::m_matrix).solveInPlace(dest);
592 LLTTraits::getU(Base::m_matrix).solveInPlace(dest);
/external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
DLUDecomposition.java60 RealMatrix getU(); in getU() method
DSingularValueDecomposition.java61 RealMatrix getU(); in getU() method
DFieldLUDecomposition.java62 FieldMatrix<T> getU(); in getU() method
DSingularValueDecompositionImpl.java157 public RealMatrix getU() throws InvalidMatrixException { in getU() method in SingularValueDecompositionImpl
167 cachedUt = getU().transpose(); in getUT()
DBiDiagonalTransformer.java88 public RealMatrix getU() { in getU() method in BiDiagonalTransformer
DLUDecompositionImpl.java181 public RealMatrix getU() { in getU() method in LUDecompositionImpl
DFieldLUDecompositionImpl.java172 public FieldMatrix<T> getU() { in getU() method in FieldLUDecompositionImpl
/external/eigen/Eigen/src/Cholesky/
DLLT.h100 return Traits::getU(m_matrix); in matrixU()
360 static inline MatrixU getU(const MatrixType& m) { return m.adjoint(); }
370 static inline MatrixU getU(const MatrixType& m) { return m; }
DLDLT.h123 return Traits::getU(m_matrix); in matrixU()
419 static inline MatrixU getU(const MatrixType& m) { return m.adjoint(); }
427 static inline MatrixU getU(const MatrixType& m) { return m; }