HomeSort by relevance Sort by last modified time
    Searched full:ptrty (Results 1 - 25 of 56) sorted by null

1 2 3

  /external/clang/include/clang/Sema/
Ownership.h 37 /// \tparam PtrTy Either a pointer type like 'T*' or a type that behaves like
41 /// doesn't know about but that Sema or another client does. The PtrTy
44 template <class PtrTy>
49 typedef llvm::PointerLikeTypeTraits<PtrTy> Traits;
54 static OpaquePtr make(PtrTy P) { OpaquePtr OP; OP.set(P); return OP; }
66 /// from PtrTy to PtrT.
74 PtrTy get() const {
78 void set(PtrTy P) {
143 template<class PtrTy,
144 bool CompressInvalid = IsResultPtrLowBitFree<PtrTy>::value
    [all...]
  /external/clang/test/Index/
comment-cplus-template-decls.cpp 72 // CHECK: <Declaration>template &lt;class PtrTy&gt; class OpaquePtr {}</Declaration>
75 /// \tparam PtrTy Either a pointer type like 'T*' or a type that behaves like
77 template <class PtrTy>
  /external/llvm/lib/Transforms/Instrumentation/
ThreadSanitizer.cpp 164 Type *PtrTy = Ty->getPointerTo();
168 M.getOrInsertFunction(AtomicLoadName, Ty, PtrTy, OrdTy, nullptr));
173 AtomicStoreName, IRB.getVoidTy(), PtrTy, Ty, OrdTy, nullptr));
197 M.getOrInsertFunction(RMWName, Ty, PtrTy, Ty, OrdTy, nullptr));
203 AtomicCASName, Ty, PtrTy, Ty, Ty, OrdTy, OrdTy, nullptr));
510 Type *PtrTy = Ty->getPointerTo();
511 Value *Args[] = {IRB.CreatePointerCast(Addr, PtrTy),
524 Type *PtrTy = Ty->getPointerTo();
525 Value *Args[] = {IRB.CreatePointerCast(Addr, PtrTy),
541 Type *PtrTy = Ty->getPointerTo()
    [all...]
  /external/llvm/lib/Target/R600/
SITypeRewriter.cpp 82 Type *PtrTy = Ptr->getType();
83 Type *ElemTy = PtrTy->getPointerElementType();
87 PointerType::get(v4i32,PtrTy->getPointerAddressSpace()));
  /external/llvm/tools/lli/
OrcLazyJIT.h 73 template <typename PtrTy>
74 static PtrTy fromTargetAddress(orc::TargetAddress Addr) {
75 return reinterpret_cast<PtrTy>(static_cast<uintptr_t>(Addr));
  /external/clang/lib/CodeGen/
CGObjCGNU.cpp 145 llvm::PointerType *PtrTy;
    [all...]
CGOpenMPRuntime.cpp 726 auto PtrTy = llvm::PointerType::getUnqual(ITy);
732 PtrTy, // p_lower
733 PtrTy, // p_upper
734 PtrTy, // p_stride
    [all...]
ItaniumCXXABI.cpp     [all...]
CGExpr.cpp     [all...]
  /external/llvm/include/llvm/ADT/
SmallPtrSet.h 178 template<typename PtrTy>
180 typedef PointerLikeTypeTraits<PtrTy> PtrTraits;
183 typedef PtrTy value_type;
184 typedef PtrTy reference;
185 typedef PtrTy pointer;
194 const PtrTy operator*() const {
  /external/llvm/include/llvm/ExecutionEngine/Orc/
ExecutionUtils.h 160 template <typename PtrTy>
161 TargetAddress toTargetAddress(PtrTy* P) {
  /external/llvm/lib/Transforms/Scalar/
Scalarizer.cpp 65 PointerType *PtrTy;
189 PtrTy = dyn_cast<PointerType>(Ty);
190 if (PtrTy)
191 Ty = PtrTy->getElementType();
208 if (PtrTy) {
211 PointerType::get(PtrTy->getElementType()->getVectorElementType(),
212 PtrTy->getAddressSpace());
  /external/llvm/include/llvm/Bitcode/
LLVMBitCodes.h 321 FUNC_CODE_INST_STORE = 24, // STORE: [ptrty,ptr,val, align, vol]
339 FUNC_CODE_INST_CMPXCHG = 37, // CMPXCHG: [ptrty,ptr,cmp,new, align, vol,
341 FUNC_CODE_INST_ATOMICRMW = 38, // ATOMICRMW: [ptrty,ptr,val, operation,
348 FUNC_CODE_INST_STOREATOMIC = 42, // STORE: [ptrty,ptr,val, align, vol
  /external/llvm/lib/CodeGen/
StackProtector.cpp 335 PointerType *PtrTy = Type::getInt8PtrTy(RI->getContext());
342 ConstantExpr::getIntToPtr(OffsetVal, PointerType::get(PtrTy,
345 StackGuardVar = M->getOrInsertGlobal("__guard_local", PtrTy);
350 StackGuardVar = M->getOrInsertGlobal("__stack_chk_guard", PtrTy);
354 AI = B.CreateAlloca(PtrTy, nullptr, "StackGuardSlot");
  /external/llvm/unittests/IR/
ConstantsTest.cpp 334 Type *PtrTy = PointerType::get(IntTy, 0);
342 new GlobalVariable(*M, PtrTy, false, GlobalValue::ExternalLinkage, GEP);
345 auto *Global = new GlobalVariable(*M, PtrTy, false,
  /external/clang/test/Analysis/
taint-tester.c 47 int ptrty = xyPtr->y;// expected-warning + {{tainted}} local
  /external/llvm/lib/Target/X86/
X86TargetTransformInfo.h 92 unsigned getAddressComputationCost(Type *PtrTy, bool IsComplex);
  /external/clang/lib/Sema/
SemaExceptionSpec.cpp 29 if (const PointerType *PtrTy = T->getAs<PointerType>())
30 T = PtrTy->getPointeeType();
654 if (const PointerType *PtrTy = CanonicalSubT->getAs<PointerType>()) {
655 CanonicalSubT = PtrTy->getPointeeType();
673 if (const PointerType *PtrTy = CanonicalSuperT->getAs<PointerType>())
674 CanonicalSuperT = PtrTy->getPointeeType();
    [all...]
  /external/llvm/lib/IR/
DataLayout.cpp 721 uint64_t DataLayout::getIndexedOffset(Type *ptrTy,
723 Type *Ty = ptrTy;
728 TI = gep_type_begin(ptrTy, Indices);
733 Type::getInt32Ty(ptrTy->getContext()) &&
  /external/llvm/lib/Analysis/
LoopAccessAnalysis.cpp 508 const PointerType *PtrTy = cast<PointerType>(Ty);
509 if (PtrTy->getElementType()->isAggregateType()) {
539 bool IsInAddressSpaceZero = PtrTy->getAddressSpace() == 0;
558 int64_t Size = DL.getTypeAllocSize(PtrTy->getElementType());
    [all...]
  /external/llvm/lib/Target/Mips/
MipsISelLowering.cpp     [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
CStringChecker.cpp 353 QualType PtrTy = Ctx.getPointerType(Ctx.CharTy);
379 SVal BufStart = svalBuilder.evalCast(BufVal, PtrTy, FirstBuf->getType());
384 LastOffset, PtrTy);
399 BufStart = svalBuilder.evalCast(BufVal, PtrTy, SecondBuf->getType());
404 LastOffset, PtrTy);
    [all...]
GenericTaintChecker.cpp 598 if (const PointerType * PtrTy =
600 if (PtrTy->getPointeeType() == C.getASTContext().getFILEType())
  /frameworks/compile/slang/BitWriter_2_9_func/
BitcodeWriter.cpp     [all...]
  /frameworks/compile/slang/BitWriter_3_2/
BitcodeWriter.cpp     [all...]

Completed in 662 milliseconds

1 2 3