Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Dcombined.h1394 auto *Ptr32 = reinterpret_cast<u32 *>(Ptr); in storePrimaryAllocationStackMaybe() local
1395 Ptr32[MemTagAllocationTraceIndex] = collectStackTrace(RB->Depot); in storePrimaryAllocationStackMaybe()
1396 Ptr32[MemTagAllocationTidIndex] = getThreadID(); in storePrimaryAllocationStackMaybe()
1434 auto *Ptr32 = reinterpret_cast<u32 *>(Ptr); in storeSecondaryAllocationStackMaybe() local
1435 Ptr32[MemTagAllocationTraceIndex] = Trace; in storeSecondaryAllocationStackMaybe()
1436 Ptr32[MemTagAllocationTidIndex] = Tid; in storeSecondaryAllocationStackMaybe()
1448 auto *Ptr32 = reinterpret_cast<u32 *>(Ptr); in storeDeallocationStackMaybe() local
1449 u32 AllocationTrace = Ptr32[MemTagAllocationTraceIndex]; in storeDeallocationStackMaybe()
1450 u32 AllocationTid = Ptr32[MemTagAllocationTidIndex]; in storeDeallocationStackMaybe()
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64TargetMachine.cpp293 std::string Ptr32 = TT.getEnvironment() == Triple::GNUILP32 ? "-p:32:32" : ""; in computeDataLayout() local
294 return Endian + "-m:e" + Ptr32 + in computeDataLayout()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DTypePrinter.cpp1826 case attr::Ptr32: OS << " __ptr32"; break; in printAttributedBefore()
1949 case attr::Ptr32: in printAttributedAfter()
H A DType.cpp4127 case attr::Ptr32: in isMSTypeSpec()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaType.cpp7028 if (Attrs[attr::Ptr32] && Attrs[attr::Ptr64]) { in handleMSPointerTypeQualifierAttr()
7061 } else if (PtrWidth == 64 && Attrs[attr::Ptr32]) { in handleMSPointerTypeQualifierAttr()
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DAttr.td4051 def Ptr32 : TypeAttr {