Home
last modified time | relevance | path

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

123456

/netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/experimental/allocator/building_blocks/
H A Dfallback_allocator.d21 struct FallbackAllocator(Primary, Fallback) in FallbackAllocator() argument
33 static if (stateSize!Primary) Primary primary; in FallbackAllocator()
34 else alias primary = Primary.instance; in FallbackAllocator()
44 static if (!stateSize!Primary && !stateSize!Fallback) in FallbackAllocator()
52 enum uint alignment = min(Primary.alignment, Fallback.alignment); in FallbackAllocator()
68 static if (hasMember!(Primary, "alignedAllocate") in FallbackAllocator()
72 static if (hasMember!(Primary, "alignedAllocate")) in FallbackAllocator()
95 static if (hasMember!(Primary, "owns") in FallbackAllocator()
96 && (hasMember!(Primary, "expand") || hasMember!(Fallback, "expand"))) in FallbackAllocator()
103 static if (hasMember!(Primary, "expand")) in FallbackAllocator()
[all …]
/netbsd-src/external/apache2/llvm/dist/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()
/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/experimental/allocator/building_blocks/
H A Dfallback_allocator.d24 struct FallbackAllocator(Primary, Fallback) in FallbackAllocator() argument
32 static if (!stateSize!Primary && !stateSize!Fallback) in FallbackAllocator()
40 static if (stateSize!Primary) Primary primary; in FallbackAllocator()
41 else alias primary = Primary.instance; in FallbackAllocator()
51 static if (!stateSize!Primary && !stateSize!Fallback) in FallbackAllocator()
59 enum uint alignment = min(Primary.alignment, Fallback.alignment); in FallbackAllocator()
71 static if (hasMember!(Primary, "allocateZeroed") in FallbackAllocator()
76 static if (hasMember!(Primary, "allocateZeroed")) in FallbackAllocator()
107 static if (hasMember!(Primary, "alignedAllocate") in FallbackAllocator()
111 static if (hasMember!(Primary, "alignedAllocate")) in FallbackAllocator()
[all …]
/netbsd-src/external/apache2/llvm/dist/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()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/
H A DLoopTraversal.cpp39 bool Primary = true; in traverse() local
45 MBBTraversalOrder.push_back(TraversedMBBInfo(ActiveMBB, Primary, Done)); in traverse()
51 if (Primary) in traverse()
59 Primary = false; in traverse()
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DASTDumper.cpp30 const DeclContext *Primary = DC->getPrimaryContext(); in dumpLookups() local
31 if (Primary != DC) { in dumpLookups()
33 NodeDumper.dumpPointer(cast<Decl>(Primary)); in dumpLookups()
36 bool HasUndeserializedLookups = Primary->hasExternalVisibleStorage(); in dumpLookups()
39 ? Primary->lookups() in dumpLookups()
40 : Primary->noload_lookups(/*PreserveInternalState=*/true); in dumpLookups()
H A DASTImporterLookupTable.cpp153 StringRef Primary = DC->getPrimaryContext() ? " primary" : ""; in dump() local
154 llvm::errs() << "== DC:" << cast<Decl>(DC) << Primary << "\n"; in dump()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
H A DLoopTraversal.h97 TraversedMBBInfo(MachineBasicBlock *BB = nullptr, bool Primary = true,
99 : MBB(BB), PrimaryPass(Primary), IsDone(Done) {} in MBB()
/netbsd-src/external/bsd/file/dist/magic/magdir/
H A Dpgp-binary-keys127 # [Primary Key] [SIG] (EOF or another certificate)
128 # [Primary Key] [SIG] [User ID] [SIG]...
129 # [Primary Key] [SIG] [User Attribute] [SIG]...
130 # [Primary Key] [SIG] [Subkey] [SIG]...
131 # [Primary Key] [User ID] [SIG]...
132 # [Primary Key] [User Attribute] [SIG]...
133 # [Primary Key] [Subkey] [SIG]...
/netbsd-src/external/apache2/llvm/dist/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
/netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
H A DSymbolManager.cpp348 void SymbolManager::addSymbolDependency(const SymbolRef Primary, in addSymbolDependency() argument
350 auto &dependencies = SymbolDependencies[Primary]; in addSymbolDependency()
358 const SymbolRef Primary) { in getDependentSymbols() argument
359 SymbolDependTy::const_iterator I = SymbolDependencies.find(Primary); in getDependentSymbols()
/netbsd-src/external/apache2/llvm/dist/clang/utils/TableGen/
H A DClangOptionDocEmitter.cpp213 std::string getRSTStringWithTextFallback(const Record *R, StringRef Primary, in getRSTStringWithTextFallback() argument
215 for (auto Field : {Primary, Fallback}) { in getRSTStringWithTextFallback()
221 return Field == Primary ? Value.str() : escapeRST(Value); in getRSTStringWithTextFallback()
/netbsd-src/external/bsd/am-utils/dist/
H A DLSM.am-utils12 Primary-site: shekel.mcl.cs.columbia.edu /pub/am-utils
H A DMIRRORS.txt9 New York (Stony Brook, Primary Site):
/netbsd-src/external/apache2/llvm/dist/clang/lib/Analysis/
H A DPathDiagnostic.cpp82 void PathPieces::flattenTo(PathPieces &Primary, PathPieces &Current, in flattenTo() argument
90 Call.path.flattenTo(Primary, Primary, ShouldFlattenMacros); in flattenTo()
98 Macro.subPieces.flattenTo(Primary, Primary, ShouldFlattenMacros); in flattenTo()
102 Macro.subPieces.flattenTo(Primary, NewPath, ShouldFlattenMacros); in flattenTo()
/netbsd-src/sys/arch/x68k/stand/
H A DREADME3 Primary bootloaders:
/netbsd-src/external/apache2/llvm/dist/llvm/lib/DebugInfo/DWARF/
H A DDWARFDebugFrame.cpp258 if (uint8_t Primary = Opcode & DWARF_CFI_PRIMARY_OPCODE_MASK) { in parse() local
262 switch (Primary) { in parse()
265 addInstruction(Primary, Op1); in parse()
268 addInstruction(Primary, Op1, Data.getULEB128(C)); in parse()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DSymbolManager.h496 void addSymbolDependency(const SymbolRef Primary, const SymbolRef Dependent);
498 const SymbolRefSmallVectorTy *getDependentSymbols(const SymbolRef Primary);
/netbsd-src/crypto/external/bsd/openssl.old/lib/libdes/
H A DREADME13 libdes is now also shipped with SSLeay. Primary ftp site of
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/
H A DPPCScheduleA2.td9 // Primary reference:
/netbsd-src/crypto/external/bsd/openssl/lib/libdes/
H A DREADME13 libdes is now also shipped with SSLeay. Primary ftp site of
/netbsd-src/external/mpl/bind/dist/doc/notes/
H A Dnotes-9.18.6.rst
/netbsd-src/sys/external/gpl2/dts/dist/arch/arm/boot/dts/
H A Darm-realview-pba8.dts50 /* Primary GIC PL390 interrupt controller in the test chip */
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaTemplateDeduction.cpp5534 ClassTemplateDecl *Primary = Spec->getSpecializedTemplate(); in isMoreSpecializedThanPrimary() local
5535 QualType PrimaryT = Primary->getInjectedClassNameSpecialization(); in isMoreSpecializedThanPrimary()
5537 if (!isAtLeastAsSpecializedAs(*this, PartialT, PrimaryT, Primary, Info)) in isMoreSpecializedThanPrimary()
5543 Primary->getAssociatedConstraints(PrimaryAC); in isMoreSpecializedThanPrimary()
5546 if (IsAtLeastAsConstrained(Spec, SpecAC, Primary, PrimaryAC, in isMoreSpecializedThanPrimary()
5551 if (IsAtLeastAsConstrained(Primary, PrimaryAC, Spec, SpecAC, in isMoreSpecializedThanPrimary()
5598 TemplateDecl *Primary = Spec->getSpecializedTemplate(); in isMoreSpecializedThanPrimary() local
5602 Context.getInjectedTemplateArgs(Primary->getTemplateParameters(), in isMoreSpecializedThanPrimary()
5606 Context.getCanonicalTemplateName(TemplateName(Primary)); in isMoreSpecializedThanPrimary()
5612 if (!isAtLeastAsSpecializedAs(*this, PartialT, PrimaryT, Primary, Info)) in isMoreSpecializedThanPrimary()
[all …]
/netbsd-src/sys/dev/microcode/wi/
H A Deprimsym30 …��@99SA01000000��������������������������������������Primary F's �F3.10-04���…

123456