Home
last modified time | relevance | path

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

12345678

/external/scudo/standalone/tests/
Dprimary_test.cpp24 template <typename Primary> static void testPrimary() { in testPrimary()
26 auto Deleter = [](Primary *P) { in testPrimary()
30 std::unique_ptr<Primary, decltype(Deleter)> Allocator(new Primary, Deleter); in testPrimary()
32 typename Primary::CacheT Cache; in testPrimary()
36 if (!Primary::canAllocate(Size)) in testPrimary()
38 const scudo::uptr ClassId = Primary::SizeClassMap::getClassIdBySize(Size); in testPrimary()
67 using Primary = scudo::SizeClassAllocator64<scudo::DefaultSizeClassMap, 20U>; in TEST() typedef
68 using TransferBatch = Primary::CacheT::TransferBatch; in TEST()
69 Primary Allocator; in TEST()
71 typename Primary::CacheT Cache; in TEST()
[all …]
/external/clang/include/clang/Frontend/
DChainedDiagnosticConsumer.h26 DiagnosticConsumer *Primary; variable
30 ChainedDiagnosticConsumer(std::unique_ptr<DiagnosticConsumer> Primary, in ChainedDiagnosticConsumer() argument
32 : OwningPrimary(std::move(Primary)), Primary(OwningPrimary.get()), in ChainedDiagnosticConsumer()
36 ChainedDiagnosticConsumer(DiagnosticConsumer *Primary, in ChainedDiagnosticConsumer() argument
38 : Primary(Primary), Secondary(std::move(Secondary)) {} in ChainedDiagnosticConsumer()
42 Primary->BeginSourceFile(LO, PP); in BeginSourceFile()
48 Primary->EndSourceFile(); in EndSourceFile()
53 Primary->finish(); in finish()
57 return Primary->IncludeInDiagnosticCounts(); in IncludeInDiagnosticCounts()
65 Primary->HandleDiagnostic(DiagLevel, Info); in HandleDiagnostic()
/external/crosvm/devices/src/
Dpic.rs21 Primary = 0, enumerator
134 PIC_PRIMARY_COMMAND => self.pic_write_command(PicSelect::Primary, data[0]), in write()
135 PIC_PRIMARY_DATA => self.pic_write_data(PicSelect::Primary, data[0]), in write()
136 PIC_PRIMARY_ELCR => self.pic_write_elcr(PicSelect::Primary, data[0]), in write()
150 PIC_PRIMARY_COMMAND => self.pic_read_command(PicSelect::Primary), in read()
151 PIC_PRIMARY_DATA => self.pic_read_data(PicSelect::Primary), in read()
152 PIC_PRIMARY_ELCR => self.pic_read_elcr(PicSelect::Primary), in read()
189 PicSelect::Primary in service_irq()
200 self.pics[PicSelect::Primary as usize].imr == 0xFF in masked()
205 self.get_irq(PicSelect::Primary).is_some() in has_interrupt()
[all …]
/external/scudo/standalone/
Dallocator_config.h30 typedef SizeClassAllocator64<SizeClassMap, 30U> Primary; typedef
33 typedef SizeClassAllocator32<SizeClassMap, 19U> Primary; typedef
45 Primary; typedef
48 typedef SizeClassAllocator32<SizeClassMap, 18U, 1000, 1000> Primary; typedef
61 typedef SizeClassAllocator64<SizeClassMap, 27U, 1000, 1000> Primary; typedef
64 typedef SizeClassAllocator32<SizeClassMap, 16U, 1000, 1000> Primary; typedef
74 typedef SizeClassAllocator64<DefaultSizeClassMap, 30U> Primary; typedef
Dcombined.h38 using PrimaryT = typename Params::Primary;
147 Primary.initLinkerInitialized(ReleaseToOsIntervalMs); in initLinkerInitialized()
188 Primary.unmapTestOnly(); in unmapTestOnly()
200 Cache->initLinkerInitialized(&Stats, &Primary); in initCache()
215 if (Primary.SupportsMemoryTagging) in untagPointerMaybe()
549 Primary.disable(); in disable()
556 Primary.enable(); in enable()
594 Primary.releaseToOS(); in releaseToOS()
620 Primary.iterateOverBlocks(Lambda); in iterateOverChunks()
637 const bool PrimaryResult = Primary.setOption(O, Value); in setOption()
[all …]
/external/clang/include/clang/AST/
DDeclLookups.h72 DeclContext *Primary = const_cast<DeclContext*>(this)->getPrimaryContext(); in lookups() local
73 if (Primary->hasExternalVisibleStorage()) in lookups()
74 getParentASTContext().getExternalSource()->completeVisibleDeclsMap(Primary); in lookups()
75 if (StoredDeclsMap *Map = Primary->buildLookup()) in lookups()
93 DeclContext *Primary = const_cast<DeclContext*>(this)->getPrimaryContext(); in noload_lookups() local
94 if (StoredDeclsMap *Map = Primary->getLookupPtr()) in noload_lookups()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/
DLoopTraversal.cpp40 bool Primary = true; in traverse() local
46 MBBTraversalOrder.push_back(TraversedMBBInfo(ActiveMBB, Primary, Done)); in traverse()
52 if (Primary) in traverse()
60 Primary = false; in traverse()
/external/u-boot/doc/imx/mkimage/
Dimx8image.txt8 - Primary Boot Container Set
11 The imx8image only support the Primary Boot Container Set.
13 The Primary Boot Container Set contains two containers. The 1st container
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/
DLoopTraversal.h98 TraversedMBBInfo(MachineBasicBlock *BB = nullptr, bool Primary = true,
100 : MBB(BB), PrimaryPass(Primary), IsDone(Done) {} in MBB()
/external/opencensus-java/contrib/spring_sleuth_v1x/src/main/java/io/opencensus/contrib/spring/sleuth/v1x/
DOpenCensusSleuthAutoConfiguration.java34 import org.springframework.context.annotation.Primary;
52 @Primary
/external/clang/lib/StaticAnalyzer/Core/
DSymbolManager.cpp347 void SymbolManager::addSymbolDependency(const SymbolRef Primary, in addSymbolDependency() argument
349 SymbolDependTy::iterator I = SymbolDependencies.find(Primary); in addSymbolDependency()
353 SymbolDependencies[Primary] = dependencies; in addSymbolDependency()
361 const SymbolRef Primary) { in getDependentSymbols() argument
362 SymbolDependTy::const_iterator I = SymbolDependencies.find(Primary); in getDependentSymbols()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/DWARF/
DDWARFDebugFrame.cpp42 uint8_t Primary = Opcode & DWARF_CFI_PRIMARY_OPCODE_MASK; in parse() local
44 if (Primary) { in parse()
48 switch (Primary) { in parse()
55 addInstruction(Primary, Op1); in parse()
58 addInstruction(Primary, Op1, Data.getULEB128(Offset)); in parse()
/external/python/httplib2/python2/httplib2/
Dcacerts.txt105 # Issuer: O=VeriSign, Inc. OU=Class 3 Public Primary Certification Authority - G2/(c) 1998 VeriSign…
106 # Subject: O=VeriSign, Inc. OU=Class 3 Public Primary Certification Authority - G2/(c) 1998 VeriSig…
107 # Label: "Verisign Class 3 Public Primary Certification Authority - G2"
269 # Issuer: CN=VeriSign Class 3 Public Primary Certification Authority - G3 O=VeriSign, Inc. OU=VeriS…
270 # Subject: CN=VeriSign Class 3 Public Primary Certification Authority - G3 O=VeriSign, Inc. OU=Veri…
271 # Label: "Verisign Class 3 Public Primary Certification Authority - G3"
301 # Issuer: CN=VeriSign Class 4 Public Primary Certification Authority - G3 O=VeriSign, Inc. OU=VeriS…
302 # Subject: CN=VeriSign Class 4 Public Primary Certification Authority - G3 O=VeriSign, Inc. OU=Veri…
303 # Label: "Verisign Class 4 Public Primary Certification Authority - G3"
1285 # Issuer: CN=GeoTrust Primary Certification Authority O=GeoTrust Inc.
[all …]
/external/python/httplib2/python3/httplib2/
Dcacerts.txt105 # Issuer: O=VeriSign, Inc. OU=Class 3 Public Primary Certification Authority - G2/(c) 1998 VeriSign…
106 # Subject: O=VeriSign, Inc. OU=Class 3 Public Primary Certification Authority - G2/(c) 1998 VeriSig…
107 # Label: "Verisign Class 3 Public Primary Certification Authority - G2"
269 # Issuer: CN=VeriSign Class 3 Public Primary Certification Authority - G3 O=VeriSign, Inc. OU=VeriS…
270 # Subject: CN=VeriSign Class 3 Public Primary Certification Authority - G3 O=VeriSign, Inc. OU=Veri…
271 # Label: "Verisign Class 3 Public Primary Certification Authority - G3"
301 # Issuer: CN=VeriSign Class 4 Public Primary Certification Authority - G3 O=VeriSign, Inc. OU=VeriS…
302 # Subject: CN=VeriSign Class 4 Public Primary Certification Authority - G3 O=VeriSign, Inc. OU=Veri…
303 # Label: "Verisign Class 4 Public Primary Certification Authority - G3"
1285 # Issuer: CN=GeoTrust Primary Certification Authority O=GeoTrust Inc.
[all …]
/external/llvm/lib/DebugInfo/DWARF/
DDWARFDebugFrame.cpp108 uint8_t Primary = Opcode & DWARF_CFI_PRIMARY_OPCODE_MASK; in parseInstructions() local
110 if (Primary) { in parseInstructions()
114 switch (Primary) { in parseInstructions()
118 addInstruction(Primary, Op1); in parseInstructions()
121 addInstruction(Primary, Op1, Data.getULEB128(Offset)); in parseInstructions()
/external/libkmsxx/kms++/inc/kms++/
Dplane.h11 Primary = 1 << 1, enumerator
/external/ppp/pppd/plugins/radius/etc/
Ddictionary.microsoft42 ATTRIBUTE MS-Primary-DNS-Server 28 ipaddr Microsoft
44 ATTRIBUTE MS-Primary-NBNS-Server 30 ipaddr Microsoft
/external/u-boot/doc/
DREADME.gpt51 LBA 1 |Primary GPT Header | Primary
88 Primary/Backup GPT header:
117 Primary GPT header and Backup GPT header have swapped values of "Current LBA"
128 of the Primary.
/external/swiftshader/third_party/llvm-7.0/llvm/test/tools/llvm-readobj/
Dmips-got.test35 GOT-EXE: Primary GOT {
82 GOT-SO: Primary GOT {
199 GOT-TLS: Primary GOT {
331 GOT-EMPTY: Primary GOT {
391 GNU-GOT-EXE: Primary GOT:
421 GNU-GOT-SO: Primary GOT:
449 GNU-GOT-TLS: Primary GOT:
480 GNU-GOTY : Primary GOT:
/external/e2fsprogs/tests/m_minrootdir/
Dexpect38 Primary superblock at 1, Group descriptors at 2-2
150 Primary superblock at 1, Group descriptors at 2-2
204 Primary superblock at 1, Group descriptors at 2-2
/external/okhttp/website/static/
Dapp-theme.css3 /*** Primary ***/
/external/e2fsprogs/
De2fsprogs.lsm10 Primary-site: ftp.kernel.org /pub/linux/kernel/people/tytso/e2fsprogs
/external/clang/test/PCH/
Dchain-class-extension.m12 // Primary header
Dchain-categories.m12 // Primary header
Dchain-categories2.m12 // Primary header

12345678