/external/llvm/include/llvm/ADT/ |
D | PointerIntPair.h | 46 class PointerIntPair { 50 PointerIntPair() : Value(0) {} in PointerIntPair() function 51 PointerIntPair(PointerTy PtrVal, IntType IntVal) { in PointerIntPair() function 54 explicit PointerIntPair(PointerTy PtrVal) { initWithPointer(PtrVal); } in PointerIntPair() function 80 return const_cast<PointerIntPair *>(this)->getAddrOfPointer(); in getAddrOfPointer() 95 static PointerIntPair getFromOpaqueValue(void *V) { in getFromOpaqueValue() 96 PointerIntPair P; in getFromOpaqueValue() 103 static PointerIntPair getFromOpaqueValue(const void *V) { in getFromOpaqueValue() 108 bool operator==(const PointerIntPair &RHS) const { 111 bool operator!=(const PointerIntPair &RHS) const { [all …]
|
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/ |
D | PointerIntPair.h | 46 class PointerIntPair { 50 PointerIntPair() : Value(0) {} in PointerIntPair() function 51 PointerIntPair(PointerTy PtrVal, IntType IntVal) { in PointerIntPair() function 54 explicit PointerIntPair(PointerTy PtrVal) { initWithPointer(PtrVal); } in PointerIntPair() function 80 return const_cast<PointerIntPair *>(this)->getAddrOfPointer(); in getAddrOfPointer() 95 static PointerIntPair getFromOpaqueValue(void *V) { in getFromOpaqueValue() 96 PointerIntPair P; in getFromOpaqueValue() 103 static PointerIntPair getFromOpaqueValue(const void *V) { in getFromOpaqueValue() 108 bool operator==(const PointerIntPair &RHS) const { 111 bool operator!=(const PointerIntPair &RHS) const { [all …]
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/ |
D | PointerIntPair.h | 45 class PointerIntPair { 51 constexpr PointerIntPair() = default; 53 PointerIntPair(PointerTy PtrVal, IntType IntVal) { in PointerIntPair() function 57 explicit PointerIntPair(PointerTy PtrVal) { initWithPointer(PtrVal); } in PointerIntPair() function 81 return const_cast<PointerIntPair *>(this)->getAddrOfPointer(); in getAddrOfPointer() 97 static PointerIntPair getFromOpaqueValue(void *V) { in getFromOpaqueValue() 98 PointerIntPair P; in getFromOpaqueValue() 105 static PointerIntPair getFromOpaqueValue(const void *V) { in getFromOpaqueValue() 110 bool operator==(const PointerIntPair &RHS) const { 114 bool operator!=(const PointerIntPair &RHS) const { [all …]
|
D | ilist_node_base.h | 36 PointerIntPair<ilist_node_base *, 1> PrevAndSentinel;
|
/external/llvm-project/llvm/include/llvm/ADT/ |
D | PointerIntPair.h | 45 class PointerIntPair { 51 constexpr PointerIntPair() = default; 53 PointerIntPair(PointerTy PtrVal, IntType IntVal) { in PointerIntPair() function 57 explicit PointerIntPair(PointerTy PtrVal) { initWithPointer(PtrVal); } in PointerIntPair() function 81 return const_cast<PointerIntPair *>(this)->getAddrOfPointer(); in getAddrOfPointer() 97 static PointerIntPair getFromOpaqueValue(void *V) { in getFromOpaqueValue() 98 PointerIntPair P; in getFromOpaqueValue() 105 static PointerIntPair getFromOpaqueValue(const void *V) { in getFromOpaqueValue() 110 bool operator==(const PointerIntPair &RHS) const { 114 bool operator!=(const PointerIntPair &RHS) const { [all …]
|
D | ilist_node_base.h | 36 PointerIntPair<ilist_node_base *, 1> PrevAndSentinel;
|
/external/llvm-project/llvm/lib/DWARFLinker/ |
D | DWARFLinkerDeclContext.cpp | 43 PointerIntPair<DeclContext *, 1> DeclContextTree::getChildDeclContext( in getChildDeclContext() 55 return PointerIntPair<DeclContext *, 1>(nullptr); in getChildDeclContext() 59 return PointerIntPair<DeclContext *, 1>(&Context); in getChildDeclContext() 65 return PointerIntPair<DeclContext *, 1>(nullptr); in getChildDeclContext() 79 return PointerIntPair<DeclContext *, 1>(nullptr); in getChildDeclContext() 108 return PointerIntPair<DeclContext *, 1>(nullptr); in getChildDeclContext() 162 return PointerIntPair<DeclContext *, 1>(nullptr); in getChildDeclContext() 198 return PointerIntPair<DeclContext *, 1>(*ContextIter, /* Invalid= */ 1); in getChildDeclContext() 208 return PointerIntPair<DeclContext *, 1>(*ContextIter, /* Invalid= */ 1); in getChildDeclContext() 210 return PointerIntPair<DeclContext *, 1>(*ContextIter); in getChildDeclContext()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/DWARFLinker/ |
D | DWARFLinkerDeclContext.cpp | 43 PointerIntPair<DeclContext *, 1> DeclContextTree::getChildDeclContext( in getChildDeclContext() 55 return PointerIntPair<DeclContext *, 1>(nullptr); in getChildDeclContext() 59 return PointerIntPair<DeclContext *, 1>(&Context); in getChildDeclContext() 65 return PointerIntPair<DeclContext *, 1>(nullptr); in getChildDeclContext() 79 return PointerIntPair<DeclContext *, 1>(nullptr); in getChildDeclContext() 104 return PointerIntPair<DeclContext *, 1>(nullptr); in getChildDeclContext() 158 return PointerIntPair<DeclContext *, 1>(nullptr); in getChildDeclContext() 194 return PointerIntPair<DeclContext *, 1>(*ContextIter, /* Invalid= */ 1); in getChildDeclContext() 204 return PointerIntPair<DeclContext *, 1>(*ContextIter, /* Invalid= */ 1); in getChildDeclContext() 206 return PointerIntPair<DeclContext *, 1>(*ContextIter); in getChildDeclContext()
|
/external/llvm-project/llvm/unittests/ADT/ |
D | PointerIntPairTest.cpp | 22 PointerIntPair<S *, 2> Pair(&s, 1U); in TEST() 49 PointerIntPair<S *, 2, E> Pair2(&s, E::Case1); in TEST() 65 static_assert(std::is_trivially_copyable<PointerIntPair<S *, 2, E>>::value, in TEST() 70 PointerIntPair<float *, 2> Pair; in TEST() 92 PointerIntPair<Fixnum31, 1, bool, FixnumPointerTraits> pair; in TEST() 105 PointerIntPair<Fixnum31, 1, bool, FixnumPointerTraits>>::value, in TEST()
|
/external/llvm/unittests/ADT/ |
D | PointerIntPairTest.cpp | 23 PointerIntPair<S *, 2> Pair(&s, 1U); in TEST() 50 PointerIntPair<S *, 2, E> Pair2(&s, E::Case1); in TEST() 68 PointerIntPair<float *, 2> Pair; in TEST() 90 PointerIntPair<Fixnum31, 1, bool, FixnumPointerTraits> pair; in TEST()
|
/external/clang/include/clang/Sema/ |
D | ObjCMethodList.h | 29 llvm::PointerIntPair<ObjCMethodDecl *, 1> MethodAndHasMoreThanOneDecl; 31 llvm::PointerIntPair<ObjCMethodList *, 2> NextAndExtraBits;
|
D | ScopeInfo.h | 206 typedef llvm::PointerIntPair<const NamedDecl *, 1, bool> BaseInfoTy; 282 llvm::PointerIntPair<const Expr *, 1, bool> Rep; 433 llvm::PointerIntPair<VarDecl*, 2> VarAndNestedAndThis; 438 llvm::PointerIntPair<void *, 2, CaptureKind> InitExprAndCaptureKind;
|
/external/llvm-project/clang/include/clang/Sema/ |
D | ObjCMethodList.h | 28 llvm::PointerIntPair<ObjCMethodDecl *, 1> MethodAndHasMoreThanOneDecl; 30 llvm::PointerIntPair<ObjCMethodList *, 2> NextAndExtraBits;
|
/external/llvm-project/debuginfo-tests/llvm-prettyprinters/gdb/ |
D | llvm-support.cpp | 28 llvm::PointerIntPair<int *, 1> PointerIntPair(IntPtr, 1); variable
|
/external/llvm-project/mlir/include/mlir/Analysis/ |
D | CallGraph.h | 81 explicit Edge(llvm::PointerIntPair<CallGraphNode *, 2, Kind> targetAndKind) in Edge() 85 llvm::PointerIntPair<CallGraphNode *, 2, Kind> targetAndKind; 121 DenseMapInfo<llvm::PointerIntPair<CallGraphNode *, 2, Edge::Kind>>;
|
/external/swiftshader/third_party/llvm-subzero/include/llvm/IR/ |
D | Use.h | 66 typedef PointerIntPair<User *, 1, unsigned> UserRef; 118 PointerIntPair<Use **, 2, PrevPtrTag> Prev;
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/ |
D | Use.h | 77 using UserRef = PointerIntPair<User *, 1, unsigned, UserRefPointerTraits>; 143 PointerIntPair<Use **, 2, PrevPtrTag, PrevPointerTraits> Prev;
|
/external/llvm/include/llvm/IR/ |
D | Use.h | 74 typedef PointerIntPair<User *, 1, unsigned> UserRef; 128 PointerIntPair<Use **, 2, PrevPtrTag> Prev;
|
/external/llvm/include/llvm/Analysis/ |
D | PtrUseVisitor.h | 101 PointerIntPair<Instruction *, 1, bool> AbortedInfo, EscapedInfo; 118 typedef PointerIntPair<Use *, 1, bool> UseAndIsOffsetKnownPair;
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/ |
D | PtrUseVisitor.h | 114 PointerIntPair<Instruction *, 1, bool> AbortedInfo, EscapedInfo; 131 using UseAndIsOffsetKnownPair = PointerIntPair<Use *, 1, bool>;
|
/external/llvm-project/llvm/include/llvm/Analysis/ |
D | PtrUseVisitor.h | 113 PointerIntPair<Instruction *, 1, bool> AbortedInfo, EscapedInfo; 130 using UseAndIsOffsetKnownPair = PointerIntPair<Use *, 1, bool>;
|
/external/llvm/test/Transforms/JumpThreading/ |
D | lvi-load.ll | 6 %"struct.llvm::PointerIntPair<llvm::Use**,2u,llvm::Use::PrevPtrTag,llvm::PointerLikeTypeTraits<llvm… 8 … type { %"struct.llvm::Value"*, %"struct.llvm::Use"*, %"struct.llvm::PointerIntPair<llvm::Use**,2u…
|
/external/llvm-project/llvm/test/Transforms/JumpThreading/ |
D | lvi-load.ll | 6 %"struct.llvm::PointerIntPair<llvm::Use**,2u,llvm::Use::PrevPtrTag,llvm::PointerLikeTypeTraits<llvm… 8 … type { %"struct.llvm::Value"*, %"struct.llvm::Use"*, %"struct.llvm::PointerIntPair<llvm::Use**,2u…
|
/external/llvm-project/clang/include/clang/AST/ |
D | DeclContextInternals.h | 40 using DeclsAndHasExternalTy = llvm::PointerIntPair<DeclsTy *, 1, bool>; 247 llvm::PointerIntPair<StoredDeclsMap*, 1> Previous;
|
/external/clang/include/clang/AST/ |
D | DeclContextInternals.h | 39 typedef llvm::PointerIntPair<DeclsTy *, 1, bool> DeclsAndHasExternalTy; 248 llvm::PointerIntPair<StoredDeclsMap*, 1> Previous;
|