/external/llvm/test/Transforms/Util/ |
D | store-first-op.ll | 8 %getU = alloca %foo, align 1 10 ; %getU is a store TO %getU. There are valid reasons to have an llvm.dbg.value here, but if the pass 13 ; CHECK-NOT: @llvm.dbg.value(metadata %foo* %getU 14 call void @llvm.dbg.declare(metadata %foo* %getU, metadata !3, metadata !6), !dbg !7 15 store %foo* %getU, %foo** undef, align 8, !tbaa !8 30 !3 = !DILocalVariable(name: "getU", scope: !4, file: !1, line: 25, type: !5)
|
/external/swiftshader/third_party/LLVM/lib/Support/ |
D | DataExtractor.cpp | 17 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()
|
/external/llvm/lib/Support/ |
D | DataExtractor.cpp | 17 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()
|
D | ScaledNumber.cpp | 26 auto getU = [](uint64_t N) { return N >> 32; }; in multiply64() local 28 uint64_t UL = getU(LHS), LL = getL(LHS), UR = getU(RHS), LR = getL(RHS); in multiply64() 37 Upper += getU(N) + (NewLower < Lower); in multiply64()
|
/external/eigen/Eigen/src/SparseCholesky/ |
D | SimplicialCholesky.h | 283 static inline MatrixU getU(const MatrixType& m) { return MatrixU(m.adjoint()); } 297 static inline MatrixU getU(const MatrixType& m) { return MatrixU(m.adjoint()); } 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);
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/linear/ |
D | LUDecomposition.java | 60 RealMatrix getU(); in getU() method
|
D | SingularValueDecomposition.java | 61 RealMatrix getU(); in getU() method
|
D | FieldLUDecomposition.java | 62 FieldMatrix<T> getU(); in getU() method
|
D | SingularValueDecompositionImpl.java | 157 public RealMatrix getU() throws InvalidMatrixException { in getU() method in SingularValueDecompositionImpl 167 cachedUt = getU().transpose(); in getUT()
|
D | BiDiagonalTransformer.java | 88 public RealMatrix getU() { in getU() method in BiDiagonalTransformer
|
D | LUDecompositionImpl.java | 181 public RealMatrix getU() { in getU() method in LUDecompositionImpl
|
D | FieldLUDecompositionImpl.java | 172 public FieldMatrix<T> getU() { in getU() method in FieldLUDecompositionImpl
|
/external/eigen/Eigen/src/Cholesky/ |
D | LLT.h | 118 return Traits::getU(m_matrix); in matrixU() 395 static inline MatrixU getU(const MatrixType& m) { return MatrixU(m.adjoint()); } 405 static inline MatrixU getU(const MatrixType& m) { return MatrixU(m); }
|
D | LDLT.h | 144 return Traits::getU(m_matrix); in matrixU() 473 static inline MatrixU getU(const MatrixType& m) { return MatrixU(m.adjoint()); } 481 static inline MatrixU getU(const MatrixType& m) { return MatrixU(m); }
|