Searched defs:Dest (Results 1 - 25 of 72) sorted by relevance

123

/external/clang/lib/Frontend/
H A DModuleDependencyCollector.cpp48 SmallString<256> Dest = getDest();
49 llvm::sys::path::append(Dest, "vfs.yaml");
52 llvm::raw_fd_ostream OS(Dest.c_str(), ErrorInfo, llvm::sys::fs::F_Text);
96 SmallString<256> Dest = Collector.getDest(); local
97 path::append(Dest, path::relative_path(AbsoluteSrc));
100 if (std::error_code EC = fs::create_directories(path::parent_path(Dest),
103 if (std::error_code EC = fs::copy_file(AbsoluteSrc.str(), Dest.str()))
106 Collector.addFileMapping(AbsoluteSrc.str(), Dest.str());
/external/llvm/lib/IR/
H A DSymbolTableListTraitsImpl.h30 ::setSymTabObject(TPtr *Dest, TPtr Src) { argument
35 *Dest = Src;
/external/llvm/unittests/ADT/
H A DVariadicFunctionTest.cpp59 int StringAppendImpl(std::string *Dest, ArrayRef<const std::string *> Args) { argument
63 *Dest += *Args[i];
/external/llvm/lib/Target/MSP430/
H A DMSP430BranchSelector.cpp114 MachineBasicBlock *Dest = I->getOperand(0).getMBB(); local
117 if (Dest->getNumber() <= MBB.getNumber()) {
123 for (unsigned i = Dest->getNumber(), e = MBB.getNumber(); i != e; ++i)
130 for (unsigned i = MBB.getNumber(), e = Dest->getNumber(); i != e; ++i)
162 I = BuildMI(MBB, I, dl, TII->get(MSP430::Bi)).addMBB(Dest);
/external/llvm/lib/Target/NVPTX/
H A DNVPTXImageOptimizer.cpp154 BasicBlock *Dest; local
157 Dest = BI->getSuccessor(1);
160 Dest = BI->getSuccessor(0);
161 BranchInst::Create(Dest, BI);
/external/llvm/lib/Target/PowerPC/
H A DPPCBranchSelector.cpp116 MachineBasicBlock *Dest = nullptr; local
118 Dest = I->getOperand(2).getMBB();
121 Dest = I->getOperand(1).getMBB();
125 Dest = I->getOperand(0).getMBB();
127 if (!Dest) {
135 if (Dest->getNumber() <= MBB.getNumber()) {
141 for (unsigned i = Dest->getNumber(), e = MBB.getNumber(); i != e; ++i)
148 for (unsigned i = MBB.getNumber(), e = Dest->getNumber(); i != e; ++i)
192 I = BuildMI(MBB, I, dl, TII->get(PPC::B)).addMBB(Dest);
/external/llvm/include/llvm/Target/
H A DTargetSelectionDAGInfo.h132 SDValue Dest, SDValue Src,
131 EmitTargetCodeForStrcpy(SelectionDAG &DAG, SDLoc DL, SDValue Chain, SDValue Dest, SDValue Src, MachinePointerInfo DestPtrInfo, MachinePointerInfo SrcPtrInfo, bool isStpcpy) const argument
/external/llvm/lib/Analysis/
H A DCFG.cpp92 const BasicBlock *Dest = TI->getSuccessor(SuccNum); local
93 const_pred_iterator I = pred_begin(Dest), E = pred_end(Dest);
H A DSparsePropagation.cpp99 void SparseSolver::markEdgeExecutable(BasicBlock *Source, BasicBlock *Dest) { argument
100 if (!KnownFeasibleEdges.insert(Edge(Source, Dest)).second)
104 << " -> " << Dest->getName() << "\n");
106 if (BBExecutable.count(Dest)) {
110 for (BasicBlock::iterator I = Dest->begin(); isa<PHINode>(I); ++I)
114 MarkBlockExecutable(Dest);
/external/clang/lib/ASTMatchers/Dynamic/
H A DDiagnostics.cpp49 Diagnostics::ErrorContent &Dest = Error->Errors[BeginIndex]; local
51 Dest.Messages.push_back(Error->Errors[i].Messages[0]);
/external/clang/lib/Lex/
H A DHeaderMap.cpp206 StringRef Dest = lookupFilename(Filename, Path); local
207 if (Dest.empty())
210 return FM.getFile(Dest);
/external/llvm/lib/ExecutionEngine/Interpreter/
H A DExecution.cpp51 Dest.TY##Val = Src1.TY##Val OP Src2.TY##Val; \
54 static void executeFAddInst(GenericValue &Dest, GenericValue Src1, argument
65 static void executeFSubInst(GenericValue &Dest, GenericValue Src1, argument
76 static void executeFMulInst(GenericValue &Dest, GenericValue Src1, argument
87 static void executeFDivInst(GenericValue &Dest, GenericValue Src1, argument
98 static void executeFRemInst(GenericValue &Dest, GenericValue Src1, argument
102 Dest.FloatVal = fmod(Src1.FloatVal, Src2.FloatVal);
105 Dest.DoubleVal = fmod(Src1.DoubleVal, Src2.DoubleVal);
115 Dest.IntVal = APInt(1,Src1.IntVal.OP(Src2.IntVal)); \
121 Dest
139 GenericValue Dest; local
153 GenericValue Dest; local
167 GenericValue Dest; local
2022 GenericValue Dest; local
[all...]
/external/llvm/lib/Target/SystemZ/
H A DSystemZSelectionDAGInfo.cpp29 // address Dest. Sequence is the opcode to use for straight-line code
238 SDValue Dest, SDValue Src,
241 SDVTList VTs = DAG.getVTList(Dest.getValueType(), MVT::Other);
242 SDValue EndDest = DAG.getNode(SystemZISD::STPCPY, DL, VTs, Chain, Dest, Src,
244 return std::make_pair(isStpcpy ? EndDest : Dest, EndDest.getValue(1));
237 EmitTargetCodeForStrcpy(SelectionDAG &DAG, SDLoc DL, SDValue Chain, SDValue Dest, SDValue Src, MachinePointerInfo DestPtrInfo, MachinePointerInfo SrcPtrInfo, bool isStpcpy) const argument
/external/llvm/lib/Target/X86/
H A DX86FixupLEAs.cpp107 const MachineOperand &Dest = MI->getOperand(0); local
111 .addOperand(Dest)
/external/llvm/lib/Transforms/Utils/
H A DLoopUnroll.cpp381 BasicBlock *Dest = Headers[j]; local
391 Dest = LoopExit;
404 Term->setSuccessor(!ContinueOnTrue, Dest);
407 if (Dest != LoopExit) {
420 BranchInst::Create(Dest, Term);
429 BasicBlock *Dest = Term->getSuccessor(0); local
430 if (BasicBlock *Fold = FoldBlockIntoPredecessor(Dest, LI, LPM))
431 std::replace(Latches.begin(), Latches.end(), Dest, Fold);
H A DCloneFunction.cpp369 BasicBlock *Dest = BI->getSuccessor(!Cond->getZExtValue()); local
370 VMap[OldTI] = BranchInst::Create(Dest, NewBB);
371 ToClone.push_back(Dest);
384 BasicBlock *Dest = const_cast<BasicBlock*>(Case.getCaseSuccessor()); local
385 VMap[OldTI] = BranchInst::Create(Dest, NewBB);
386 ToClone.push_back(Dest);
595 BasicBlock *Dest = BI->getSuccessor(0); local
596 if (!Dest->getSinglePredecessor()) {
602 assert(!isa<PHINode>(Dest->begin()));
608 // Make all PHI nodes that referred to Dest no
[all...]
H A DPromoteMemoryToRegister.cpp1031 AllocaInst *Dest = dyn_cast<AllocaInst>(SI->getPointerOperand()); local
1032 if (!Dest)
1035 DenseMap<AllocaInst *, unsigned>::iterator ai = AllocaLookup.find(Dest);
/external/llvm/utils/TableGen/
H A DPseudoLoweringEmitter.cpp38 CodeGenInstruction Dest; // The destination instruction to lower to. member in struct:__anon26603::PseudoLoweringEmitter::PseudoExpansion
43 Source(s), Dest(d), OperandMap(m) {}
210 CodeGenInstruction &Dest = Expansion.Dest; local
215 << " TmpInst.setOpcode(" << Dest.Namespace << "::"
216 << Dest.TheDef->getName() << ");\n";
223 for (const auto &DestOperand : Dest.Operands) {
254 if (Dest.Operands.isVariadic) {
/external/pdfium/fpdfsdk/src/
H A Dfpdfdoc.cpp118 CPDF_Dest Dest = (CPDF_Array*)dest; local
120 return Dest.GetPageIndex(pDoc);
/external/clang/include/clang/AST/
H A DASTVector.h210 /// starting with "Dest", constructing elements into it as needed.
212 static void uninitialized_copy(It1 I, It1 E, It2 Dest) { argument
213 std::uninitialized_copy(I, E, Dest);
/external/clang/lib/StaticAnalyzer/Core/
H A DExprEngineCXX.cpp300 const MemRegion *Dest,
312 if (Dest)
313 DestVal = loc::MemRegionVal(Dest);
315 Dest = DestVal.getAsRegion();
323 CEMgr.getCXXDestructorCall(DtorDecl, S, Dest, IsBaseDtor, State, LCtx);
299 VisitCXXDestructor(QualType ObjectType, const MemRegion *Dest, const Stmt *S, bool IsBaseDtor, ExplodedNode *Pred, ExplodedNodeSet &Dst) argument
/external/eigen/Eigen/src/SparseCore/
H A DSparseSelfAdjointView.h234 template<typename Dest> void scaleAndAddTo(Dest& dest, const Scalar& alpha) const
295 template<typename Dest> void scaleAndAddTo(Dest& /*dest*/, const Scalar& /*alpha*/) const
318 typedef SparseMatrix<Scalar,DestOrder,Index> Dest; typedef
321 Dest& dest(_dest.derived());
323 StorageOrderMatch = int(Dest::IsRowMajor) == int(MatrixType::IsRowMajor)
/external/llvm/lib/Target/AArch64/
H A DAArch64AsmPrinter.cpp474 MCOperand Dest; local
475 MCInstLowering.lowerOperand(MI->getOperand(0), Dest);
478 TmpInst.addOperand(Dest);
/external/llvm/include/llvm/ADT/
H A DSmallVector.h183 /// objects starting with "Dest". This is just <memory>'s
186 static It2 move(It1 I, It1 E, It2 Dest) {
187 for (; I != E; ++I, ++Dest)
188 *Dest = ::std::move(*I);
189 return Dest;
193 /// [I, E) onto the objects ending at "Dest", moving objects
197 static It2 move_backward(It1 I, It1 E, It2 Dest) {
199 *--Dest = ::std::move(*--E);
200 return Dest;
204 /// memory starting with "Dest", constructin
285 move(It1 I, It1 E, It2 Dest) argument
293 move_backward(It1 I, It1 E, It2 Dest) argument
300 uninitialized_move(It1 I, It1 E, It2 Dest) argument
308 uninitialized_copy(It1 I, It1 E, It2 Dest) argument
316 uninitialized_copy(T1 *I, T1 *E, T2 *Dest) argument
[all...]
/external/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/src/
H A Dcmsio1.c64 cmsBool _cmsReadMediaWhitePoint(cmsCIEXYZ* Dest, cmsHPROFILE hProfile) argument
68 _cmsAssert(Dest != NULL);
74 *Dest = *cmsD50_XYZ();
82 *Dest = *cmsD50_XYZ();
88 *Dest = *Tag;
94 cmsBool _cmsReadCHAD(cmsMAT3* Dest, cmsHPROFILE hProfile) argument
98 _cmsAssert(Dest != NULL);
103 *Dest = *Tag;
108 _cmsMAT3identity(Dest);
119 _cmsMAT3identity(Dest);
[all...]

Completed in 1488 milliseconds

123