Searched refs:Dest (Results 1 - 25 of 76) sorted by relevance

1234

/external/libvpx/vp8/common/
H A Dcommon.h25 #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,
[all...]
H A Dblockd.h64 #define VP8_COMBINEENTROPYCONTEXTS( Dest, A, B) \
65 Dest = ((A)!=0) + ((B)!=0);
/external/llvm/lib/ExecutionEngine/Interpreter/
H A DExecution.cpp50 Dest.TY##Val = Src1.TY##Val OP Src2.TY##Val; \
53 static void executeFAddInst(GenericValue &Dest, GenericValue Src1, argument
64 static void executeFSubInst(GenericValue &Dest, GenericValue Src1, argument
75 static void executeFMulInst(GenericValue &Dest, GenericValue Src1, argument
86 static void executeFDivInst(GenericValue &Dest, GenericValue Src1, argument
97 static void executeFRemInst(GenericValue &Dest, GenericValue Src1, argument
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
129 GenericValue Dest; local
142 GenericValue Dest; local
155 GenericValue Dest; local
[all...]
/external/clang/lib/StaticAnalyzer/Core/
H A DAggExprVisitor.cpp30 const MemRegion *Dest; member in class:__anon3104::AggExprVisitor
38 : Dest(dest), Pred(N), DstSet(dst), Eng(eng) {}
59 Eng.VisitCXXConstructExpr(E, Dest, Pred, DstSet);
66 void ExprEngine::VisitAggExpr(const Expr *E, const MemRegion *Dest, argument
68 AggExprVisitor(Dest, Pred, Dst, *this).Visit(const_cast<Expr *>(E));
H A DExprEngineCXX.cpp126 const MemRegion *Dest,
168 if (!Dest)
169 Dest =
190 // by 'Dest'.
191 state = state->bindLoc(loc::MemRegionVal(ThisR), loc::MemRegionVal(Dest));
218 const MemRegion *Dest,
235 state = state->bindLoc(loc::MemRegionVal(ThisR), loc::MemRegionVal(Dest));
125 VisitCXXConstructExpr(const CXXConstructExpr *E, const MemRegion *Dest, ExplodedNode *Pred, ExplodedNodeSet &destNodes) argument
217 VisitCXXDestructor(const CXXDestructorDecl *DD, const MemRegion *Dest, const Stmt *S, ExplodedNode *Pred, ExplodedNodeSet &Dst) argument
/external/llvm/utils/TableGen/
H A DPseudoLoweringEmitter.h33 CodeGenInstruction Dest; // The destination instruction to lower to. member in struct:llvm::PseudoLoweringEmitter::PseudoExpansion
38 Source(s), Dest(d), OperandMap(m) {}
H A DPseudoLoweringEmitter.cpp160 CodeGenInstruction &Dest = Expansion.Dest; local
165 << " TmpInst.setOpcode(" << Dest.Namespace << "::"
166 << Dest.TheDef->getName() << ");\n";
173 for (unsigned OpNo = 0, E = Dest.Operands.size(); OpNo != E;
175 o << " // Operand: " << Dest.Operands[OpNo].Name << "\n";
176 for (unsigned i = 0, e = Dest.Operands[OpNo].MINumOperands;
205 MIOpNo += Dest.Operands[OpNo].MINumOperands;
207 if (Dest.Operands.isVariadic) {
/external/llvm/lib/Target/MSP430/
H A DMSP430BranchSelector.cpp113 MachineBasicBlock *Dest = I->getOperand(0).getMBB(); local
116 if (Dest->getNumber() <= MBB.getNumber()) {
122 for (unsigned i = Dest->getNumber(), e = MBB.getNumber(); i != e; ++i)
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/llvm/lib/Target/PowerPC/
H A DPPCBranchSelector.cpp113 MachineBasicBlock *Dest = I->getOperand(2).getMBB(); local
116 if (Dest->getNumber() <= MBB.getNumber()) {
122 for (unsigned i = Dest->getNumber(), e = MBB.getNumber(); i != e; ++i)
129 for (unsigned i = MBB.getNumber(), e = Dest->getNumber(); i != e; ++i)
155 I = BuildMI(MBB, I, dl, TII->get(PPC::B)).addMBB(Dest);
/external/chromium/base/
H A Dbasictypes.h273 // 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;
/external/clang/lib/CodeGen/
H A DCGExprAgg.cpp35 AggValueSlot Dest; member in class:__anon2819::AggExprEmitter
44 return !(Dest.requiresGCollection() || Dest.isPotentiallyAliased());
51 return ReturnValueSlot(Dest.getAddr(), Dest.isVolatile());
55 if (!Dest.isIgnored()) return Dest;
60 AggExprEmitter(CodeGenFunction &cgf, AggValueSlot Dest, argument
62 : CGF(cgf), Builder(CGF.Builder), Dest(Dest),
[all...]
H A DCGCleanup.cpp850 bool CodeGenFunction::isObviouslyBranchWithoutCleanups(JumpDest Dest) const {
851 assert(Dest.getScopeDepth().encloses(EHStack.stable_begin())
862 TopCleanup.encloses(Dest.getScopeDepth())) // works for invalid
875 void CodeGenFunction::EmitBranchThroughCleanup(JumpDest Dest) { argument
876 assert(Dest.getScopeDepth().encloses(EHStack.stable_begin())
883 llvm::BranchInst *BI = Builder.CreateBr(Dest.getBlock());
893 TopCleanup.encloses(Dest.getScopeDepth())) { // works for invalid
900 if (!Dest.getScopeDepth().isValid()) {
902 Fixup.Destination = Dest.getBlock();
903 Fixup.DestinationIndex = Dest
[all...]
/external/llvm/lib/Analysis/
H A DProfileInfo.cpp238 GetPath(const BasicBlock *Src, const BasicBlock *Dest, argument
264 if ((Mode & GetPathToDest) && *Succ == Dest) {
747 const BasicBlock *Dest = 0; local
755 if (Dest && Dest != P[0]) {
758 Dest = P[0];
776 const BasicBlock *Dest = GetPath(BB, 0, P, GetPathToValue); local
816 double ow = getExecutionCount(Dest);
831 double ew = getEdgeWeight(getEdge(P[Dest],Dest));
[all...]
H A DSparsePropagation.cpp98 void SparseSolver::markEdgeExecutable(BasicBlock *Source, BasicBlock *Dest) { argument
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);
H A DProfileEstimatorPass.cpp239 const BasicBlock *Dest = GetPath(BB, (*ei).first, p, GetPathToDest); local
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); local
379 if (Dest != *bbi) {
H A DBasicAliasAnalysis.cpp392 /// GetIndexDifference - Dest and Src are the variable indices from two
396 static void GetIndexDifference(SmallVectorImpl<VariableGEPIndex> &Dest, argument
405 // Find V in Dest. This is N^2, but pointer indices almost never have more
407 for (unsigned j = 0, e = Dest.size(); j != e; ++j) {
408 if (Dest[j].V != V || Dest[j].Extension != Extension) continue;
410 // If we found it, subtract off Scale V's from the entry in Dest. If it
412 if (Dest[j].Scale != Scale)
413 Dest[j].Scale -= Scale;
415 Dest
740 Value *Dest = II->getArgOperand(0); local
759 Value *Dest = II->getArgOperand(0); local
826 const Value *Dest = CS.getArgument(0); local
[all...]
/external/llvm/lib/Linker/
H A DLinkModules.cpp362 bool getLinkageResult(GlobalValue *Dest, const GlobalValue *Src,
442 bool ModuleLinker::getLinkageResult(GlobalValue *Dest, const GlobalValue *Src, argument
445 assert(Dest && "Must have two globals being queried");
447 "If Src has internal linkage, Dest shouldn't be set!");
450 bool DestIsDeclaration = Dest->isDeclaration();
453 // If Src is external or if both Src & Dest are external.. Just link the
461 } else if (Dest->hasExternalWeakLinkage()) {
462 // If the Dest is weak, use the source linkage.
467 LT = Dest->getLinkage();
469 } else if (DestIsDeclaration && !Dest
993 LinkModules(Module *Dest, Module *Src, unsigned Mode, std::string *ErrorMsg) argument
[all...]
/external/v8/src/
H A Dutils.h767 template <class Dest, class Source>
769 STATIC_ASSERT(sizeof(Dest) == sizeof(Source));
771 INLINE(static Dest cast(const Source& source)) {
772 Dest dest;
778 template <class Dest, class Source>
779 struct BitCastHelper<Dest, Source*> {
780 INLINE(static Dest cast(Source* source)) {
781 return BitCastHelper<Dest, uintptr_t>::
786 template <class Dest, class Source>
787 INLINE(Dest BitCas
[all...]
/external/clang/test/SemaCXX/
H A Dwarn-memset-bad-sizeof.cpp19 template <class Dest, class Source>
20 inline Dest bit_cast(const Source& source) {
21 Dest dest;
/external/llvm/lib/MC/
H A DMCStreamer.cpp309 MachineLocation Dest(MachineLocation::VirtualFP);
311 MCCFIInstruction Instruction(Label, Dest, Source);
320 MachineLocation Dest(MachineLocation::VirtualFP);
322 MCCFIInstruction Instruction(Label, Dest, Source);
331 MachineLocation Dest(MachineLocation::VirtualFP);
333 MCCFIInstruction Instruction(MCCFIInstruction::RelMove, Label, Dest, Source);
342 MachineLocation Dest(Register);
344 MCCFIInstruction Instruction(Label, Dest, Source);
353 MachineLocation Dest(Register, Offset);
355 MCCFIInstruction Instruction(Label, Dest, Sourc
[all...]
/external/llvm/lib/Transforms/Utils/
H A DCloneFunction.cpp270 BasicBlock *Dest = BI->getSuccessor(!Cond->getZExtValue()); local
271 VMap[OldTI] = BranchInst::Create(Dest, NewBB);
272 ToClone.push_back(Dest);
284 BasicBlock *Dest = SI->getSuccessor(SI->findCaseValue(Cond)); local
285 VMap[OldTI] = BranchInst::Create(Dest, NewBB);
286 ToClone.push_back(Dest);
513 BasicBlock *Dest = BI->getSuccessor(0); local
514 if (!Dest->getSinglePredecessor() || isa<PHINode>(Dest->begin())) {
522 // Make all PHI nodes that referred to Dest no
[all...]
H A DLoopUnroll.cpp332 BasicBlock *Dest = Headers[j]; local
338 Dest = LoopExit;
351 Term->setSuccessor(!ContinueOnTrue, Dest);
354 if (Dest != LoopExit) {
367 BranchInst::Create(Dest, Term);
376 BasicBlock *Dest = Term->getSuccessor(0); local
377 if (BasicBlock *Fold = FoldBlockIntoPredecessor(Dest, LI, LPM))
378 std::replace(Latches.begin(), Latches.end(), Dest, Fold);
/external/llvm/lib/VMCore/
H A DSymbolTableListTraitsImpl.h30 ::setSymTabObject(TPtr *Dest, TPtr Src) { argument
35 *Dest = Src;
/external/llvm/include/llvm/Analysis/
H A DAliasSetTracker.h242 AliasSet *Dest = Forward->getForwardedTarget(AST);
243 if (Dest != Forward) {
244 Dest->addRef();
246 Forward = Dest;
248 return Dest;
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Dcompat.h274 template <class Dest, class Source>
275 inline Dest bit_cast(const Source& source) {
276 // Compile time assertion: sizeof(Dest) == sizeof(Source)
277 // A compile error here means your Dest and Source have different sizes.
278 typedef char VerifySizesAreEqual [sizeof(Dest) == sizeof(Source) ? 1 :
280 Dest dest;

Completed in 554 milliseconds

1234