Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/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) {
/freebsd/contrib/llvm-project/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) {
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DPointerIntPair.h143 (void)PtrTraits::getFromVoidPointer(V); in getFromOpaqueValue()
191 return PtrTraits::getFromVoidPointer( in getPointer()
253 getFromVoidPointer(void *P) {
258 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 DSmallPtrSet.h292 return PtrTraits::getFromVoidPointer(const_cast<void *>(Bucket[-1]));
295 return PtrTraits::getFromVoidPointer(const_cast<void*>(*Bucket));
383 PtrType Ptr = PtrTraits::getFromVoidPointer(const_cast<void *>(*APtr)); in remove_if()
400 PtrType Ptr = PtrTraits::getFromVoidPointer(const_cast<void *>(Value)); in remove_if()
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 DIntervalMap.h496 static inline void *getFromVoidPointer(void *P) { return P; } in getFromVoidPointer() function
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DReachingDefAnalysis.h59 static inline ReachingDef getFromVoidPointer(void *P) {
63 static inline ReachingDef getFromVoidPointer(const void *P) {
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DTemplateName.h356 static TemplateName getFromVoidPointer(void *Ptr) { in getFromVoidPointer() function
600 static inline clang::TemplateName getFromVoidPointer(void *Ptr) {
601 return clang::TemplateName::getFromVoidPointer(Ptr);
H A DTemplateBase.h43 static inline clang::Expr *getFromVoidPointer(void *P) {
345 return TemplateName::getFromVoidPointer(TemplateArg.Name);
354 return TemplateName::getFromVoidPointer(TemplateArg.Name);
H A DDeclGroup.h146 static inline clang::DeclGroupRef getFromVoidPointer(void *P) {
H A DRedeclarable.h418 static inline clang::CanonicalDeclPtr<decl_type> getFromVoidPointer(void *P) {
H A DExternalASTSource.h504 static Ptr getFromVoidPointer(void *P) { return Ptr::getFromOpaqueValue(P); }
H A DCanonicalType.h383 static clang::CanQual<T> getFromVoidPointer(void *P) {
H A DDeclBase.h1306 static inline ::clang::NamedDecl *getFromVoidPointer(void *P) {
H A DType.h91 static inline ::clang::Type *getFromVoidPointer(void *P) {
102 static inline ::clang::ExtQuals *getFromVoidPointer(void *P) {
1668 static inline clang::QualType getFromVoidPointer(void *P) {
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DDirectoryEntry.h199 static inline clang::DirectoryEntryRef getFromVoidPointer(void *Ptr) {
H A DIdentifierTable.h1196 static clang::Selector getFromVoidPointer(const void *P) {
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DGlobalsModRef.cpp78 static inline AlignedMap *getFromVoidPointer(void *P) { in getFromVoidPointer() function