HomeSort by relevance Sort by last modified time
    Searched refs:Dest (Results 1 - 25 of 130) sorted by null

1 2 3 4 5 6

  /external/libvpx/libvpx/vp8/common/
common.h 23 #define vp8_copy( Dest, Src) { \
24 assert( sizeof( Dest) == sizeof( Src)); \
25 vpx_memcpy( Dest, Src, sizeof( Src)); \
30 #define vp8_copy_array( Dest, Src, N) { \
31 assert( sizeof( *Dest) == sizeof( *Src)); \
32 vpx_memcpy( Dest, Src, N * sizeof( *Src)); \
35 #define vp8_zero( Dest) vpx_memset( &Dest, 0, sizeof( Dest));
37 #define vp8_zero_array( Dest, N) vpx_memset( Dest, 0, N * sizeof( *Dest))
    [all...]
  /external/eigen/Eigen/src/Core/
EigenBase.h 52 template<typename Dest> inline void evalTo(Dest& dst) const
56 template<typename Dest> inline void addTo(Dest& dst) const
60 typename Dest::PlainObject res(rows(),cols());
66 template<typename Dest> inline void subTo(Dest& dst) const
70 typename Dest::PlainObject res(rows(),cols());
76 template<typename Dest> inline void applyThisOnTheRight(Dest& dst) cons
    [all...]
ProductBase.h 101 template<typename Dest>
102 inline void evalTo(Dest& dst) const { dst.setZero(); scaleAndAddTo(dst,Scalar(1)); }
104 template<typename Dest>
105 inline void addTo(Dest& dst) const { scaleAndAddTo(dst,Scalar(1)); }
107 template<typename Dest>
108 inline void subTo(Dest& dst) const { scaleAndAddTo(dst,Scalar(-1)); }
110 template<typename Dest>
111 inline void scaleAndAddTo(Dest& dst,Scalar alpha) const { derived().scaleAndAddTo(dst,alpha); }
247 template<typename Dest>
248 inline void evalTo(Dest& dst) const { dst.setZero(); scaleAndAddTo(dst, Scalar(1));
    [all...]
ReturnByValue.h 59 template<typename Dest>
60 inline void evalTo(Dest& dst) const
GeneralProduct.h 247 template<typename Dest> void scaleAndAddTo(Dest& dest, Scalar alpha) const
249 internal::outer_product_selector<(int(Dest::Flags)&RowMajorBit) ? RowMajor : ColMajor>::run(*this, dest, alpha);
256 template<typename ProductType, typename Dest>
257 static EIGEN_DONT_INLINE void run(const ProductType& prod, Dest& dest, typename ProductType::Scalar alpha) {
258 typedef typename Dest::Index Index;
261 const Index cols = dest.cols()
    [all...]
  /external/llvm/include/llvm-c/
Linker.h 35 LLVMBool LLVMLinkModules(LLVMModuleRef Dest, LLVMModuleRef Src,
  /frameworks/ex/variablespeed/jni/
macros.h 55 template <class Dest, class Source>
56 inline Dest bit_cast(const Source& source) {
57 // Compile time assertion: sizeof(Dest) == sizeof(Source)
58 // A compile error here means your Dest and Source have different sizes.
59 typedef char VerifySizesAreEqual [sizeof(Dest) == sizeof(Source) ? 1 : -1]; // NOLINT
61 Dest dest; local
62 memcpy(&dest, &source, sizeof(dest));
63 return dest;
    [all...]
  /external/llvm/lib/ExecutionEngine/Interpreter/
Execution.cpp 50 Dest.TY##Val = Src1.TY##Val OP Src2.TY##Val; \
53 static void executeFAddInst(GenericValue &Dest, GenericValue Src1,
64 static void executeFSubInst(GenericValue &Dest, GenericValue Src1,
75 static void executeFMulInst(GenericValue &Dest, GenericValue Src1,
86 static void executeFDivInst(GenericValue &Dest, GenericValue Src1,
97 static void executeFRemInst(GenericValue &Dest, GenericValue Src1,
101 Dest.FloatVal = fmod(Src1.FloatVal, Src2.FloatVal);
104 Dest.DoubleVal = fmod(Src1.DoubleVal, Src2.DoubleVal);
114 Dest.IntVal = APInt(1,Src1.IntVal.OP(Src2.IntVal)); \
123 Dest.IntVal = APInt(1,(void*)(intptr_t)Src1.PointerVal OP
    [all...]
  /external/openfst/src/include/fst/
compat.h 66 template <class Dest, class Source>
67 inline Dest bit_cast(const Source& source) {
68 // Compile time assertion: sizeof(Dest) == sizeof(Source)
69 // A compile error here means your Dest and Source have different sizes.
70 typedef char VerifySizesAreEqual [sizeof(Dest) == sizeof(Source) ? 1 :
72 Dest dest; local
73 memcpy(&dest, &source, sizeof(dest));
74 return dest;
    [all...]
  /external/eigen/Eigen/src/IterativeLinearSolvers/
BiCGSTAB.h 28 template<typename MatrixType, typename Rhs, typename Dest, typename Preconditioner>
29 bool bicgstab(const MatrixType& mat, const Rhs& rhs, Dest& x,
31 typename Dest::RealScalar& tol_error)
35 typedef typename Dest::RealScalar RealScalar;
36 typedef typename Dest::Scalar Scalar;
203 template<typename Rhs,typename Dest>
204 void _solveWithGuess(const Rhs& b, Dest& x) const
212 typename Dest::ColXpr xj(x,j);
223 template<typename Rhs,typename Dest>
224 void _solve(const Rhs& b, Dest& x) cons
    [all...]
ConjugateGradient.h 26 template<typename MatrixType, typename Rhs, typename Dest, typename Preconditioner>
28 void conjugate_gradient(const MatrixType& mat, const Rhs& rhs, Dest& x,
30 typename Dest::RealScalar& tol_error)
34 typedef typename Dest::RealScalar RealScalar;
35 typedef typename Dest::Scalar Scalar;
199 template<typename Rhs,typename Dest>
200 void _solveWithGuess(const Rhs& b, Dest& x) const
210 typename Dest::ColXpr xj(x,j);
220 template<typename Rhs,typename Dest>
221 void _solve(const Rhs& b, Dest& x) cons
    [all...]
BasicPreconditioners.h 83 template<typename Rhs, typename Dest>
84 void _solve(const Rhs& b, Dest& x) const
112 template<typename Dest> void evalTo(Dest& dst) const
  /external/llvm/lib/Target/MSP430/
MSP430BranchSelector.cpp 113 MachineBasicBlock *Dest = I->getOperand(0).getMBB();
116 if (Dest->getNumber() <= MBB.getNumber()) {
119 // from this block to the dest.
122 for (unsigned i = Dest->getNumber(), e = MBB.getNumber(); i != e; ++i)
126 // dest to the number of bytes left in this block.
129 for (unsigned i = MBB.getNumber(), e = Dest->getNumber(); i != e; ++i)
161 I = BuildMI(MBB, I, dl, TII->get(MSP430::Bi)).addMBB(Dest);
  /external/clang/lib/CodeGen/
CGExprAgg.cpp 44 AggValueSlot Dest;
46 /// We want to use 'dest' as the return slot except under two
52 return !(Dest.requiresGCollection() || Dest.isPotentiallyAliased());
59 return ReturnValueSlot(Dest.getAddr(), Dest.isVolatile());
63 if (!Dest.isIgnored()) return Dest;
67 if (!Dest.isIgnored()) return;
68 Dest = CGF.CreateAggTemp(T, "agg.tmp.ensured")
    [all...]
CGAtomic.cpp 95 void emitMemSetZeroIfNecessary(LValue dest) const;
173 void AtomicInfo::emitMemSetZeroIfNecessary(LValue dest) const {
174 llvm::Value *addr = dest.getAddress();
180 dest.getAlignment().getQuantity());
184 EmitAtomicOp(CodeGenFunction &CGF, AtomicExpr *E, llvm::Value *Dest,
210 CGF.EmitStoreOfScalar(Cmp, CGF.MakeAddrLValue(Dest, E->getType()));
221 llvm::StoreInst *StoreDest = CGF.Builder.CreateStore(Load, Dest);
229 assert(!Dest && "Store does not return a value");
306 llvm::StoreInst *StoreDest = CGF.Builder.CreateStore(Result, Dest);
320 RValue CodeGenFunction::EmitAtomicExpr(AtomicExpr *E, llvm::Value *Dest) {
911 atomics.emitCopyIntoMemory(RValue::get(value), dest); local
917 atomics.emitCopyIntoMemory(RValue::getComplex(value), dest); local
    [all...]
  /external/eigen/unsupported/Eigen/src/IterativeSolvers/
GMRES.h 55 template<typename MatrixType, typename Rhs, typename Dest, typename Preconditioner>
56 bool gmres(const MatrixType & mat, const Rhs & rhs, Dest & x, const Preconditioner & precond,
57 int &iters, const int &restart, typename Dest::RealScalar & tol_error) {
62 typedef typename Dest::RealScalar RealScalar;
63 typedef typename Dest::Scalar Scalar;
328 template<typename Rhs,typename Dest>
329 void _solveWithGuess(const Rhs& b, Dest& x) const
337 typename Dest::ColXpr xj(x,j);
348 template<typename Rhs,typename Dest>
349 void _solve(const Rhs& b, Dest& x) cons
    [all...]
IncompleteLU.h 73 template<typename Rhs, typename Dest>
74 void _solve(const Rhs& b, Dest& x) const
103 template<typename Dest> void evalTo(Dest& dst) const
  /external/chromium/base/
basictypes.h 273 // bit_cast<Dest,Source> is a template function that implements the
274 // equivalent of "*reinterpret_cast<Dest*>(&source)". We need this in
324 // WARNING: if Dest or Source is a non-POD type, the result of the memcpy
327 template <class Dest, class Source>
328 inline Dest bit_cast(const Source& source) {
329 // Compile time assertion: sizeof(Dest) == sizeof(Source)
330 // A compile error here means your Dest and Source have different sizes.
331 typedef char VerifySizesAreEqual [sizeof(Dest) == sizeof(Source) ? 1 : -1];
333 Dest dest; local
    [all...]
  /external/eigen/Eigen/src/Householder/
HouseholderSequence.h 235 template<typename Dest, typename Workspace>
236 void evalTo(Dest& dst, Workspace& workspace) const
240 if( internal::is_same<typename internal::remove_all<VectorsType>::type,Dest>::value
280 template<typename Dest> inline void applyThisOnTheRight(Dest& dst) const
282 Matrix<Scalar,1,Dest::RowsAtCompileTime,RowMajor,1,Dest::MaxRowsAtCompileTime> workspace(dst.rows());
287 template<typename Dest, typename Workspace>
288 inline void applyThisOnTheRight(Dest& dst, Workspace& workspace) const
300 template<typename Dest> inline void applyThisOnTheLeft(Dest& dst) cons
    [all...]
  /external/llvm/utils/TableGen/
PseudoLoweringEmitter.cpp 37 CodeGenInstruction Dest; // The destination instruction to lower to.
42 Source(s), Dest(d), OperandMap(m) {}
209 CodeGenInstruction &Dest = Expansion.Dest;
214 << " TmpInst.setOpcode(" << Dest.Namespace << "::"
215 << Dest.TheDef->getName() << ");\n";
222 for (unsigned OpNo = 0, E = Dest.Operands.size(); OpNo != E;
224 o << " // Operand: " << Dest.Operands[OpNo].Name << "\n";
225 for (unsigned i = 0, e = Dest.Operands[OpNo].MINumOperands;
252 MIOpNo += Dest.Operands[OpNo].MINumOperands
    [all...]
  /external/eigen/Eigen/src/misc/
Kernel.h 55 template<typename Dest> inline void evalTo(Dest& dst) const
SparseSolve.h 44 template<typename Dest> inline void evalTo(Dest& dst) const
95 template<typename Dest> inline void evalTo(Dest& dst) const
  /external/llvm/lib/Target/PowerPC/
PPCBranchSelector.cpp 122 MachineBasicBlock *Dest = I->getOperand(2).getMBB();
125 if (Dest->getNumber() <= MBB.getNumber()) {
128 // from this block to the dest.
131 for (unsigned i = Dest->getNumber(), e = MBB.getNumber(); i != e; ++i)
135 // dest to the number of bytes left in this block.
138 for (unsigned i = MBB.getNumber(), e = Dest->getNumber(); i != e; ++i)
176 I = BuildMI(MBB, I, dl, TII->get(PPC::B)).addMBB(Dest);
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
CallEvent.h 157 virtual void cloneTo(void *Dest) const = 0;
483 virtual void cloneTo(void *Dest) const { new (Dest) FunctionCall(*this); }
505 virtual void cloneTo(void *Dest) const { new (Dest) BlockCall(*this); }
595 virtual void cloneTo(void *Dest) const { new (Dest) CXXMemberCall(*this); }
637 virtual void cloneTo(void *Dest) const {
638 new (Dest) CXXMemberOperatorCall(*this);
688 virtual void cloneTo(void *Dest) const { new (Dest) CXXDestructorCall(*this);
    [all...]
  /external/llvm/lib/Analysis/
ProfileInfo.cpp 238 GetPath(const BasicBlock *Src, const BasicBlock *Dest,
264 if ((Mode & GetPathToDest) && *Succ == Dest) {
747 const BasicBlock *Dest = 0;
755 if (Dest && Dest != P[0]) {
758 Dest = P[0];
776 const BasicBlock *Dest = GetPath(BB, 0, P, GetPathToValue);
816 double ow = getExecutionCount(Dest);
831 double ew = getEdgeWeight(getEdge(P[Dest],Dest));
    [all...]

Completed in 1268 milliseconds

1 2 3 4 5 6