Searched refs:getFromVoidPointer (Results 1 - 22 of 22) sorted by relevance

/openbsd-current/gnu/llvm/llvm/include/llvm/Support/
H A DPointerLikeTypeTraits.h58 static inline T *getFromVoidPointer(void *P) { return static_cast<T *>(P); } function in struct:llvm::PointerLikeTypeTraits
66 static inline void *getFromVoidPointer(void *P) { return P; } function in struct:llvm::PointerLikeTypeTraits
85 static inline const T getFromVoidPointer(const void *P) { function in struct:llvm::PointerLikeTypeTraits
86 return NonConst::getFromVoidPointer(const_cast<void *>(P));
98 static inline const T *getFromVoidPointer(const void *P) { function in struct:llvm::PointerLikeTypeTraits
99 return NonConst::getFromVoidPointer(const_cast<void *>(P));
109 static inline uintptr_t getFromVoidPointer(void *P) { function in struct:llvm::PointerLikeTypeTraits
134 static inline FunctionPointerT getFromVoidPointer(void *P) { function in struct:llvm::FunctionPointerLikeTypeTraits
/openbsd-current/gnu/llvm/clang/include/clang/CodeGen/
H A DConstantInitFuture.h37 static inline T getFromVoidPointer(void *p) {return static_cast<T>(p);} function in struct:llvm::PointerLikeTypeTraits
98 static inline T getFromVoidPointer(void *p) { function in struct:llvm::PointerLikeTypeTraits
/openbsd-current/gnu/llvm/llvm/include/llvm/ADT/
H A DPointerEmbeddedInt.h89 static inline T getFromVoidPointer(void *P) {
93 static inline T getFromVoidPointer(const void *P) {
H A DPointerIntPair.h107 (void)PtrTraits::getFromVoidPointer(V);
155 return PtrTraits::getFromVoidPointer(
217 getFromVoidPointer(void *P) {
222 getFromVoidPointer(const void *P) {
H A DPointerUnion.h51 static inline void *getFromVoidPointer(void *P) { return P; } function in class:llvm::pointer_union_detail::PointerUnionUIntTraits
235 return PointerLikeTypeTraits<To>::getFromVoidPointer(F.Val.getPointer());
270 static inline PointerUnion<PTs...> getFromVoidPointer(void *P) { function in struct:llvm::PointerLikeTypeTraits
H A DPointerSumType.h127 return HelperT::template Lookup<N>::TraitsT::getFromVoidPointer(P);
133 return HelperT::template Lookup<N>::TraitsT::getFromVoidPointer(
H A DSmallPtrSet.h288 return PtrTraits::getFromVoidPointer(const_cast<void *>(Bucket[-1]));
291 return PtrTraits::getFromVoidPointer(const_cast<void*>(*Bucket));
H A DIntervalMap.h496 static inline void *getFromVoidPointer(void *P) { return P; } function in struct:llvm::IntervalMapImpl::NodeRef::CacheAlignedPointerTraits
/openbsd-current/gnu/llvm/clang/include/clang/Sema/
H A DOwnership.h81 return Traits::getFromVoidPointer(Ptr);
126 static inline clang::OpaquePtr<T> getFromVoidPointer(void *P) { function in struct:llvm::PointerLikeTypeTraits
213 return PtrTraits::getFromVoidPointer(VP);
/openbsd-current/gnu/llvm/clang/include/clang/AST/
H A DTemplateName.h362 static TemplateName getFromVoidPointer(void *Ptr) { function in class:clang::TemplateName
601 static inline clang::TemplateName getFromVoidPointer(void *Ptr) { function in struct:llvm::PointerLikeTypeTraits
602 return clang::TemplateName::getFromVoidPointer(Ptr);
H A DTemplateBase.h43 static inline clang::Expr *getFromVoidPointer(void *P) { function in struct:llvm::PointerLikeTypeTraits
295 return TemplateName::getFromVoidPointer(TemplateArg.Name);
304 return TemplateName::getFromVoidPointer(TemplateArg.Name);
H A DDeclGroup.h146 static inline clang::DeclGroupRef getFromVoidPointer(void *P) { function in struct:llvm::PointerLikeTypeTraits
H A DRedeclarable.h418 static inline clang::CanonicalDeclPtr<decl_type> getFromVoidPointer(void *P) { function in struct:llvm::PointerLikeTypeTraits
H A DExternalASTSource.h474 static Ptr getFromVoidPointer(void *P) { return Ptr::getFromOpaqueValue(P); } function in struct:llvm::PointerLikeTypeTraits
H A DAPValue.h98 static clang::TypeInfoLValue getFromVoidPointer(void *P) { function in struct:llvm::PointerLikeTypeTraits
110 static clang::DynamicAllocLValue getFromVoidPointer(void *P) { function in struct:llvm::PointerLikeTypeTraits
H A DCanonicalType.h383 static clang::CanQual<T> getFromVoidPointer(void *P) { function in struct:llvm::PointerLikeTypeTraits
H A DDeclarationName.h926 static inline clang::DeclarationName getFromVoidPointer(void *P) { function in struct:llvm::PointerLikeTypeTraits
H A DType.h87 static inline ::clang::Type *getFromVoidPointer(void *P) { function in struct:llvm::PointerLikeTypeTraits
98 static inline ::clang::ExtQuals *getFromVoidPointer(void *P) { function in struct:llvm::PointerLikeTypeTraits
1410 static inline clang::QualType getFromVoidPointer(void *P) { function in struct:llvm::PointerLikeTypeTraits
H A DDeclBase.h1272 static inline ::clang::NamedDecl *getFromVoidPointer(void *P) { function in struct:llvm::PointerLikeTypeTraits
/openbsd-current/gnu/llvm/llvm/include/llvm/CodeGen/
H A DReachingDefAnalysis.h59 static inline ReachingDef getFromVoidPointer(void *P) { function in struct:llvm::PointerLikeTypeTraits
63 static inline ReachingDef getFromVoidPointer(const void *P) { function in struct:llvm::PointerLikeTypeTraits
/openbsd-current/gnu/llvm/clang/include/clang/Basic/
H A DIdentifierTable.h1040 static clang::Selector getFromVoidPointer(const void *P) {
1055 static clang::IdentifierInfo *getFromVoidPointer(void *P) {
1068 static const clang::IdentifierInfo *getFromVoidPointer(const void *P) {
/openbsd-current/gnu/llvm/llvm/lib/Analysis/
H A DGlobalsModRef.cpp78 static inline AlignedMap *getFromVoidPointer(void *P) { function in struct:GlobalsAAResult::FunctionInfo::AlignedMapPointerTraits

Completed in 428 milliseconds