Home
last modified time | relevance | path

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

/freebsd-14-stable/sys/contrib/dev/acpica/components/utilities/
HDutxface.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-stable/contrib/llvm-project/clang/include/clang/Basic/
HDIdentifierTable.h996 InfoPtr; variable
1000 InfoPtr.setPointerAndInt(II, nArgs + 1); in Selector()
1007 InfoPtr.setPointerAndInt(SI, MultiArg & 0b11); in Selector()
1011 return InfoPtr.getPointer().dyn_cast<const IdentifierInfo *>(); in getAsIdentifierInfo()
1015 return InfoPtr.getPointer().get<MultiKeywordSelector *>(); in getMultiKeywordSelector()
1019 unsigned new_flags = InfoPtr.getInt(); in getIdentifierInfoFlag()
1023 if (InfoPtr.getPointer().is<MultiKeywordSelector *>()) in getIdentifierInfoFlag()
1037 InfoPtr.setFromOpaqueValue(reinterpret_cast<void *>(V)); in Selector()
1042 return InfoPtr.getOpaqueValue() == RHS.InfoPtr.getOpaqueValue();
1045 return InfoPtr.getOpaqueValue() != RHS.InfoPtr.getOpaqueValue();
[all …]
/freebsd-14-stable/contrib/llvm-project/llvm/include/llvm/Support/
HDOnDiskHashTable.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;
391 InfoPtr->ReadKey((const unsigned char *const)Items, L.first);
394 if (!InfoPtr->EqualKey(X, IKey)) {
400 return iterator(X, Items + L.first, L.second, InfoPtr);
/freebsd-14-stable/contrib/llvm-project/clang/lib/Sema/
HDIdentifierResolver.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-stable/contrib/llvm-project/clang/lib/Analysis/
HDThreadSafety.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-stable/contrib/llvm-project/clang/include/clang/AST/
HDDeclarationName.h366 : Ptr(reinterpret_cast<uintptr_t>(Sel.InfoPtr.getOpaqueValue())) {} in DeclarationName()
/freebsd-14-stable/contrib/llvm-project/clang/lib/CodeGen/
HDCGExpr.cpp3601 auto *InfoPtr = new llvm::GlobalVariable( in EmitCheck() local
3606 InfoPtr->setUnnamedAddr(llvm::GlobalValue::UnnamedAddr::Global); in EmitCheck()
3607 CGM.getSanitizerMetadata()->disableSanitizerForGlobal(InfoPtr); in EmitCheck()
3608 Args.push_back(InfoPtr); in EmitCheck()
3664 auto *InfoPtr = in EmitCfiSlowPathCheck() local
3667 InfoPtr->setUnnamedAddr(llvm::GlobalValue::UnnamedAddr::Global); in EmitCfiSlowPathCheck()
3668 CGM.getSanitizerMetadata()->disableSanitizerForGlobal(InfoPtr); in EmitCfiSlowPathCheck()
3674 CheckCall = Builder.CreateCall(SlowPathFn, {TypeId, Ptr, InfoPtr}); in EmitCfiSlowPathCheck()