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

/freebsd-11-stable/sys/contrib/dev/acpica/components/utilities/
H A Dutxface.c256 ACPI_SYSTEM_INFO *InfoPtr; local
282 InfoPtr = (ACPI_SYSTEM_INFO *) OutBuffer->Pointer;
283 InfoPtr->AcpiCaVersion = ACPI_CA_VERSION;
287 InfoPtr->Flags = ACPI_SYS_MODE_ACPI;
293 InfoPtr->TimerResolution = 24;
297 InfoPtr->TimerResolution = 32;
302 InfoPtr->Reserved1 = 0;
303 InfoPtr->Reserved2 = 0;
307 InfoPtr->DebugLayer = AcpiDbgLayer;
308 InfoPtr
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/
H A DIdentifierTable.h700 /// three bits of InfoPtr to store an IdentifierInfoFlag. Note that in any
703 uintptr_t InfoPtr = 0; member in class:clang::Selector
706 InfoPtr = reinterpret_cast<uintptr_t>(II);
707 assert((InfoPtr & ArgFlags) == 0 &&"Insufficiently aligned IdentifierInfo");
709 InfoPtr |= nArgs+1;
713 InfoPtr = reinterpret_cast<uintptr_t>(SI);
714 assert((InfoPtr & ArgFlags) == 0 &&"Insufficiently aligned IdentifierInfo");
715 InfoPtr |= MultiArg;
720 return reinterpret_cast<IdentifierInfo *>(InfoPtr & ~ArgFlags);
725 return reinterpret_cast<MultiKeywordSelector *>(InfoPtr
[all...]
/freebsd-11-stable/contrib/llvm-project/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);
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
H A DIdentifierResolver.cpp417 void *InfoPtr = D->getDeclName().getFETokenInfo(); local
418 assert(!isDeclPtr(InfoPtr) && "Decl with wrong id ?");
419 IdDeclInfo *Info = toIdDeclInfo(InfoPtr);
/freebsd-11-stable/contrib/llvm-project/clang/lib/Analysis/
H A DThreadSafety.cpp1075 // Keep InfoPtr in its own scope in case BMap is modified later and the
1077 std::unique_ptr<BeforeInfo> &InfoPtr = BMap[Vd];
1078 if (!InfoPtr)
1079 InfoPtr.reset(new BeforeInfo());
1080 Info = InfoPtr.get();
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/
H A DDeclarationName.h356 DeclarationName(Selector Sel) : Ptr(Sel.InfoPtr) {}
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/
H A DIdentifierTable.cpp470 if (InfoPtr == 0)
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGExpr.cpp3091 auto *InfoPtr = local
3094 InfoPtr->setUnnamedAddr(llvm::GlobalValue::UnnamedAddr::Global);
3095 CGM.getSanitizerMetadata()->disableSanitizerForGlobal(InfoPtr);
3096 Args.push_back(Builder.CreateBitCast(InfoPtr, Int8PtrTy));
3152 auto *InfoPtr = local
3155 InfoPtr->setUnnamedAddr(llvm::GlobalValue::UnnamedAddr::Global);
3156 CGM.getSanitizerMetadata()->disableSanitizerForGlobal(InfoPtr);
3163 SlowPathFn, {TypeId, Ptr, Builder.CreateBitCast(InfoPtr, Int8PtrTy)});

Completed in 199 milliseconds