Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Basic/
H A DIdentifierTable.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 …]
/netbsd-src/sys/external/bsd/acpica/dist/utilities/
H A Dutxface.c148 ACPI_SYSTEM_INFO *InfoPtr; in ACPI_EXPORT_SYMBOL() local
174 InfoPtr = (ACPI_SYSTEM_INFO *) OutBuffer->Pointer; in ACPI_EXPORT_SYMBOL()
175 InfoPtr->AcpiCaVersion = ACPI_CA_VERSION; in ACPI_EXPORT_SYMBOL()
179 InfoPtr->Flags = ACPI_SYS_MODE_ACPI; in ACPI_EXPORT_SYMBOL()
185 InfoPtr->TimerResolution = 24; in ACPI_EXPORT_SYMBOL()
189 InfoPtr->TimerResolution = 32; in ACPI_EXPORT_SYMBOL()
194 InfoPtr->Reserved1 = 0; in ACPI_EXPORT_SYMBOL()
195 InfoPtr->Reserved2 = 0; in ACPI_EXPORT_SYMBOL()
199 InfoPtr->DebugLayer = AcpiDbgLayer; in ACPI_EXPORT_SYMBOL()
200 InfoPtr->DebugLevel = AcpiDbgLevel; in ACPI_EXPORT_SYMBOL()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Support/
H A DOnDiskHashTable.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);
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DIdentifierResolver.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()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Analysis/
H A DThreadSafety.cpp1075 std::unique_ptr<BeforeInfo> &InfoPtr = BMap[Vd]; in insertAttrExprs() local
1076 if (!InfoPtr) in insertAttrExprs()
1077 InfoPtr.reset(new BeforeInfo()); in insertAttrExprs()
1078 Info = InfoPtr.get(); in insertAttrExprs()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Basic/
H A DIdentifierTable.cpp515 if (InfoPtr == 0) in getAsString()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DDeclarationName.h356 DeclarationName(Selector Sel) : Ptr(Sel.InfoPtr) {} in DeclarationName()
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCGExpr.cpp3268 auto *InfoPtr = in EmitCheck() local
3271 InfoPtr->setUnnamedAddr(llvm::GlobalValue::UnnamedAddr::Global); in EmitCheck()
3272 CGM.getSanitizerMetadata()->disableSanitizerForGlobal(InfoPtr); in EmitCheck()
3273 Args.push_back(Builder.CreateBitCast(InfoPtr, Int8PtrTy)); in EmitCheck()
3329 auto *InfoPtr = in EmitCfiSlowPathCheck() local
3332 InfoPtr->setUnnamedAddr(llvm::GlobalValue::UnnamedAddr::Global); in EmitCfiSlowPathCheck()
3333 CGM.getSanitizerMetadata()->disableSanitizerForGlobal(InfoPtr); in EmitCfiSlowPathCheck()
3340 SlowPathFn, {TypeId, Ptr, Builder.CreateBitCast(InfoPtr, Int8PtrTy)}); in EmitCfiSlowPathCheck()