Home
last modified time | relevance | path

Searched defs:toPointer (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DErrorOr.h223 pointer toPointer(pointer Val) { in toPointer() function
227 const_pointer toPointer(const_pointer Val) const { return Val; } in toPointer() function
229 pointer toPointer(wrap *Val) { in toPointer() function
233 const_pointer toPointer(const wrap *Val) const { return &Val->get(); } in toPointer() function
H A DError.h673 pointer toPointer(pointer Val) { return Val; } in toPointer() function
675 const_pointer toPointer(const_pointer Val) const { return Val; } in toPointer() function
677 pointer toPointer(wrap *Val) { return &Val->get(); } in toPointer() function
679 const_pointer toPointer(const wrap *Val) const { return &Val->get(); } in toPointer() function
/freebsd/contrib/llvm-project/compiler-rt/lib/orc/
H A Derror.h333 pointer toPointer(pointer Val) { return Val; } in toPointer() function
335 const_pointer toPointer(const_pointer Val) const { return Val; } in toPointer() function
337 pointer toPointer(wrap *Val) { return &Val->get(); } in toPointer() function
339 const_pointer toPointer(const wrap *Val) const { return &Val->get(); } in toPointer() function
/freebsd/contrib/llvm-project/clang/lib/AST/Interp/
H A DMemberPointer.cpp18 std::optional<Pointer> MemberPointer::toPointer(const Context &Ctx) const { in toPointer() function in clang::interp::MemberPointer