| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/ |
| H A D | SuffixTree.cpp | 21 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 D | SemaTemplateInstantiate.cpp | 449 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 D | RAIIObjectsForParser.h | 48 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 D | na.phone | 33 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 D | sun8i-s3-pinecube.dts | 70 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 D | omap3-gta04.dtsi | 865 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 D | sun50i-a64-amarula-relic.dts | 50 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 D | sun50i-a64-pinetab.dts | 65 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 D | ShowEnabledWarnings.cpp | 114 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 D | netstat.expout | 1 Active Internet connections (including servers) 4 Active Internet6 connections (including servers)
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/ |
| H A D | CGLoopInfo.h | 290 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 D | CGLoopInfo.cpp | 588 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 D | CoverageMapping.cpp | 587 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 D | BRANCHES | 26 # 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 D | RegAllocPBQP.cpp | 328 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 D | ShadowStackGCLowering.cpp | 173 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 D | 10-dm.rules.in | 59 # 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 D | AGATE | 29 options PPP_FILTER # Active filter support for PPP (requires bpf)
|
| H A D | DEBUG | 23 options PPP_FILTER # Active filter support for PPP (requires bpf)
|
| /netbsd-src/crypto/external/bsd/heimdal/dist/doc/ |
| H A D | win2k.texi | 93 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 D | SuffixTree.h | 188 ActiveState Active; variable
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Lex/ |
| H A D | PPMacroExpansion.cpp | 239 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 D | ComputeDependence.cpp | 191 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 D | ItaniumMangleAbiTags.rst | 49 Active tags
|
| /netbsd-src/sys/arch/evbmips/conf/ |
| H A D | ADM5120-NB | 87 #options PPP_FILTER # Active filter support for PPP (requires bpf)
|