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

/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.cpp25 auto getU = [](uint64_t N) { return N >> 32; }; local
27 uint64_t UL = getU(LHS), LL = getL(LHS), UR = getU(RHS), LR = getL(RHS);
36 Upper += getU(N) + (NewLower < Lower);
/external/eigen/Eigen/src/Cholesky/
H A DLDLT.h123 return Traits::getU(m_matrix);
419 static inline MatrixU getU(const MatrixType& m) { return m.adjoint(); } function in struct:Eigen::internal::LDLT_Traits
427 static inline MatrixU getU(const MatrixType& m) { return m; } function in struct:Eigen::internal::LDLT_Traits
H A DLLT.h100 return Traits::getU(m_matrix);
360 static inline MatrixU getU(const MatrixType& m) { return m.adjoint(); } function in struct:Eigen::internal::LLT_Traits
370 static inline MatrixU getU(const MatrixType& m) { return m; } function in struct:Eigen::internal::LLT_Traits
/external/eigen/Eigen/src/SparseCholesky/
H A DSimplicialCholesky.h261 static inline MatrixU getU(const MatrixType& m) { return m.adjoint(); } function in struct:Eigen::internal::traits
275 static inline MatrixU getU(const MatrixType& m) { return m.adjoint(); } function in struct:Eigen::internal::traits
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);

Completed in 1477 milliseconds