Home
last modified time | relevance | path

Searched refs:IsPtr (Results 1 – 6 of 6) sorted by relevance

/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/M68k/
H A DM68kCallingConv.h62 bool IsPtr = I != End && (*I)->isPointerTy(); in CC_M68k_Any_AssignToReg() local
65 IsPtr ? State.AllocateReg(AddrRegList) : State.AllocateReg(DataRegList); in CC_M68k_Any_AssignToReg()
/freebsd-14.2/contrib/llvm-project/clang/lib/AST/Interp/
H A DContext.h36 bool IsPtr; member
H A DByteCodeExprGen.cpp2871 if (IsReference || !It->second.IsPtr) in VisitDeclRefExpr()
2881 auto [Offset, IsPtr] = It->second; in VisitDeclRefExpr()
2883 if (IsPtr) in VisitDeclRefExpr()
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/DataFormatters/
H A DValueObjectPrinter.h68 bool IsPtr();
/freebsd-14.2/contrib/llvm-project/lldb/source/DataFormatters/
H A DValueObjectPrinter.cpp195 bool ValueObjectPrinter::IsPtr() { in IsPtr() function in ValueObjectPrinter
507 const bool is_ptr = IsPtr(); in ShouldPrintChildren()
595 ((IsPtr() && !m_options.m_pointer_as_array) || IsRef()); in PrintChild()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ADT/
H A DSTLExtras.h263 static constexpr bool IsPtr = std::is_pointer_v<remove_cvref_t<T>>;
265 using StorageT = std::conditional_t<IsPtr, T, std::remove_reference_t<T> *>;
266 using CastT = std::conditional_t<IsPtr, T, T &>;
273 if constexpr (IsPtr) {
307 if constexpr (IsPtr) {