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

1 2

  /external/clang/lib/Frontend/
ModuleDependencyCollector.cpp 48 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();
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/Target/NVPTX/
NVPTXImageOptimizer.cpp 154 BasicBlock *Dest;
157 Dest = BI->getSuccessor(1);
160 Dest = BI->getSuccessor(0);
161 BranchInst::Create(Dest, BI);
  /external/llvm/lib/Target/MSP430/
MSP430BranchSelector.cpp 114 MachineBasicBlock *Dest = I->getOperand(0).getMBB();
117 if (Dest->getNumber() <= MBB.getNumber()) {
120 // from this block to the dest.
123 for (unsigned i = Dest->getNumber(), e = MBB.getNumber(); i != e; ++i)
127 // dest to the number of bytes left in this block.
130 for (unsigned i = MBB.getNumber(), e = Dest->getNumber(); i != e; ++i)
162 I = BuildMI(MBB, I, dl, TII->get(MSP430::Bi)).addMBB(Dest);
MSP430ISelLowering.cpp     [all...]
  /external/llvm/lib/Analysis/
CFG.cpp 92 const BasicBlock *Dest = TI->getSuccessor(SuccNum);
93 const_pred_iterator I = pred_begin(Dest), E = pred_end(Dest);
  /external/llvm/lib/Target/PowerPC/
PPCBranchSelector.cpp 116 MachineBasicBlock *Dest = nullptr;
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()) {
138 // from this block to the dest.
141 for (unsigned i = Dest->getNumber(), e = MBB.getNumber(); i != e; ++i)
145 // dest to the number of bytes left in this block.
148 for (unsigned i = MBB.getNumber(), e = Dest->getNumber(); i != e; ++i
    [all...]
  /external/clang/lib/ASTMatchers/Dynamic/
Diagnostics.cpp 49 Diagnostics::ErrorContent &Dest = Error->Errors[BeginIndex];
51 Dest.Messages.push_back(Error->Errors[i].Messages[0]);
  /external/llvm/lib/ExecutionEngine/Interpreter/
Execution.cpp 51 Dest.TY##Val = Src1.TY##Val OP Src2.TY##Val; \
54 static void executeFAddInst(GenericValue &Dest, GenericValue Src1,
65 static void executeFSubInst(GenericValue &Dest, GenericValue Src1,
76 static void executeFMulInst(GenericValue &Dest, GenericValue Src1,
87 static void executeFDivInst(GenericValue &Dest, GenericValue Src1,
98 static void executeFRemInst(GenericValue &Dest, GenericValue Src1,
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.AggregateVal.resize( Src1.AggregateVal.size() );
    [all...]
  /external/llvm/utils/TableGen/
PseudoLoweringEmitter.cpp 38 CodeGenInstruction Dest; // The destination instruction to lower to.
43 Source(s), Dest(d), OperandMap(m) {}
210 CodeGenInstruction &Dest = Expansion.Dest;
215 << " TmpInst.setOpcode(" << Dest.Namespace << "::"
216 << Dest.TheDef->getName() << ");\n";
223 for (const auto &DestOperand : Dest.Operands) {
254 if (Dest.Operands.isVariadic) {
FixedLenDecoderEmitter.cpp 694 FixupScopeList::iterator Dest = Source - 1;
695 Dest->insert(Dest->end(), Source->begin(), Source->end());
    [all...]
  /external/pdfium/fpdfsdk/src/
fpdfdoc.cpp 50 CPDF_Dest dest = Bookmark.GetDest(pDoc); local
51 if (dest != NULL) return dest;
53 // If this bookmark is not directly associated with a dest, we try to get action
113 DLLEXPORT unsigned long STDCALL FPDFDest_GetPageIndex(FPDF_DOCUMENT document, FPDF_DEST dest)
116 if (dest == NULL) return 0;
118 CPDF_Dest Dest = (CPDF_Array*)dest;
120 return Dest.GetPageIndex(pDoc);
151 FPDF_DEST dest = Link.GetDest(pDoc); local
    [all...]
  /external/clang/lib/Lex/
HeaderMap.cpp 206 StringRef Dest = lookupFilename(Filename, Path);
207 if (Dest.empty())
210 return FM.getFile(Dest);
HeaderSearch.cpp 302 StringRef Dest = HM->lookupFilename(Filename, Path);
303 if (Dest.empty())
311 if (llvm::sys::path::is_relative(Dest)) {
313 MappedName.append(Dest.begin(), Dest.end());
319 Result = HS.getFileMgr().getFile(Dest);
    [all...]
  /external/eigen/Eigen/src/SparseCore/
SparseSelfAdjointView.h 234 template<typename Dest> void scaleAndAddTo(Dest& dest, const Scalar& alpha) const
257 dest.row(j) += i.value() * m_rhs.row(j);
266 dest.row(a) += (v) * m_rhs.row(b);
267 dest.row(b) += numext::conj(v) * m_rhs.row(a);
270 dest.row(j) += i.value() * m_rhs.row(j);
295 template<typename Dest> void scaleAndAddTo(Dest& /*dest*/, const Scalar& /*alpha*/) cons
    [all...]
  /external/llvm/lib/Target/AArch64/
AArch64AsmPrinter.cpp 474 MCOperand Dest;
475 MCInstLowering.lowerOperand(MI->getOperand(0), Dest);
478 TmpInst.addOperand(Dest);
  /external/llvm/lib/Target/X86/
X86FixupLEAs.cpp 107 const MachineOperand &Dest = MI->getOperand(0);
111 .addOperand(Dest)
  /external/llvm/lib/Transforms/Utils/
CloneFunction.cpp 369 BasicBlock *Dest = BI->getSuccessor(!Cond->getZExtValue());
370 VMap[OldTI] = BranchInst::Create(Dest, NewBB);
371 ToClone.push_back(Dest);
384 BasicBlock *Dest = const_cast<BasicBlock*>(Case.getCaseSuccessor());
385 VMap[OldTI] = BranchInst::Create(Dest, NewBB);
386 ToClone.push_back(Dest);
595 BasicBlock *Dest = BI->getSuccessor(0);
596 if (!Dest->getSinglePredecessor()) {
602 assert(!isa<PHINode>(Dest->begin()));
608 // Make all PHI nodes that referred to Dest now refer to I as their source
    [all...]
LoopUnroll.cpp 381 BasicBlock *Dest = Headers[j];
391 Dest = LoopExit;
404 Term->setSuccessor(!ContinueOnTrue, Dest);
407 if (Dest != LoopExit) {
420 BranchInst::Create(Dest, Term);
429 BasicBlock *Dest = Term->getSuccessor(0);
430 if (BasicBlock *Fold = FoldBlockIntoPredecessor(Dest, LI, LPM))
431 std::replace(Latches.begin(), Latches.end(), Dest, Fold);
PromoteMemoryToRegister.cpp     [all...]
  /external/llvm/lib/Target/AArch64/InstPrinter/
AArch64InstPrinter.cpp     [all...]
  /external/llvm/lib/Transforms/Scalar/
MemCpyOptimizer.cpp 509 // Check that nothing touches the dest of the "copy" between
586 // memcpy(dest, src, ...)
590 // memcpy(dest, src, ...)
591 // call @func(..., dest, ...)
606 // Check that all of src is copied to dest.
619 // Check that accessing the first srcSize bytes of dest will not cause a
654 // Check that dest points to memory that is at least as aligned as src.
659 // If dest is not aligned enough and we can't increase its alignment then
697 // access dest. We rely on AA to figure this out for us.
710 Value *Dest = cpySrc->getType() == cpyDest->getType() ? cpyDes
    [all...]
  /external/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/src/
cmscnvrt.c 222 cmsCIEXYZ Dest;
236 Dest.X = d.n[VX];
237 Dest.Y = d.n[VY];
238 Dest.Z = d.n[VZ];
240 cmsXYZ2xyY(&DestChromaticity, &Dest);
    [all...]
  /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/llvm/lib/ExecutionEngine/
ExecutionEngine.cpp 287 char *Dest = new char[Size];
288 Values.push_back(Dest);
289 DEBUG(dbgs() << "JIT: ARGV[" << i << "] = " << (void*)Dest << "\n");
291 std::copy(InputArgv[i].begin(), InputArgv[i].end(), Dest);
292 Dest[Size-1] = 0;
294 // Endian safe: Array[i] = (PointerTy)Dest;
295 EE->StoreValueToMemory(PTOGV(Dest), (GenericValue*)(Array+i*PtrSize),
    [all...]
  /external/llvm/lib/Target/SystemZ/
SystemZInstrInfo.cpp 689 MachineOperand &Dest = MI->getOperand(0);
691 unsigned DestReg = Dest.getReg();
708 .addOperand(Dest);
733 MachineOperand &Dest = MI->getOperand(0);
737 .addOperand(Dest).addReg(0)
801 unsigned Dest = MI->getOperand(0).getReg();
802 return BuildMI(MF, MI->getDebugLoc(), get(LoadOpcode), Dest)
    [all...]

Completed in 619 milliseconds

1 2