/external/llvm/lib/ExecutionEngine/Interpreter/ |
D | Execution.cpp | 52 Dest.TY##Val = Src1.TY##Val OP Src2.TY##Val; \ 55 static void executeFAddInst(GenericValue &Dest, GenericValue Src1, in executeFAddInst() argument 66 static void executeFSubInst(GenericValue &Dest, GenericValue Src1, in executeFSubInst() argument 77 static void executeFMulInst(GenericValue &Dest, GenericValue Src1, in executeFMulInst() argument 88 static void executeFDivInst(GenericValue &Dest, GenericValue Src1, in executeFDivInst() argument 99 static void executeFRemInst(GenericValue &Dest, GenericValue Src1, in executeFRemInst() argument 103 Dest.FloatVal = fmod(Src1.FloatVal, Src2.FloatVal); in executeFRemInst() 106 Dest.DoubleVal = fmod(Src1.DoubleVal, Src2.DoubleVal); in executeFRemInst() 116 Dest.IntVal = APInt(1,Src1.IntVal.OP(Src2.IntVal)); \ 122 Dest.AggregateVal.resize( Src1.AggregateVal.size() ); \ [all …]
|
/external/swiftshader/third_party/LLVM/lib/ExecutionEngine/Interpreter/ |
D | Execution.cpp | 50 Dest.TY##Val = Src1.TY##Val OP Src2.TY##Val; \ 53 static void executeFAddInst(GenericValue &Dest, GenericValue Src1, in executeFAddInst() argument 64 static void executeFSubInst(GenericValue &Dest, GenericValue Src1, in executeFSubInst() argument 75 static void executeFMulInst(GenericValue &Dest, GenericValue Src1, in executeFMulInst() argument 86 static void executeFDivInst(GenericValue &Dest, GenericValue Src1, in executeFDivInst() argument 97 static void executeFRemInst(GenericValue &Dest, GenericValue Src1, in executeFRemInst() argument 101 Dest.FloatVal = fmod(Src1.FloatVal, Src2.FloatVal); in executeFRemInst() 104 Dest.DoubleVal = fmod(Src1.DoubleVal, Src2.DoubleVal); in executeFRemInst() 114 Dest.IntVal = APInt(1,Src1.IntVal.OP(Src2.IntVal)); \ 123 Dest.IntVal = APInt(1,(void*)(intptr_t)Src1.PointerVal OP \ [all …]
|
/external/libvpx/libvpx/vp8/common/ |
D | common.h | 26 #define vp8_copy(Dest, Src) \ argument 28 assert(sizeof(Dest) == sizeof(Src)); \ 29 memcpy(Dest, Src, sizeof(Src)); \ 34 #define vp8_copy_array(Dest, Src, N) \ argument 36 assert(sizeof(*Dest) == sizeof(*Src)); \ 37 memcpy(Dest, Src, N * sizeof(*Src)); \ 40 #define vp8_zero(Dest) memset(&Dest, 0, sizeof(Dest)); argument 42 #define vp8_zero_array(Dest, N) memset(Dest, 0, N * sizeof(*Dest)); argument
|
/external/eigen/Eigen/src/Core/ |
D | EigenBase.h | 68 template<typename Dest> 70 inline void evalTo(Dest& dst) const in evalTo() 74 template<typename Dest> 76 inline void addTo(Dest& dst) const in addTo() 80 typename Dest::PlainObject res(rows(),cols()); in addTo() 86 template<typename Dest> 88 inline void subTo(Dest& dst) const in subTo() 92 typename Dest::PlainObject res(rows(),cols()); in subTo() 98 template<typename Dest> 99 EIGEN_DEVICE_FUNC inline void applyThisOnTheRight(Dest& dst) const in applyThisOnTheRight() [all …]
|
D | GeneralProduct.h | 186 template<typename Lhs, typename Rhs, typename Dest> 187 static void run(const Lhs &lhs, const Rhs &rhs, Dest& dest, const typename Dest::Scalar& alpha) 189 Transpose<Dest> destT(dest); 198 template<typename Lhs, typename Rhs, typename Dest> 199 …static inline void run(const Lhs &lhs, const Rhs &rhs, Dest& dest, const typename Dest::Scalar& al… 203 typedef typename Dest::Scalar ResScalar; 204 typedef typename Dest::RealScalar RealScalar; 220 …typedef typename conditional<Dest::IsVectorAtCompileTime, Dest, typename Dest::ColXpr>::type Actua… 292 template<typename Lhs, typename Rhs, typename Dest> 293 static void run(const Lhs &lhs, const Rhs &rhs, Dest& dest, const typename Dest::Scalar& alpha) [all …]
|
/external/llvm/lib/CodeGen/MIRParser/ |
D | MIParser.cpp | 127 bool parseRegisterOperand(MachineOperand &Dest, 129 bool parseImmediateOperand(MachineOperand &Dest); 137 bool parseTypedImmediateOperand(MachineOperand &Dest); 138 bool parseFPImmediateOperand(MachineOperand &Dest); 140 bool parseMBBOperand(MachineOperand &Dest); 142 bool parseStackObjectOperand(MachineOperand &Dest); 144 bool parseFixedStackObjectOperand(MachineOperand &Dest); 146 bool parseGlobalAddressOperand(MachineOperand &Dest); 147 bool parseConstantPoolIndexOperand(MachineOperand &Dest); 148 bool parseSubRegisterIndexOperand(MachineOperand &Dest); [all …]
|
/external/libchrome/base/ |
D | bit_cast.h | 62 template <class Dest, class Source> 63 inline Dest bit_cast(const Source& source) { in bit_cast() 64 static_assert(sizeof(Dest) == sizeof(Source), in bit_cast() 73 static_assert(std::is_trivially_copyable<Dest>::value, in bit_cast() 79 static_assert(__is_trivially_copyable(Dest), in bit_cast() 87 static_assert(__has_trivial_copy(Dest), in bit_cast() 95 Dest dest; in bit_cast()
|
/external/eigen/Eigen/src/SparseCore/ |
D | SparseSolverBase.h | 21 template<typename Decomposition, typename Rhs, typename Dest> 22 typename enable_if<Rhs::ColsAtCompileTime!=1 && Dest::ColsAtCompileTime!=1>::type 23 solve_sparse_through_dense_panels(const Decomposition &dec, const Rhs& rhs, Dest &dest) in solve_sparse_through_dense_panels() 25 EIGEN_STATIC_ASSERT((Dest::Flags&RowMajorBit)==0,THIS_METHOD_IS_ONLY_FOR_COLUMN_MAJOR_MATRICES); in solve_sparse_through_dense_panels() 26 typedef typename Dest::Scalar DestScalar; in solve_sparse_through_dense_panels() 45 template<typename Decomposition, typename Rhs, typename Dest> 46 typename enable_if<Rhs::ColsAtCompileTime==1 || Dest::ColsAtCompileTime==1>::type 47 solve_sparse_through_dense_panels(const Decomposition &dec, const Rhs& rhs, Dest &dest) in solve_sparse_through_dense_panels() 49 typedef typename Dest::Scalar DestScalar; in solve_sparse_through_dense_panels() 110 template<typename Rhs,typename Dest> [all …]
|
D | SparseProduct.h | 40 template<typename Dest> 41 static void evalTo(Dest& dst, const Lhs& lhs, const Rhs& rhs) 43 evalTo(dst, lhs, rhs, typename evaluator_traits<Dest>::Shape()); 47 template<typename Dest,typename ActualLhs> 48 …static void addTo(Dest& dst, const ActualLhs& lhs, const Rhs& rhs, typename enable_if<is_same<type… 55 … typename remove_all<RhsNested>::type, Dest>::run(lhsNested,rhsNested,dst); 59 template<typename Dest> 60 …static void subTo(Dest& dst, const Lhs& lhs, const Rhs& rhs, typename enable_if<is_same<typename e… 68 template<typename Dest> 69 static void evalTo(Dest& dst, const Lhs& lhs, const Rhs& rhs, SparseShape) [all …]
|
/external/llvm/lib/DebugInfo/CodeView/ |
D | StreamReader.cpp | 34 Error StreamReader::readInteger(uint16_t &Dest) { in readInteger() argument 38 Dest = *P; in readInteger() 42 Error StreamReader::readInteger(uint32_t &Dest) { in readInteger() argument 46 Dest = *P; in readInteger() 50 Error StreamReader::readZeroString(StringRef &Dest) { in readZeroString() argument 68 Dest = StringRef(reinterpret_cast<const char *>(Data.begin()), Data.size()); in readZeroString() 75 Error StreamReader::readFixedString(StringRef &Dest, uint32_t Length) { in readFixedString() argument 79 Dest = StringRef(reinterpret_cast<const char *>(Bytes.begin()), Bytes.size()); in readFixedString()
|
/external/eigen/Eigen/src/IterativeLinearSolvers/ |
D | LeastSquareConjugateGradient.h | 26 template<typename MatrixType, typename Rhs, typename Dest, typename Preconditioner> 28 void least_square_conjugate_gradient(const MatrixType& mat, const Rhs& rhs, Dest& x, in least_square_conjugate_gradient() 30 typename Dest::RealScalar& tol_error) in least_square_conjugate_gradient() 34 typedef typename Dest::RealScalar RealScalar; in least_square_conjugate_gradient() 35 typedef typename Dest::Scalar Scalar; in least_square_conjugate_gradient() 184 template<typename Rhs,typename Dest> 185 void _solve_with_guess_impl(const Rhs& b, Dest& x) const 195 typename Dest::ColXpr xj(x,j); 205 template<typename Rhs,typename Dest> 206 void _solve_impl(const MatrixBase<Rhs>& b, Dest& x) const
|
D | BiCGSTAB.h | 28 template<typename MatrixType, typename Rhs, typename Dest, typename Preconditioner> 29 bool bicgstab(const MatrixType& mat, const Rhs& rhs, Dest& x, in bicgstab() 31 typename Dest::RealScalar& tol_error) in bicgstab() 35 typedef typename Dest::RealScalar RealScalar; in bicgstab() 36 typedef typename Dest::Scalar Scalar; in bicgstab() 193 template<typename Rhs,typename Dest> 194 void _solve_with_guess_impl(const Rhs& b, Dest& x) const 202 typename Dest::ColXpr xj(x,j); 214 template<typename Rhs,typename Dest> 215 void _solve_impl(const MatrixBase<Rhs>& b, Dest& x) const
|
D | ConjugateGradient.h | 26 template<typename MatrixType, typename Rhs, typename Dest, typename Preconditioner> 28 void conjugate_gradient(const MatrixType& mat, const Rhs& rhs, Dest& x, in conjugate_gradient() 30 typename Dest::RealScalar& tol_error) in conjugate_gradient() 34 typedef typename Dest::RealScalar RealScalar; in conjugate_gradient() 35 typedef typename Dest::Scalar Scalar; in conjugate_gradient() 196 template<typename Rhs,typename Dest> 197 void _solve_with_guess_impl(const Rhs& b, Dest& x) const 221 typename Dest::ColXpr xj(x,j); 232 template<typename Rhs,typename Dest> 233 void _solve_impl(const MatrixBase<Rhs>& b, Dest& x) const
|
/external/clang/lib/CodeGen/ |
D | CGExprAgg.cpp | 36 AggValueSlot Dest; member in __anonbf77ee580111::AggExprEmitter 45 return !(Dest.requiresGCollection() || Dest.isPotentiallyAliased()); in shouldUseDestForReturnSlot() 52 return ReturnValueSlot(Dest.getAddress(), Dest.isVolatile(), in getReturnValueSlot() 57 if (!Dest.isIgnored()) return Dest; in EnsureSlot() 61 if (!Dest.isIgnored()) return; in EnsureDest() 62 Dest = CGF.CreateAggTemp(T, "agg.tmp.ensured"); in EnsureDest() 66 AggExprEmitter(CodeGenFunction &cgf, AggValueSlot Dest, bool IsResultUnused) in AggExprEmitter() argument 67 : CGF(cgf), Builder(CGF.Builder), Dest(Dest), in AggExprEmitter() 221 CGF.EmitAtomicLoad(LV, E->getExprLoc(), Dest); in EmitAggLoadOfLValue() 264 assert(Dest.getPointer() != src.getAggregatePointer()); in EmitMoveFromReturnSlot() [all …]
|
/external/llvm/include/llvm/DebugInfo/CodeView/ |
D | StreamReader.h | 33 Error readInteger(uint16_t &Dest); 34 Error readInteger(uint32_t &Dest); 35 Error readZeroString(StringRef &Dest); 36 Error readFixedString(StringRef &Dest, uint32_t Length); 40 template <typename T> Error readEnum(T &Dest) { in readEnum() argument 44 Dest = static_cast<T>(N); in readEnum() 48 template <typename T> Error readObject(const T *&Dest) { in readObject() argument 52 Dest = reinterpret_cast<const T *>(Buffer.data()); in readObject()
|
/external/syslinux/gnu-efi/gnu-efi-3.0/lib/runtime/ |
D | rtstr.c | 49 IN CHAR16 *Dest, in RtStrCpy() argument 55 *(Dest++) = *(Src++); in RtStrCpy() 57 *Dest = 0; in RtStrCpy() 66 IN CHAR16 *Dest, in RtStrCat() argument 70 RtStrCpy(Dest+StrLen(Dest), Src); in RtStrCat()
|
/external/pdfium/third_party/lcms2-2.6/src/ |
D | cmsplugin.c | 226 void NormalizeXYZ(cmsCIEXYZ* Dest) in NormalizeXYZ() argument 228 while (Dest -> X > 2. && in NormalizeXYZ() 229 Dest -> Y > 2. && in NormalizeXYZ() 230 Dest -> Z > 2.) { in NormalizeXYZ() 232 Dest -> X /= 10.; in NormalizeXYZ() 233 Dest -> Y /= 10.; in NormalizeXYZ() 234 Dest -> Z /= 10.; in NormalizeXYZ() 405 void CMSEXPORT _cmsDecodeDateTimeNumber(const cmsDateTimeNumber *Source, struct tm *Dest) in _cmsDecodeDateTimeNumber() argument 408 _cmsAssert(Dest != NULL); in _cmsDecodeDateTimeNumber() 411 Dest->tm_sec = _cmsAdjustEndianess16(Source->seconds); in _cmsDecodeDateTimeNumber() [all …]
|
/external/eigen/Eigen/src/Core/products/ |
D | TriangularMatrixVector.h | 176 …template<typename Dest> static void run(Dest& dst, const Lhs &lhs, const Rhs &rhs, const typename … 187 …template<typename Dest> static void run(Dest& dst, const Lhs &lhs, const Rhs &rhs, const typename … 191 Transpose<Dest> dstT(dst); 206 template<typename Lhs, typename Rhs, typename Dest> 207 static void run(const Lhs &lhs, const Rhs &rhs, Dest& dest, const typename Dest::Scalar& alpha) 211 typedef typename Dest::Scalar ResScalar; 212 typedef typename Dest::RealScalar RealScalar; 230 EvalToDestAtCompileTime = Dest::InnerStrideAtCompileTime==1, 232 MightCannotUseDest = (Dest::InnerStrideAtCompileTime!=1) || ComplexByReal 235 …gemv_static_vector_if<ResScalar,Dest::SizeAtCompileTime,Dest::MaxSizeAtCompileTime,MightCannotUseD… [all …]
|
/external/llvm/lib/Linker/ |
D | LinkModules.cpp | 58 bool shouldLinkFromSource(bool &LinkFromSrc, const GlobalValue &Dest, 258 const GlobalValue &Dest, in shouldLinkFromSource() argument 282 bool DestIsDeclaration = Dest.isDeclarationForLinker(); in shouldLinkFromSource() 293 if (Dest.hasExternalWeakLinkage()) { in shouldLinkFromSource() 298 LinkFromSrc = !Src.isDeclaration() && Dest.isDeclaration(); in shouldLinkFromSource() 309 if (Dest.hasLinkOnceLinkage() || Dest.hasWeakLinkage()) { in shouldLinkFromSource() 314 if (!Dest.hasCommonLinkage()) { in shouldLinkFromSource() 319 const DataLayout &DL = Dest.getParent()->getDataLayout(); in shouldLinkFromSource() 320 uint64_t DestSize = DL.getTypeAllocSize(Dest.getValueType()); in shouldLinkFromSource() 327 assert(!Dest.hasExternalWeakLinkage()); in shouldLinkFromSource() [all …]
|
/external/eigen/unsupported/Eigen/src/IterativeSolvers/ |
D | MINRES.h | 29 template<typename MatrixType, typename Rhs, typename Dest, typename Preconditioner> 31 void minres(const MatrixType& mat, const Rhs& rhs, Dest& x, in minres() 33 typename Dest::RealScalar& tol_error) in minres() 36 typedef typename Dest::RealScalar RealScalar; in minres() 37 typedef typename Dest::Scalar Scalar; in minres() 239 template<typename Rhs,typename Dest> 240 void _solve_with_guess_impl(const Rhs& b, Dest& x) const 265 typename Dest::ColXpr xj(x,j); 275 template<typename Rhs,typename Dest> 276 void _solve_impl(const Rhs& b, MatrixBase<Dest> &x) const
|
/external/libtextclassifier/util/base/ |
D | casts.h | 83 template <class Dest, class Source> 84 inline Dest bit_cast(const Source &source) { in bit_cast() 85 static_assert(sizeof(Dest) == sizeof(Source), "Sizes do not match"); in bit_cast() 87 Dest dest; in bit_cast()
|
/external/syslinux/gnu-efi/gnu-efi-3.0/lib/ |
D | str.c | 108 IN CHAR16 *Dest, in StrCpy() argument 113 RtStrCpy (Dest, Src); in StrCpy() 118 IN CHAR16 *Dest, in StrCat() argument 122 RtStrCat(Dest, Src); in StrCat() 149 CHAR16 *Dest; in StrDuplicate() local 153 Dest = AllocatePool (Size); in StrDuplicate() 154 if (Dest) { in StrDuplicate() 155 CopyMem (Dest, Src, Size); in StrDuplicate() 157 return Dest; in StrDuplicate()
|
/external/llvm/lib/Target/PowerPC/ |
D | PPCBranchSelector.cpp | 146 MachineBasicBlock *Dest = nullptr; in runOnMachineFunction() local 148 Dest = I->getOperand(2).getMBB(); in runOnMachineFunction() 151 Dest = I->getOperand(1).getMBB(); in runOnMachineFunction() 155 Dest = I->getOperand(0).getMBB(); in runOnMachineFunction() 157 if (!Dest) { in runOnMachineFunction() 165 if (Dest->getNumber() <= MBB.getNumber()) { in runOnMachineFunction() 171 for (unsigned i = Dest->getNumber(), e = MBB.getNumber(); i != e; ++i) in runOnMachineFunction() 178 for (unsigned i = MBB.getNumber(), e = Dest->getNumber(); i != e; ++i) in runOnMachineFunction() 222 I = BuildMI(MBB, I, dl, TII->get(PPC::B)).addMBB(Dest); in runOnMachineFunction()
|
/external/swiftshader/third_party/LLVM/lib/Analysis/ |
D | ProfileInfo.cpp | 238 GetPath(const BasicBlock *Src, const BasicBlock *Dest, in GetPath() argument 264 if ((Mode & GetPathToDest) && *Succ == Dest) { in GetPath() 747 const BasicBlock *Dest = 0; in repair() local 755 if (Dest && Dest != P[0]) { in repair() 758 Dest = P[0]; in repair() 776 const BasicBlock *Dest = GetPath(BB, 0, P, GetPathToValue); in repair() local 816 double ow = getExecutionCount(Dest); in repair() 831 double ew = getEdgeWeight(getEdge(P[Dest],Dest)); in repair() 843 Edge e = getEdge(P[Dest],Dest); in repair() 848 Dest = P[Dest]; in repair() [all …]
|
/external/eigen/unsupported/Eigen/src/KroneckerProduct/ |
D | KroneckerTensorProduct.h | 96 template<typename Dest> void evalTo(Dest& dst) const; 129 template<typename Dest> void evalTo(Dest& dst) const; 133 template<typename Dest> 134 void KroneckerProduct<Lhs,Rhs>::evalTo(Dest& dst) const in evalTo() 142 Block<Dest,BlockRows,BlockCols>(dst,i*Br,j*Bc,Br,Bc) = m_A.coeff(i,j) * m_B; in evalTo() 146 template<typename Dest> 147 void KroneckerProductSparse<Lhs,Rhs>::evalTo(Dest& dst) const in evalTo() 168 VectorXi nnzA = VectorXi::Zero(Dest::IsRowMajor ? m_A.rows() : m_A.cols()); in evalTo() 171 nnzA(Dest::IsRowMajor ? itA.row() : itA.col())++; in evalTo() 173 VectorXi nnzB = VectorXi::Zero(Dest::IsRowMajor ? m_B.rows() : m_B.cols()); in evalTo() [all …]
|