Home
last modified time | relevance | path

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

/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/
HDIdentifierTable.h703 uintptr_t InfoPtr = 0; variable
706 InfoPtr = reinterpret_cast<uintptr_t>(II); in Selector()
707 assert((InfoPtr & ArgFlags) == 0 &&"Insufficiently aligned IdentifierInfo"); in Selector()
709 InfoPtr |= nArgs+1; in Selector()
713 InfoPtr = reinterpret_cast<uintptr_t>(SI); in Selector()
714 assert((InfoPtr & ArgFlags) == 0 &&"Insufficiently aligned IdentifierInfo"); in Selector()
715 InfoPtr |= MultiArg; in Selector()
720 return reinterpret_cast<IdentifierInfo *>(InfoPtr & ~ArgFlags); in getAsIdentifierInfo()
725 return reinterpret_cast<MultiKeywordSelector *>(InfoPtr & ~ArgFlags); in getMultiKeywordSelector()
729 return InfoPtr & ArgFlags; in getIdentifierInfoFlag()
[all …]
/freebsd-11-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-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
HDOnDiskHashTable.h343 iterator find(const external_key_type &EKey, Info *InfoPtr = nullptr) {
346 return find_hashed(IKey, KeyHash, InfoPtr);
351 Info *InfoPtr = nullptr) {
354 if (!InfoPtr)
355 InfoPtr = &InfoObj;
388 InfoPtr->ReadKey((const unsigned char *const)Items, L.first);
391 if (!InfoPtr->EqualKey(X, IKey)) {
397 return iterator(X, Items + L.first, L.second, InfoPtr);
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
HDIdentifierResolver.cpp417 void *InfoPtr = D->getDeclName().getFETokenInfo(); in incrementSlowCase() local
418 assert(!isDeclPtr(InfoPtr) && "Decl with wrong id ?"); in incrementSlowCase()
419 IdDeclInfo *Info = toIdDeclInfo(InfoPtr); in incrementSlowCase()
/freebsd-11-stable/contrib/llvm-project/clang/lib/Analysis/
HDThreadSafety.cpp1077 std::unique_ptr<BeforeInfo> &InfoPtr = BMap[Vd]; in insertAttrExprs() local
1078 if (!InfoPtr) in insertAttrExprs()
1079 InfoPtr.reset(new BeforeInfo()); in insertAttrExprs()
1080 Info = InfoPtr.get(); in insertAttrExprs()
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/
HDDeclarationName.h356 DeclarationName(Selector Sel) : Ptr(Sel.InfoPtr) {} in DeclarationName()
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/
HDIdentifierTable.cpp470 if (InfoPtr == 0) in getAsString()
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
HDCGExpr.cpp3091 auto *InfoPtr = in EmitCheck() local
3094 InfoPtr->setUnnamedAddr(llvm::GlobalValue::UnnamedAddr::Global); in EmitCheck()
3095 CGM.getSanitizerMetadata()->disableSanitizerForGlobal(InfoPtr); in EmitCheck()
3096 Args.push_back(Builder.CreateBitCast(InfoPtr, Int8PtrTy)); in EmitCheck()
3152 auto *InfoPtr = in EmitCfiSlowPathCheck() local
3155 InfoPtr->setUnnamedAddr(llvm::GlobalValue::UnnamedAddr::Global); in EmitCfiSlowPathCheck()
3156 CGM.getSanitizerMetadata()->disableSanitizerForGlobal(InfoPtr); in EmitCfiSlowPathCheck()
3163 SlowPathFn, {TypeId, Ptr, Builder.CreateBitCast(InfoPtr, Int8PtrTy)}); in EmitCfiSlowPathCheck()