/external/clang/lib/Frontend/ |
H A D | ModuleDependencyCollector.cpp | 48 SmallString<256> Dest = getDest(); 49 llvm::sys::path::append(Dest, "vfs.yaml"); 52 llvm::raw_fd_ostream OS(Dest, EC, llvm::sys::fs::F_Text); 73 SmallString<256> Dest = Collector.getDest(); local 74 path::append(Dest, path::relative_path(AbsoluteSrc)); 77 if (std::error_code EC = fs::create_directories(path::parent_path(Dest), 80 if (std::error_code EC = fs::copy_file(AbsoluteSrc, Dest)) 83 Collector.addFileMapping(AbsoluteSrc, Dest);
|
/external/llvm/lib/IR/ |
H A D | SymbolTableListTraitsImpl.h | 29 void SymbolTableListTraits<ValueSubClass>::setSymTabObject(TPtr *Dest, argument 35 *Dest = Src;
|
/external/llvm/unittests/ADT/ |
H A D | VariadicFunctionTest.cpp | 59 int StringAppendImpl(std::string *Dest, ArrayRef<const std::string *> Args) { argument 63 *Dest += *Args[i];
|
/external/llvm/lib/Target/MSP430/ |
H A D | MSP430BranchSelector.cpp | 115 MachineBasicBlock *Dest = I->getOperand(0).getMBB(); local 118 if (Dest->getNumber() <= MBB.getNumber()) { 124 for (unsigned i = Dest->getNumber(), e = MBB.getNumber(); i != e; ++i) 131 for (unsigned i = MBB.getNumber(), e = Dest->getNumber(); i != e; ++i) 163 I = BuildMI(MBB, I, dl, TII->get(MSP430::Bi)).addMBB(Dest);
|
/external/llvm/lib/Target/NVPTX/ |
H A D | NVPTXImageOptimizer.cpp | 154 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 D | PPCBranchSelector.cpp | 142 MachineBasicBlock *Dest = nullptr; local 144 Dest = I->getOperand(2).getMBB(); 147 Dest = I->getOperand(1).getMBB(); 151 Dest = I->getOperand(0).getMBB(); 153 if (!Dest) { 161 if (Dest->getNumber() <= MBB.getNumber()) { 167 for (unsigned i = Dest->getNumber(), e = MBB.getNumber(); i != e; ++i) 174 for (unsigned i = MBB.getNumber(), e = Dest->getNumber(); i != e; ++i) 218 I = BuildMI(MBB, I, dl, TII->get(PPC::B)).addMBB(Dest);
|
/external/llvm/include/llvm/Target/ |
H A D | TargetSelectionDAGInfo.h | 122 SDValue Dest, SDValue Src, 121 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 D | CFG.cpp | 93 const BasicBlock *Dest = TI->getSuccessor(SuccNum); local 94 const_pred_iterator I = pred_begin(Dest), E = pred_end(Dest);
|
H A D | SparsePropagation.cpp | 99 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 D | Diagnostics.cpp | 48 Diagnostics::ErrorContent &Dest = Error->Errors[BeginIndex]; local 50 Dest.Messages.push_back(Error->Errors[i].Messages[0]);
|
/external/clang/lib/CodeGen/ |
H A D | CGBuilder.h | 272 llvm::CallInst *CreateMemCpy(Address Dest, Address Src, llvm::Value *Size, argument 274 auto Align = std::min(Dest.getAlignment(), Src.getAlignment()); 275 return CreateMemCpy(Dest.getPointer(), Src.getPointer(), Size, 278 llvm::CallInst *CreateMemCpy(Address Dest, Address Src, uint64_t Size, argument 280 auto Align = std::min(Dest.getAlignment(), Src.getAlignment()); 281 return CreateMemCpy(Dest.getPointer(), Src.getPointer(), Size, 286 llvm::CallInst *CreateMemMove(Address Dest, Address Src, llvm::Value *Size, argument 288 auto Align = std::min(Dest.getAlignment(), Src.getAlignment()); 289 return CreateMemMove(Dest.getPointer(), Src.getPointer(), Size, 294 llvm::CallInst *CreateMemSet(Address Dest, llv argument [all...] |
/external/clang/lib/Lex/ |
H A D | HeaderMap.cpp | 202 StringRef Dest = lookupFilename(Filename, Path); local 203 if (Dest.empty()) 206 return FM.getFile(Dest);
|
/external/llvm/lib/ExecutionEngine/Interpreter/ |
H A D | Execution.cpp | 52 Dest.TY##Val = Src1.TY##Val OP Src2.TY##Val; \ 55 static void executeFAddInst(GenericValue &Dest, GenericValue Src1, argument 66 static void executeFSubInst(GenericValue &Dest, GenericValue Src1, argument 77 static void executeFMulInst(GenericValue &Dest, GenericValue Src1, argument 88 static void executeFDivInst(GenericValue &Dest, GenericValue Src1, argument 99 static void executeFRemInst(GenericValue &Dest, GenericValue Src1, argument 103 Dest.FloatVal = fmod(Src1.FloatVal, Src2.FloatVal); 106 Dest.DoubleVal = fmod(Src1.DoubleVal, Src2.DoubleVal); 116 Dest.IntVal = APInt(1,Src1.IntVal.OP(Src2.IntVal)); \ 122 Dest 140 GenericValue Dest; local 154 GenericValue Dest; local 168 GenericValue Dest; local 2023 GenericValue Dest; local [all...] |
/external/llvm/lib/ProfileData/ |
H A D | InstrProfWriter.cpp | 105 InstrProfRecord &Dest = Where->second; local 110 Dest = std::move(I); 112 Dest.Name = FunctionData.find(Dest.Name)->getKey(); 115 for (auto &Count : Dest.Counts) { 125 Result = Dest.merge(I, Weight); 130 if (Dest.Counts[0] > MaxFunctionCount) 131 MaxFunctionCount = Dest.Counts[0];
|
/external/llvm/lib/Target/SystemZ/ |
H A D | SystemZSelectionDAGInfo.cpp | 23 // address Dest. Sequence is the opcode to use for straight-line code 231 SDValue Dest, SDValue Src, 234 SDVTList VTs = DAG.getVTList(Dest.getValueType(), MVT::Other); 235 SDValue EndDest = DAG.getNode(SystemZISD::STPCPY, DL, VTs, Chain, Dest, Src, 237 return std::make_pair(isStpcpy ? EndDest : Dest, EndDest.getValue(1)); 230 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 D | X86FixupLEAs.cpp | 113 const MachineOperand &Dest = MI->getOperand(0); local 117 .addOperand(Dest)
|
/external/llvm/lib/Transforms/Instrumentation/ |
H A D | CFGMST.h | 143 // First, put all the critical edge with landing-pad as the Dest to MST. 185 Edge &addEdge(const BasicBlock *Src, const BasicBlock *Dest, uint64_t W) { argument 195 std::tie(Iter, Inserted) = BBInfos.insert(std::make_pair(Dest, nullptr)); 199 AllEdges.emplace_back(new Edge(Src, Dest, W));
|
/external/llvm/utils/TableGen/ |
H A D | PseudoLoweringEmitter.cpp | 38 CodeGenInstruction Dest; // The destination instruction to lower to. member in struct:__anon13301::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/clang/include/clang/AST/ |
H A D | ASTVector.h | 210 /// 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/eigen/Eigen/src/SparseCore/ |
H A D | SparseSelfAdjointView.h | 234 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 D | AArch64AsmPrinter.cpp | 475 MCOperand Dest; local 476 MCInstLowering.lowerOperand(MI->getOperand(0), Dest); 479 TmpInst.addOperand(Dest);
|
/external/llvm/lib/Target/BPF/ |
H A D | BPFISelLowering.cpp | 483 SDValue Dest = Op.getOperand(4); local 489 DAG.getConstant(CC, DL, MVT::i64), Dest);
|
/external/llvm/lib/Transforms/Utils/ |
H A D | LoopUnroll.cpp | 427 BasicBlock *Dest = Headers[j]; local 438 Dest = LoopExit; 451 Term->setSuccessor(!ContinueOnTrue, Dest); 454 if (Dest != LoopExit) { 467 BranchInst::Create(Dest, Term); 477 BasicBlock *Dest = Term->getSuccessor(0); local 478 if (BasicBlock *Fold = FoldBlockIntoPredecessor(Dest, LI, SE, 480 std::replace(Latches.begin(), Latches.end(), Dest, Fold);
|
/external/clang/include/clang/Lex/ |
H A D | HeaderSearch.h | 298 void AddIncludeAlias(StringRef Source, StringRef Dest) { argument 301 (*IncludeAliases)[Source] = Dest;
|
/external/clang/lib/StaticAnalyzer/Core/ |
H A D | ExprEngineCXX.cpp | 356 const MemRegion *Dest, 368 if (Dest) 369 DestVal = loc::MemRegionVal(Dest); 371 Dest = DestVal.getAsRegion(); 379 CEMgr.getCXXDestructorCall(DtorDecl, S, Dest, IsBaseDtor, State, LCtx); 355 VisitCXXDestructor(QualType ObjectType, const MemRegion *Dest, const Stmt *S, bool IsBaseDtor, ExplodedNode *Pred, ExplodedNodeSet &Dst) argument
|