Home
last modified time | relevance | path

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

/openbsd/gnu/llvm/llvm/include/llvm/Support/
H A DPointerLikeTypeTraits.h58 static inline T *getFromVoidPointer(void *P) { return static_cast<T *>(P); }
66 static inline void *getFromVoidPointer(void *P) { return P; }
85 static inline const T getFromVoidPointer(const void *P) {
86 return NonConst::getFromVoidPointer(const_cast<void *>(P));
98 static inline const T *getFromVoidPointer(const void *P) {
99 return NonConst::getFromVoidPointer(const_cast<void *>(P));
109 static inline uintptr_t getFromVoidPointer(void *P) {
134 static inline FunctionPointerT getFromVoidPointer(void *P) {
/openbsd/gnu/llvm/llvm/include/llvm/ADT/
H A DPointerIntPair.h107 (void)PtrTraits::getFromVoidPointer(V); in getFromOpaqueValue()
155 return PtrTraits::getFromVoidPointer( in getPointer()
217 getFromVoidPointer(void *P) {
222 getFromVoidPointer(const void *P) {
H A DPointerEmbeddedInt.h89 static inline T getFromVoidPointer(void *P) {
93 static inline T getFromVoidPointer(const void *P) {
H A DPointerUnion.h51 static inline void *getFromVoidPointer(void *P) { return P; } in getFromVoidPointer() function
235 return PointerLikeTypeTraits<To>::getFromVoidPointer(F.Val.getPointer());
270 static inline PointerUnion<PTs...> getFromVoidPointer(void *P) {
H A DPointerSumType.h127 return HelperT::template Lookup<N>::TraitsT::getFromVoidPointer(P); in get()
133 return HelperT::template Lookup<N>::TraitsT::getFromVoidPointer( in cast()
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; } in getFromVoidPointer() function
/openbsd/gnu/llvm/clang/include/clang/CodeGen/
H A DConstantInitFuture.h37 static inline T getFromVoidPointer(void *p) {return static_cast<T>(p);}
98 static inline T getFromVoidPointer(void *p) {
/openbsd/gnu/llvm/clang/include/clang/Sema/
H A DOwnership.h81 return Traits::getFromVoidPointer(Ptr); in get()
126 static inline clang::OpaquePtr<T> getFromVoidPointer(void *P) {
213 return PtrTraits::getFromVoidPointer(VP);
/openbsd/gnu/llvm/llvm/include/llvm/CodeGen/
H A DReachingDefAnalysis.h59 static inline ReachingDef getFromVoidPointer(void *P) {
63 static inline ReachingDef getFromVoidPointer(const void *P) {
/openbsd/gnu/llvm/clang/include/clang/AST/
H A DTemplateName.h362 static TemplateName getFromVoidPointer(void *Ptr) { in getFromVoidPointer() function
601 static inline clang::TemplateName getFromVoidPointer(void *Ptr) {
602 return clang::TemplateName::getFromVoidPointer(Ptr);
H A DTemplateBase.h43 static inline clang::Expr *getFromVoidPointer(void *P) {
295 return TemplateName::getFromVoidPointer(TemplateArg.Name);
304 return TemplateName::getFromVoidPointer(TemplateArg.Name);
H A DDeclGroup.h146 static inline clang::DeclGroupRef getFromVoidPointer(void *P) {
H A DAPValue.h98 static clang::TypeInfoLValue getFromVoidPointer(void *P) {
110 static clang::DynamicAllocLValue getFromVoidPointer(void *P) {
H A DRedeclarable.h418 static inline clang::CanonicalDeclPtr<decl_type> getFromVoidPointer(void *P) {
H A DExternalASTSource.h474 static Ptr getFromVoidPointer(void *P) { return Ptr::getFromOpaqueValue(P); }
H A DCanonicalType.h383 static clang::CanQual<T> getFromVoidPointer(void *P) {
H A DDeclarationName.h926 static inline clang::DeclarationName getFromVoidPointer(void *P) {
H A DDeclBase.h1272 static inline ::clang::NamedDecl *getFromVoidPointer(void *P) {
H A DType.h87 static inline ::clang::Type *getFromVoidPointer(void *P) {
98 static inline ::clang::ExtQuals *getFromVoidPointer(void *P) {
1410 static inline clang::QualType getFromVoidPointer(void *P) {
/openbsd/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/gnu/llvm/llvm/lib/Analysis/
H A DGlobalsModRef.cpp78 static inline AlignedMap *getFromVoidPointer(void *P) { in getFromVoidPointer() function