Home
last modified time | relevance | path

Searched refs:InfoPtr (Results 1 – 7 of 7) sorted by relevance

/freebsd-14.2/sys/contrib/dev/acpica/components/utilities/
H A Dutxface.c256 ACPI_SYSTEM_INFO *InfoPtr; in ACPI_EXPORT_SYMBOL() local
282 InfoPtr = (ACPI_SYSTEM_INFO *) OutBuffer->Pointer; in ACPI_EXPORT_SYMBOL()
283 InfoPtr->AcpiCaVersion = ACPI_CA_VERSION; in ACPI_EXPORT_SYMBOL()
287 InfoPtr->Flags = ACPI_SYS_MODE_ACPI; in ACPI_EXPORT_SYMBOL()
293 InfoPtr->TimerResolution = 24; in ACPI_EXPORT_SYMBOL()
297 InfoPtr->TimerResolution = 32; in ACPI_EXPORT_SYMBOL()
302 InfoPtr->Reserved1 = 0; in ACPI_EXPORT_SYMBOL()
303 InfoPtr->Reserved2 = 0; in ACPI_EXPORT_SYMBOL()
307 InfoPtr->DebugLayer = AcpiDbgLayer; in ACPI_EXPORT_SYMBOL()
308 InfoPtr->DebugLevel = AcpiDbgLevel; in ACPI_EXPORT_SYMBOL()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Basic/
H A DIdentifierTable.h970 InfoPtr; variable
974 InfoPtr.setPointerAndInt(II, nArgs + 1); in Selector()
981 InfoPtr.setPointerAndInt(SI, MultiArg & 0b11); in Selector()
985 return InfoPtr.getPointer().dyn_cast<IdentifierInfo *>(); in getAsIdentifierInfo()
989 return InfoPtr.getPointer().get<MultiKeywordSelector *>(); in getMultiKeywordSelector()
993 unsigned new_flags = InfoPtr.getInt(); in getIdentifierInfoFlag()
997 if (InfoPtr.getPointer().is<MultiKeywordSelector *>()) in getIdentifierInfoFlag()
1011 InfoPtr.setFromOpaqueValue(reinterpret_cast<void *>(V)); in Selector()
1016 return InfoPtr.getOpaqueValue() == RHS.InfoPtr.getOpaqueValue();
1019 return InfoPtr.getOpaqueValue() != RHS.InfoPtr.getOpaqueValue();
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Support/
H A DOnDiskHashTable.h344 iterator find(const external_key_type &EKey, Info *InfoPtr = nullptr) {
347 return find_hashed(IKey, KeyHash, InfoPtr);
352 Info *InfoPtr = nullptr) {
355 if (!InfoPtr)
356 InfoPtr = &InfoObj;
393 InfoPtr->ReadKey((const unsigned char *const)Items, L.first);
396 if (!InfoPtr->EqualKey(X, IKey)) {
402 return iterator(X, Items + L.first, L.second, InfoPtr);
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DIdentifierResolver.cpp431 void *InfoPtr = D->getDeclName().getFETokenInfo(); in incrementSlowCase() local
432 assert(!isDeclPtr(InfoPtr) && "Decl with wrong id ?"); in incrementSlowCase()
433 IdDeclInfo *Info = toIdDeclInfo(InfoPtr); in incrementSlowCase()
/freebsd-14.2/contrib/llvm-project/clang/lib/Analysis/
H A DThreadSafety.cpp1085 std::unique_ptr<BeforeInfo> &InfoPtr = BMap[Vd]; in insertAttrExprs() local
1086 if (!InfoPtr) in insertAttrExprs()
1087 InfoPtr.reset(new BeforeInfo()); in insertAttrExprs()
1088 Info = InfoPtr.get(); in insertAttrExprs()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/
H A DDeclarationName.h366 : Ptr(reinterpret_cast<uintptr_t>(Sel.InfoPtr.getOpaqueValue())) {} in DeclarationName()
/freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/
H A DCGExpr.cpp3591 auto *InfoPtr = new llvm::GlobalVariable( in EmitCheck() local
3596 InfoPtr->setUnnamedAddr(llvm::GlobalValue::UnnamedAddr::Global); in EmitCheck()
3597 CGM.getSanitizerMetadata()->disableSanitizerForGlobal(InfoPtr); in EmitCheck()
3598 Args.push_back(InfoPtr); in EmitCheck()
3654 auto *InfoPtr = in EmitCfiSlowPathCheck() local
3657 InfoPtr->setUnnamedAddr(llvm::GlobalValue::UnnamedAddr::Global); in EmitCfiSlowPathCheck()
3658 CGM.getSanitizerMetadata()->disableSanitizerForGlobal(InfoPtr); in EmitCfiSlowPathCheck()
3664 CheckCall = Builder.CreateCall(SlowPathFn, {TypeId, Ptr, InfoPtr}); in EmitCfiSlowPathCheck()