Home
last modified time | relevance | path

Searched refs:Primary (Results 1 – 25 of 84) sorted by relevance

1234

/openbsd-src/gnu/llvm/clang/include/clang/Frontend/
H A DChainedDiagnosticConsumer.h25 DiagnosticConsumer *Primary; variable
29 ChainedDiagnosticConsumer(std::unique_ptr<DiagnosticConsumer> Primary, in ChainedDiagnosticConsumer() argument
31 : OwningPrimary(std::move(Primary)), Primary(OwningPrimary.get()), in ChainedDiagnosticConsumer()
35 ChainedDiagnosticConsumer(DiagnosticConsumer *Primary, in ChainedDiagnosticConsumer() argument
37 : Primary(Primary), Secondary(std::move(Secondary)) {} in ChainedDiagnosticConsumer()
41 Primary->BeginSourceFile(LO, PP); in BeginSourceFile()
47 Primary->EndSourceFile(); in EndSourceFile()
52 Primary->finish(); in finish()
56 return Primary->IncludeInDiagnosticCounts(); in IncludeInDiagnosticCounts()
64 Primary->HandleDiagnostic(DiagLevel, Info); in HandleDiagnostic()
/openbsd-src/gnu/llvm/compiler-rt/lib/scudo/standalone/tests/
H A Dprimary_test.cpp143 using Primary = TestAllocator<TypeParam, scudo::DefaultSizeClassMap>; in SCUDO_TYPED_TEST() typedef
144 std::unique_ptr<Primary> Allocator(new Primary); in SCUDO_TYPED_TEST()
146 typename Primary::CacheT Cache; in SCUDO_TYPED_TEST()
151 if (!Primary::canAllocate(Size)) in SCUDO_TYPED_TEST()
153 const scudo::uptr ClassId = Primary::SizeClassMap::getClassIdBySize(Size); in SCUDO_TYPED_TEST()
186 using Primary = scudo::SizeClassAllocator64<SmallRegionsConfig>; in TEST() typedef
187 using TransferBatch = Primary::CacheT::TransferBatch; in TEST()
188 Primary Allocator; in TEST()
190 typename Primary::CacheT Cache; in TEST()
196 const scudo::uptr ClassId = Primary::SizeClassMap::LargestClassId; in TEST()
[all …]
H A Dcombined_test.cpp287 while (Size < TypeParam::Primary::SizeClassMap::MaxSize * 4) { in SCUDO_TYPED_TEST()
304 scudo::uptr Size = TypeParam::Primary::SizeClassMap::MaxSize * 2; in SCUDO_TYPED_TEST()
328 TypeParam::Primary::SizeClassMap::MaxSize - 64; in SCUDO_TYPED_TEST()
355 rand() % (TypeParam::Primary::SizeClassMap::MaxSize / 2U), Origin)); in SCUDO_TYPED_TEST()
444 rand() % (TypeParam::Primary::SizeClassMap::MaxSize / 2U), Origin)); in SCUDO_TYPED_TEST()
521 typedef scudo::SizeClassAllocator64<DeathConfig> Primary; typedef
619 using SizeClassMap = typename TypeParam::Primary::SizeClassMap; in SCUDO_TYPED_TEST()
658 using SizeClassMap = typename TypeParam::Primary::SizeClassMap; in SCUDO_TYPED_TEST()
/openbsd-src/gnu/llvm/clang/include/clang/AST/
H A DDeclLookups.h76 DeclContext *Primary = const_cast<DeclContext*>(this)->getPrimaryContext(); in lookups() local
77 if (Primary->hasExternalVisibleStorage()) in lookups()
78 getParentASTContext().getExternalSource()->completeVisibleDeclsMap(Primary); in lookups()
79 if (StoredDeclsMap *Map = Primary->buildLookup()) in lookups()
90 DeclContext *Primary = const_cast<DeclContext*>(this)->getPrimaryContext(); in noload_lookups() local
92 Primary->loadLazyLocalLexicalLookups(); in noload_lookups()
93 if (StoredDeclsMap *Map = Primary->getLookupPtr()) in noload_lookups()
/openbsd-src/gnu/llvm/compiler-rt/lib/scudo/standalone/
H A Dallocator_config.h74 typedef SizeClassAllocator64<DefaultConfig> Primary; typedef
82 typedef SizeClassAllocator32<DefaultConfig> Primary; typedef
105 typedef SizeClassAllocator64<AndroidConfig> Primary; typedef
113 typedef SizeClassAllocator32<AndroidConfig> Primary; typedef
138 typedef SizeClassAllocator64<AndroidSvelteConfig> Primary; typedef
146 typedef SizeClassAllocator32<AndroidSvelteConfig> Primary; typedef
171 typedef SizeClassAllocator64<FuchsiaConfig> Primary; typedef
190 typedef SizeClassAllocator64<TrustyConfig> Primary; typedef
H A Dcombined.h49 using PrimaryT = typename Params::Primary;
101 if (UNLIKELY(useMemoryTagging<Params>(Allocator.Primary.Options.load()))) in allocate()
156 Primary.Options.set(OptionBit::MayReturnNull); in init()
158 Primary.Options.setFillContentsMode(ZeroFill); in init()
160 Primary.Options.setFillContentsMode(PatternOrZeroFill); in init()
162 Primary.Options.set(OptionBit::DeallocTypeMismatch); in init()
164 Primary.Options.set(OptionBit::DeleteSizeMismatch); in init()
167 Primary.Options.set(OptionBit::UseMemoryTagging); in init()
168 Primary.Options.set(OptionBit::UseOddEvenTags); in init()
175 Primary.init(ReleaseToOsIntervalMs); in init()
[all …]
/openbsd-src/gnu/llvm/llvm/lib/CodeGen/
H A DLoopTraversal.cpp39 bool Primary = true; in traverse() local
44 MBBTraversalOrder.push_back(TraversedMBBInfo(ActiveMBB, Primary, Done)); in traverse()
50 if (Primary) in traverse()
58 Primary = false; in traverse()
/openbsd-src/gnu/llvm/clang/lib/AST/
H A DASTDumper.cpp58 const DeclContext *Primary = DC->getPrimaryContext(); in dumpLookups() local
59 if (Primary != DC) { in dumpLookups()
61 NodeDumper.dumpPointer(cast<Decl>(Primary)); in dumpLookups()
64 bool HasUndeserializedLookups = Primary->hasExternalVisibleStorage(); in dumpLookups()
67 ? Primary->lookups() in dumpLookups()
68 : Primary->noload_lookups(/*PreserveInternalState=*/true); in dumpLookups()
H A DASTImporterLookupTable.cpp185 StringRef Primary = DC->getPrimaryContext() ? " primary" : ""; in dump() local
186 llvm::errs() << "== DC:" << cast<Decl>(DC) << Primary << "\n"; in dump()
/openbsd-src/gnu/llvm/llvm/include/llvm/CodeGen/
H A DLoopTraversal.h97 TraversedMBBInfo(MachineBasicBlock *BB = nullptr, bool Primary = true,
99 : MBB(BB), PrimaryPass(Primary), IsDone(Done) {} in MBB()
/openbsd-src/gnu/llvm/clang/lib/Frontend/
H A DFrontendActions.cpp840 Module *Primary = nullptr; in ExecuteAction() local
846 Primary = M; in ExecuteAction()
853 if (Primary) { in ExecuteAction()
854 if (!Primary->submodules().empty()) in ExecuteAction()
856 for (auto *MI : Primary->submodules()) { in ExecuteAction()
859 if (!Primary->Imports.empty()) in ExecuteAction()
861 for (auto *IMP : Primary->Imports) { in ExecuteAction()
864 if (!Primary->Exports.empty()) in ExecuteAction()
866 for (unsigned MN = 0, N = Primary->Exports.size(); MN != N; ++MN) { in ExecuteAction()
867 if (Module *M = Primary->Exports[MN].getPointer()) { in ExecuteAction()
/openbsd-src/gnu/llvm/llvm/docs/
H A DScudoHardenedAllocator.rst37 - the Primary allocator: fast and efficient, it services smaller allocation
39 are currently two Primary allocators implemented, specific to 32 and 64 bit
75 resides for Primary backed allocations, or 0 for Secondary backed allocations;
82 - the size (Primary) or unused bytes amount (Secondary) for that chunk, which is
110 blocks are allocated in the Primary, can randomize how caches are assigned to
115 Primary and Secondary allocators have different behaviors with regard to
117 it isn't the case for the Primary, which could lead to a steady growth of the
119 that are covered by contiguous free memory blocks in the Primary can be
/openbsd-src/regress/sbin/disklabel/
H A D256.sparc64.ok2 Primary GPT:
H A D400.sparc64.ok2 Primary GPT:
H A D1024.sparc64.ok2 Primary GPT:
H A D1000.sparc64.ok2 Primary GPT:
H A D2200.sparc64.ok2 Primary GPT:
H A D2000.sparc64.ok2 Primary GPT:
H A D800.sparc64.ok2 Primary GPT:
H A D2300.sparc64.ok2 Primary GPT:
H A D4100.sparc64.ok2 Primary GPT:
H A D6000.sparc64.ok2 Primary GPT:
H A D3500.sparc64.ok2 Primary GPT:
H A D9000.sparc64.ok2 Primary GPT:
H A D4000.sparc64.ok2 Primary GPT:

1234