Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Dcombined.h1248 auto *Ptr32 = reinterpret_cast<u32 *>(Ptr); in storePrimaryAllocationStackMaybe() local
1249 Ptr32[MemTagAllocationTraceIndex] = collectStackTrace(); in storePrimaryAllocationStackMaybe()
1250 Ptr32[MemTagAllocationTidIndex] = getThreadID(); in storePrimaryAllocationStackMaybe()
1285 auto *Ptr32 = reinterpret_cast<u32 *>(Ptr); in storeSecondaryAllocationStackMaybe() local
1286 Ptr32[MemTagAllocationTraceIndex] = Trace; in storeSecondaryAllocationStackMaybe()
1287 Ptr32[MemTagAllocationTidIndex] = Tid; in storeSecondaryAllocationStackMaybe()
1297 auto *Ptr32 = reinterpret_cast<u32 *>(Ptr); in storeDeallocationStackMaybe() local
1298 u32 AllocationTrace = Ptr32[MemTagAllocationTraceIndex]; in storeDeallocationStackMaybe()
1299 u32 AllocationTid = Ptr32[MemTagAllocationTidIndex]; in storeDeallocationStackMaybe()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64TargetMachine.cpp278 std::string Ptr32 = TT.getEnvironment() == Triple::GNUILP32 ? "-p:32:32" : ""; in computeDataLayout() local
279 return Endian + "-m:e" + Ptr32 + in computeDataLayout()
/freebsd-14.2/contrib/llvm-project/clang/lib/AST/
H A DTypePrinter.cpp1720 case attr::Ptr32: OS << " __ptr32"; break; in printAttributedBefore()
1839 case attr::Ptr32: in printAttributedAfter()
H A DType.cpp3900 case attr::Ptr32: in isMSTypeSpec()
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DSemaType.cpp7445 if (Attrs[attr::Ptr32] && Attrs[attr::Ptr64]) { in handleMSPointerTypeQualifierAttr()
7478 } else if (PtrWidth == 64 && Attrs[attr::Ptr32]) { in handleMSPointerTypeQualifierAttr()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Basic/
H A DAttr.td3849 def Ptr32 : TypeAttr {