HomeSort by relevance Sort by last modified time
    Searched refs:Dst (Results 76 - 100 of 181) sorted by null

1 2 34 5 6 7 8

  /external/llvm/unittests/Linker/
LinkModulesTest.cpp 305 auto Dst = llvm::make_unique<Module>("Linked", C);
306 ASSERT_TRUE(Dst.get());
308 Linker::linkModules(*Dst, std::move(Src));
312 F = &*Dst->begin();
316 NMD = &*Dst->named_metadata_begin();
  /external/llvm/utils/TableGen/
FastISelEmitter.cpp 456 TreePatternNode *Dst = Pattern.getDstPattern();
457 if (Dst->isLeaf()) continue;
458 Record *Op = Dst->getOperator();
467 for (unsigned i = 0, e = Dst->getNumChildren(); i != e; ++i) {
468 TreePatternNode *ChildOp = Dst->getChild(i);
495 if (!Dst->getChild(1)->isLeaf()) continue;
497 DefInit *SR = dyn_cast<DefInit>(Dst->getChild(1)->getLeafValue());
501 SubRegNo = Dst->getChild(1)->getLeafValue()->getAsString();
538 // the mapping from the src to dst patterns is simple.
544 if (DstIndex >= Dst->getNumChildren() |
    [all...]
  /external/llvm/lib/IR/
GCOV.cpp 180 uint32_t Dst;
181 if (!Buff.readInt(Dst))
183 Edges.push_back(make_unique<GCOVEdge>(*Blocks[BlockNo], *Blocks[Dst]));
186 Blocks[Dst]->addSrcEdge(Edge);
379 if (!DstEdges[DstEdgeNo]->Dst.getNumDstEdges())
380 DstEdges[DstEdgeNo]->Dst.Counter += N;
411 dbgs() << Edge->Dst.Number << " (" << Edge->Count << "), ";
  /external/llvm/lib/Linker/
LinkModules.cpp 84 Comdat::SelectionKind Dst,
367 Comdat::SelectionKind Dst,
373 bool DstAnyOrLargest = Dst == Comdat::SelectionKind::Any ||
374 Dst == Comdat::SelectionKind::Largest;
378 if (Dst == Comdat::SelectionKind::Largest ||
383 } else if (Src == Dst) {
384 Result = Dst;
392 // Go with Dst.
  /external/clang/lib/CodeGen/
CGExpr.cpp 1635 Address dst = EmitPointerWithAlignment(Dst.getBaseIvarExp()); local
    [all...]
  /external/llvm/include/llvm/ExecutionEngine/Orc/
IndirectionUtils.h 374 Function* cloneFunctionDecl(Module &Dst, const Function &F,
390 GlobalVariable* cloneGlobalVariableDecl(Module &Dst, const GlobalVariable &GV,
407 GlobalAlias* cloneGlobalAliasDecl(Module &Dst, const GlobalAlias &OrigA,
  /external/llvm/include/llvm/CodeGen/
BasicTTIImpl.h 338 unsigned getCastInstrCost(unsigned Opcode, Type *Dst, Type *Src) {
343 std::pair<unsigned, MVT> DstLT = TLI->getTypeLegalizationCost(DL, Dst);
368 if (!Src->isVectorTy() && !Dst->isVectorTy()) {
384 if (Dst->isVectorTy() && Src->isVectorTy()) {
408 unsigned Num = Dst->getVectorNumElements();
410 Opcode, Dst->getScalarType(), Src->getScalarType());
414 return getScalarizationOverhead(Dst, true, true) + Num * Cost;
425 (Dst->isVectorTy() ? getScalarizationOverhead(Dst, true, false)
  /external/llvm/lib/Target/AArch64/
AArch64TargetTransformInfo.h 100 int getCastInstrCost(unsigned Opcode, Type *Dst, Type *Src);
AArch64TargetTransformInfo.cpp 179 int AArch64TTIImpl::getCastInstrCost(unsigned Opcode, Type *Dst, Type *Src) {
184 EVT DstTy = TLI->getValueType(DL, Dst);
187 return BaseT::getCastInstrCost(Opcode, Dst, Src);
291 return BaseT::getCastInstrCost(Opcode, Dst, Src);
  /external/llvm/lib/Target/ARM/
ARMTargetTransformInfo.h 99 int getCastInstrCost(unsigned Opcode, Type *Dst, Type *Src);
  /external/llvm/lib/Target/PowerPC/
PPCTargetTransformInfo.h 81 int getCastInstrCost(unsigned Opcode, Type *Dst, Type *Src);
  /external/llvm/lib/Target/X86/
X86TargetTransformInfo.h 72 int getCastInstrCost(unsigned Opcode, Type *Dst, Type *Src);
X86FixupLEAs.cpp 366 const MachineOperand &Dst = MI->getOperand(0);
372 .addOperand(Dst)
382 .addOperand(Dst)
  /external/mesa3d/src/gallium/auxiliary/draw/
draw_pipe_aaline.c 280 newInst.Dst[0].Register.File = TGSI_FILE_TEMPORARY;
281 newInst.Dst[0].Register.Index = aactx->texTemp;
296 newInst.Dst[0].Register.File = TGSI_FILE_OUTPUT;
297 newInst.Dst[0].Register.Index = aactx->colorOutput;
298 newInst.Dst[0].Register.WriteMask = TGSI_WRITEMASK_XYZ;
308 newInst.Dst[0].Register.File = TGSI_FILE_OUTPUT;
309 newInst.Dst[0].Register.Index = aactx->colorOutput;
310 newInst.Dst[0].Register.WriteMask = TGSI_WRITEMASK_W;
332 struct tgsi_full_dst_register *dst = &inst->Dst[i] local
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
u_pstipple.c 360 newInst.Dst[0].Register.File = TGSI_FILE_TEMPORARY;
361 newInst.Dst[0].Register.Index = pctx->texTemp;
373 newInst.Dst[0].Register.File = TGSI_FILE_TEMPORARY;
374 newInst.Dst[0].Register.Index = pctx->texTemp;
  /external/opencv3/modules/imgproc/src/opencl/
filterSep_singlePass.cl 107 __global uchar* Dst, int dst_step, int dst_offset, int dst_rows, int dst_cols, float delta)
196 storepix(convertToDstT(sum + (WT)(delta)), Dst + mad24(y + liy, dst_step, mad24(x, DSTSIZE, dst_offset)));
  /external/eigen/Eigen/src/Core/
GeneralProduct.h 271 struct set { template<typename Dst, typename Src> void operator()(const Dst& dst, const Src& src) const { dst.const_cast_derived() = src; } };
272 struct add { template<typename Dst, typename Src> void operator()(const Dst& dst, const Src& src) const { dst.const_cast_derived() += src; } };
273 struct sub { template<typename Dst, typename Src> void operator()(const Dst& dst, const Src& src) const { dst.const_cast_derived() -= src; } }
    [all...]
  /external/llvm/lib/Transforms/Utils/
BuildLibCalls.cpp 112 Value *llvm::EmitStrCpy(Value *Dst, Value *Src, IRBuilder<> &B,
127 B.CreateCall(StrCpy, {CastToCStr(Dst, B), CastToCStr(Src, B)}, Name);
135 Value *llvm::EmitStrNCpy(Value *Dst, Value *Src, Value *Len, IRBuilder<> &B,
152 StrNCpy, {CastToCStr(Dst, B), CastToCStr(Src, B), Len}, "strncpy");
159 /// This expects that the Len and ObjSize have type 'intptr_t' and Dst/Src
161 Value *llvm::EmitMemCpyChk(Value *Dst, Value *Src, Value *Len, Value *ObjSize,
176 Dst = CastToCStr(Dst, B);
178 CallInst *CI = B.CreateCall(MemCpy, {Dst, Src, Len, ObjSize});
SimplifyLibCalls.cpp 205 Value *Dst = CI->getArgOperand(0);
216 return Dst;
218 return emitStrLenMemCpy(Src, Dst, Len, B);
221 Value *LibCallSimplifier::emitStrLenMemCpy(Value *Src, Value *Dst, uint64_t Len,
225 Value *DstLen = EmitStrLen(Dst, B, DL, TLI);
232 Value *CpyDst = B.CreateGEP(B.getInt8Ty(), Dst, DstLen, "endptr");
239 return Dst;
253 Value *Dst = CI->getArgOperand(0);
273 return Dst;
281 return emitStrLenMemCpy(Src, Dst, SrcLen, B)
    [all...]
  /frameworks/av/services/audiopolicy/utilities/convert/
convert.h 193 typedef std::vector<DstElem> Dst;
195 static inline bool run(Src &src, Dst &dst)
198 dst.clear();
199 dst.reserve(src.size());
205 dst.push_back(dstElem);
  /external/clang/lib/StaticAnalyzer/Frontend/
AnalysisConsumer.cpp 735 void AddEdge(ExplodedNode *Src, ExplodedNode *Dst) override;
751 void UbigraphViz::AddEdge(ExplodedNode *Src, ExplodedNode *Dst) {
753 assert (Src != Dst && "Self-edges are not allowed.");
766 // Lookup the Dst.
767 VMap::iterator DstI= M.find(Dst);
771 M[Dst] = DstID = Cntr++;
  /external/llvm/lib/Target/Mips/
MipsSEFrameLowering.cpp 158 unsigned Dst = I->getOperand(0).getReg(), FI = I->getOperand(1).getIndex();
161 BuildMI(MBB, I, I->getDebugLoc(), TII.get(TargetOpcode::COPY), Dst)
192 unsigned Dst = I->getOperand(0).getReg(), FI = I->getOperand(1).getIndex();
193 unsigned Lo = RegInfo.getSubReg(Dst, Mips::sub_lo);
194 unsigned Hi = RegInfo.getSubReg(Dst, Mips::sub_hi);
244 unsigned Dst = I->getOperand(0).getReg(), Src = I->getOperand(1).getReg();
245 unsigned VRegSize = RegInfo.getMinimalPhysRegClass(Dst)->getSize() / 2;
250 unsigned DstLo = RegInfo.getSubReg(Dst, Mips::sub_lo);
251 unsigned DstHi = RegInfo.getSubReg(Dst, Mips::sub_hi);
    [all...]
  /external/llvm/lib/Target/AMDGPU/
SIInsertWaits.cpp 385 static void increaseCounters(Counters &Dst, const Counters &Src) {
388 Dst.Array[i] = std::max(Dst.Array[i], Src.Array[i]);
  /external/skia/include/core/
SkTypes.h 30 * It is undefined behavior to call memcpy() with null dst or src, even if len is 0.
32 * memcpy(dst, src, 0);
40 static inline void* sk_careful_memcpy(void* dst, const void* src, size_t len) {
44 memcpy(dst,src,len);
46 return dst;
465 template <typename Dst> Dst SkTCast(const void* ptr) {
468 Dst dst; member in union:SkBudgeted::__anon22230
471 return data.dst;
    [all...]
  /external/llvm/include/llvm/Analysis/
TargetTransformInfo.h 439 int getCastInstrCost(unsigned Opcode, Type *Dst, Type *Src) const;
606 virtual int getCastInstrCost(unsigned Opcode, Type *Dst, Type *Src) = 0;
    [all...]

Completed in 3983 milliseconds

1 2 34 5 6 7 8