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

1 2 3 4

  /external/libvpx/vp8/common/
common.h 25 #define vp8_copy( Dest, Src) { \
26 assert( sizeof( Dest) == sizeof( Src)); \
27 vpx_memcpy( Dest, Src, sizeof( Src)); \
32 #define vp8_copy_array( Dest, Src, N) { \
33 assert( sizeof( *Dest) == sizeof( *Src)); \
34 vpx_memcpy( Dest, Src, N * sizeof( *Src)); \
37 #define vp8_zero( Dest) vpx_memset( &Dest, 0, sizeof( Dest));
39 #define vp8_zero_array( Dest, N) vpx_memset( Dest, 0, N * sizeof( *Dest))
    [all...]
blockd.h 64 #define VP8_COMBINEENTROPYCONTEXTS( Dest, A, B) \
65 Dest = ((A)!=0) + ((B)!=0);
  /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 69 template <class Dest, class Source>
70 inline Dest bit_cast(const Source& source) {
71 // Compile time assertion: sizeof(Dest) == sizeof(Source)
72 // A compile error here means your Dest and Source have different sizes.
73 typedef char VerifySizesAreEqual [sizeof(Dest) == sizeof(Source) ? 1 :
75 Dest dest; local
76 memcpy(&dest, &source, sizeof(dest));
77 return dest;
    [all...]
  /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/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/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/llvm/lib/Target/PowerPC/
PPCBranchSelector.cpp 113 MachineBasicBlock *Dest = I->getOperand(2).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)
167 I = BuildMI(MBB, I, dl, TII->get(PPC::B)).addMBB(Dest);
  /external/clang/lib/CodeGen/
CGExprAgg.cpp 36 AggValueSlot Dest;
38 /// We want to use 'dest' as the return slot except under two
44 return !(Dest.requiresGCollection() || Dest.isPotentiallyAliased());
51 return ReturnValueSlot(Dest.getAddr(), Dest.isVolatile());
55 if (!Dest.isIgnored()) return Dest;
59 if (!Dest.isIgnored()) return;
60 Dest = CGF.CreateAggTemp(T, "agg.tmp.ensured")
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
CallEvent.h 157 virtual void cloneTo(void *Dest) const = 0;
426 virtual void cloneTo(void *Dest) const { new (Dest) FunctionCall(*this); }
448 virtual void cloneTo(void *Dest) const { new (Dest) BlockCall(*this); }
534 virtual void cloneTo(void *Dest) const { new (Dest) CXXMemberCall(*this); }
574 virtual void cloneTo(void *Dest) const {
575 new (Dest) CXXMemberOperatorCall(*this);
625 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...]
SparsePropagation.cpp 98 void SparseSolver::markEdgeExecutable(BasicBlock *Source, BasicBlock *Dest) {
99 if (!KnownFeasibleEdges.insert(Edge(Source, Dest)).second)
103 << " -> " << Dest->getName() << "\n");
105 if (BBExecutable.count(Dest)) {
109 for (BasicBlock::iterator I = Dest->begin(); isa<PHINode>(I); ++I)
113 MarkBlockExecutable(Dest);
ProfileEstimatorPass.cpp 239 const BasicBlock *Dest = GetPath(BB, (*ei).first, p, GetPathToDest);
240 while (Dest != BB) {
241 const BasicBlock *Parent = p.find(Dest)->second;
242 Edge e = getEdge(Parent, Dest);
248 Dest = Parent;
378 const BasicBlock *Dest = GetPath(BB, *bbi, P, GetPathToDest);
379 if (Dest != *bbi) {
  /external/llvm/include/llvm/ADT/
SmallVector.h 177 /// objects starting with "Dest". This is just <memory>'s
180 static It2 move(It1 I, It1 E, It2 Dest) {
182 for (; I != E; ++I, ++Dest)
183 *Dest = ::std::move(*I);
184 return Dest;
186 return ::std::copy(I, E, Dest);
191 /// [I, E) onto the objects ending at "Dest", moving objects
195 static It2 move_backward(It1 I, It1 E, It2 Dest) {
198 *--Dest = ::std::move(*--E);
199 return Dest;
    [all...]
  /external/llvm/include/llvm/Analysis/
ProfileDataLoader.h 67 static Edge getEdge(const BType *Src, const BType *Dest) {
68 return Edge(Src, Dest);
AliasSetTracker.h 242 AliasSet *Dest = Forward->getForwardedTarget(AST);
243 if (Dest != Forward) {
244 Dest->addRef();
246 Forward = Dest;
248 return Dest;
  /external/llvm/unittests/ADT/
VariadicFunctionTest.cpp 57 // Appends an array of strings to dest and returns the number of
59 int StringAppendImpl(std::string *Dest, ArrayRef<const std::string *> Args) {
63 *Dest += *Args[i];
  /external/llvm/lib/Linker/
LinkModules.cpp 63 /// linkDefinedTypeBodies - Produce a body for an opaque type in the dest
138 // Mapping an opaque type to any struct, just keep the dest struct.
145 // Mapping a non-opaque source type to an opaque dest. If this is the first
147 // the dest, but fill it in later. This doesn't need to be speculative. If
201 /// linkDefinedTypeBodies - Produce a body for an opaque type in the dest
219 // Map the body of the source type over to a new body for the dest type.
364 GlobalVariable *NewGV; // New aggregate global in dest module.
365 Constant *DstInit; // Old initializer from dest module.
397 bool getLinkageResult(GlobalValue *Dest, const GlobalValue *Src,
414 // If we found a global with the same name in the dest module, but it ha
    [all...]
  /external/clang/test/SemaCXX/
warn-memset-bad-sizeof.cpp 19 template <class Dest, class Source>
20 inline Dest bit_cast(const Source& source) {
21 Dest dest; local
22 memcpy(&dest, &source, sizeof(dest));
23 return dest;
  /external/llvm/lib/MC/
MCStreamer.cpp 242 MachineLocation Dest(MachineLocation::VirtualFP);
244 MCCFIInstruction Instruction(Label, Dest, Source);
253 MachineLocation Dest(MachineLocation::VirtualFP);
255 MCCFIInstruction Instruction(Label, Dest, Source);
264 MachineLocation Dest(MachineLocation::VirtualFP);
266 MCCFIInstruction Instruction(MCCFIInstruction::RelMove, Label, Dest, Source);
275 MachineLocation Dest(Register);
277 MCCFIInstruction Instruction(Label, Dest, Source);
286 MachineLocation Dest(Register, Offset);
288 MCCFIInstruction Instruction(Label, Dest, Source)
    [all...]
  /external/llvm/lib/Transforms/Utils/
CloneFunction.cpp 312 BasicBlock *Dest = BI->getSuccessor(!Cond->getZExtValue());
313 VMap[OldTI] = BranchInst::Create(Dest, NewBB);
314 ToClone.push_back(Dest);
327 BasicBlock *Dest = const_cast<BasicBlock*>(Case.getCaseSuccessor());
328 VMap[OldTI] = BranchInst::Create(Dest, NewBB);
329 ToClone.push_back(Dest);
538 BasicBlock *Dest = BI->getSuccessor(0);
539 if (!Dest->getSinglePredecessor()) {
545 assert(!isa<PHINode>(Dest->begin()));
551 // Make all PHI nodes that referred to Dest now refer to I as their source
    [all...]
LoopUnroll.cpp 358 BasicBlock *Dest = Headers[j];
368 Dest = LoopExit;
381 Term->setSuccessor(!ContinueOnTrue, Dest);
384 if (Dest != LoopExit) {
397 BranchInst::Create(Dest, Term);
406 BasicBlock *Dest = Term->getSuccessor(0);
407 if (BasicBlock *Fold = FoldBlockIntoPredecessor(Dest, LI, LPM))
408 std::replace(Latches.begin(), Latches.end(), Dest, Fold);
  /external/llvm/lib/VMCore/
SymbolTableListTraitsImpl.h 30 ::setSymTabObject(TPtr *Dest, TPtr Src) {
35 *Dest = Src;

Completed in 899 milliseconds

1 2 3 4