Home
last modified time | relevance | path

Searched refs:Active (Results 1 – 25 of 256) sorted by relevance

1234567891011

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/
H A DSuffixTree.cpp21 Active.Node = Root; in SuffixTree()
103 if (Active.Len == 0) { in extend()
105 Active.Idx = EndIdx; in extend()
108 assert(Active.Idx <= EndIdx && "Start index can't be after end index!"); in extend()
111 unsigned FirstChar = Str[Active.Idx]; in extend()
114 if (Active.Node->Children.count(FirstChar) == 0) { in extend()
116 insertLeaf(*Active.Node, EndIdx, FirstChar); in extend()
121 NeedsLink->Link = Active.Node; in extend()
127 SuffixTreeNode *NextNode = Active.Node->Children[FirstChar]; in extend()
133 if (Active.Len >= SubstringLen) { in extend()
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaTemplateInstantiate.cpp449 auto &Active = CodeSynthesisContexts.back(); in popCodeSynthesisContext() local
450 if (!Active.isInstantiationRecord()) { in popCodeSynthesisContext()
455 InNonInstantiationSFINAEContext = Active.SavedInNonInstantiationSFINAEContext; in popCodeSynthesisContext()
480 auto &Active = SemaRef.CodeSynthesisContexts.back(); in Clear() local
481 if (Active.Entity) in Clear()
483 {Active.Entity->getCanonicalDecl(), Active.Kind}); in Clear()
527 Active = CodeSynthesisContexts.rbegin(), in PrintInstantiationStack() local
529 Active != ActiveEnd; in PrintInstantiationStack()
530 ++Active, ++InstantiationIdx) { in PrintInstantiationStack()
535 Diags.Report(Active->PointOfInstantiation, in PrintInstantiationStack()
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Parse/
H A DRAIIObjectsForParser.h48 bool Active; variable
56 Active = true;
58 Active = false;
63 State(Other.State), Active(Other.Active) { in SuppressAccessChecks()
64 Other.Active = false; in SuppressAccessChecks()
69 assert(Active && "trying to end an inactive suppression"); in done()
71 Active = false; in done()
75 assert(!Active && "redelaying without having ended first"); in redelay()
82 if (Active) done(); in ~SuppressAccessChecks()
/netbsd-src/share/misc/
H A Dna.phone33 227*:Maryland (USA):Overlay of 301 (Active) effective 06/14/2023
38 235*:Missouri (USA):Overlay of 573 (Active) effective 03/24/2024
61 274*:Wisconsin (USA):Overlay of 920 (Active) effective 05/05/2023
65 283*:Ohio (USA):Overlay of 513 (Active) effective 04/28/2023
89 324*:Florida (USA):Overlay of 904 (Active) effective 02/26/2024
92 327*:Arkansas (USA):Overlay of 870 (Active) effective 02/20/2024
93 329*:New York (USA):Overlay of 845 (Active) effective 03/24/2023
110 353*:Wisconsin (USA):Overlay of 608 (Active) effective 09/15/2023
119 369*:California (USA):Overlay of 707 (Active) effective 02/01/2023
121 382*:Ontario (Canada):Overlay of 519 (Active) effective 06/17/2023
[all …]
/netbsd-src/sys/external/gpl2/dts/dist/arch/arm/boot/dts/
H A Dsun8i-s3-pinecube.dts70 hsync-active = <1>; /* Active high */
71 vsync-active = <0>; /* Active low */
72 data-active = <1>; /* Active high */
117 hsync-active = <1>; /* Active high */
118 vsync-active = <0>; /* Active low */
119 data-active = <1>; /* Active high */
H A Domap3-gta04.dtsi865 hsync-active = <0>; /* Active low */
866 vsync-active = <1>; /* Active high */
867 data-active = <1>;/* Active high */
/netbsd-src/sys/external/gpl2/dts/dist/arch/arm64/boot/dts/allwinner/
H A Dsun50i-a64-amarula-relic.dts50 hsync-active = <1>; /* Active high */
51 vsync-active = <0>; /* Active low */
52 data-active = <1>; /* Active high */
90 hsync-active = <1>; /* Active high */
91 vsync-active = <0>; /* Active low */
92 data-active = <1>; /* Active high */
H A Dsun50i-a64-pinetab.dts65 hsync-active = <1>; /* Active high */
66 vsync-active = <0>; /* Active low */
67 data-active = <1>; /* Active high */
128 hsync-active = <1>; /* Active high */
129 vsync-active = <0>; /* Active low */
130 data-active = <1>; /* Active high */
/netbsd-src/external/apache2/llvm/dist/clang/tools/diagtool/
H A DShowEnabledWarnings.cpp114 std::vector<PrettyDiag> Active; in run() local
131 Active.push_back(PrettyDiag(DR.getName(), WarningOpt, DiagLevel)); in run()
135 for (const PrettyDiag &PD : Active) { in run()
/netbsd-src/tests/lib/librumphijack/
H A Dnetstat.expout1 Active Internet connections (including servers)
4 Active Internet6 connections (including servers)
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCGLoopInfo.h290 bool hasInfo() const { return !Active.empty(); } in hasInfo()
293 const LoopInfo &getInfo() const { return *Active.back(); } in getInfo()
297 llvm::SmallVector<std::unique_ptr<LoopInfo>, 4> Active; variable
H A DCGLoopInfo.cpp588 Active.emplace_back( in push()
590 Active.empty() ? nullptr : Active.back().get())); in push()
805 assert(!Active.empty() && "No active loops to pop"); in pop()
806 Active.back()->finish(); in pop()
807 Active.pop_back(); in pop()
813 for (const auto &AL : Active) { in InsertHelper()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ProfileData/Coverage/
H A DCoverageMapping.cpp587 auto Active = Regions.begin(); in combineRegions() local
590 if (Active->startLoc() != I->startLoc() || in combineRegions()
591 Active->endLoc() != I->endLoc()) { in combineRegions()
593 ++Active; in combineRegions()
594 if (Active != I) in combineRegions()
595 *Active = *I; in combineRegions()
610 if (I->Kind == Active->Kind) in combineRegions()
611 Active->ExecutionCount += I->ExecutionCount; in combineRegions()
613 return Regions.drop_back(std::distance(++Active, End)); in combineRegions()
/netbsd-src/doc/
H A DBRANCHES26 # Status: Active/Terminated/Dormant
37 # Individual developers' branches (Active/Dormant)
283 Status: Active
294 Status: Active
305 Status: Active
316 Status: Active
327 Status: Active
338 Status: Active
348 # Individual developers' branches (Active/Dormant):
397 Status: Active
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/
H A DRegAllocPBQP.cpp328 IntervalSet Active(lowestEndPoint); in apply() local
345 IntervalSet::iterator RetireItr = Active.begin(); in apply()
346 while (RetireItr != Active.end() && in apply()
355 Active.erase(Active.begin(), RetireItr); in apply()
365 for (const auto &A : Active) { in apply()
386 Active.insert(Cur); in apply()
H A DShadowStackGCLowering.cpp173 bool Active = false; in doInitialization() local
176 Active = true; in doInitialization()
180 if (!Active) in doInitialization()
/netbsd-src/external/gpl2/lvm2/dist/udev/
H A D10-dm.rules.in59 # form with values "Suspended"/"Active". We translate it to
61 ENV{DM_SUSPENDED}=="Active", ENV{DM_SUSPENDED}="0"
/netbsd-src/sys/arch/playstation2/conf/
H A DAGATE29 options PPP_FILTER # Active filter support for PPP (requires bpf)
H A DDEBUG23 options PPP_FILTER # Active filter support for PPP (requires bpf)
/netbsd-src/crypto/external/bsd/heimdal/dist/doc/
H A Dwin2k.texi93 Install Windows, and create a new controller (Active Directory
110 Active Directory Domains and Trusts).
182 Start the @code{Active Directory Users and Computers} tool. Select the
192 the Active Directory LDAP catalog. When you create users by script you
306 @c @item Access to the Active Directory through LDAP:
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Support/
H A DSuffixTree.h188 ActiveState Active; variable
/netbsd-src/external/apache2/llvm/dist/clang/lib/Lex/
H A DPPMacroExpansion.cpp239 for (auto *Active : Info.ActiveModuleMacros) { in updateModuleMacroInfo() local
240 auto *NewMI = Active->getMacroInfo(); in updateModuleMacroInfo()
254 IsSystemMacro &= Active->getOwningModule()->IsSystem || in updateModuleMacroInfo()
289 llvm::DenseSet<ModuleMacro*> Active; in dumpMacroInfo() local
291 Active.insert(MM); in dumpMacroInfo()
301 if (Active.count(MM)) in dumpMacroInfo()
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DComputeDependence.cpp191 auto Active = E->getLHS()->getDependence(); in computeDependence() local
194 std::swap(Active, Inactive); in computeDependence()
197 return (Active & ExprDependence::TypeValue) | in computeDependence()
198 ((Cond | Active | Inactive) & ~ExprDependence::TypeValue); in computeDependence()
/netbsd-src/external/apache2/llvm/dist/clang/docs/
H A DItaniumMangleAbiTags.rst49 Active tags
/netbsd-src/sys/arch/evbmips/conf/
H A DADM5120-NB87 #options PPP_FILTER # Active filter support for PPP (requires bpf)

1234567891011