Home
last modified time | relevance | path

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

12

/openbsd-src/gnu/llvm/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 …]
/openbsd-src/gnu/llvm/clang/lib/Sema/
H A DSemaTemplateInstantiate.cpp603 auto &Active = CodeSynthesisContexts.back(); in popCodeSynthesisContext() local
604 if (!Active.isInstantiationRecord()) { in popCodeSynthesisContext()
609 InNonInstantiationSFINAEContext = Active.SavedInNonInstantiationSFINAEContext; in popCodeSynthesisContext()
634 auto &Active = SemaRef.CodeSynthesisContexts.back(); in Clear() local
635 if (Active.Entity) in Clear()
637 {Active.Entity->getCanonicalDecl(), Active.Kind}); in Clear()
694 Active = CodeSynthesisContexts.rbegin(), in PrintInstantiationStack() local
696 Active != ActiveEnd; in PrintInstantiationStack()
697 ++Active, ++InstantiationIdx) { in PrintInstantiationStack()
702 Diags.Report(Active->PointOfInstantiation, in PrintInstantiationStack()
[all …]
/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/llvm/clang/tools/diagtool/
H A DShowEnabledWarnings.cpp115 std::vector<PrettyDiag> Active; in run() local
132 Active.push_back(PrettyDiag(DR.getName(), WarningOpt, DiagLevel)); in run()
136 for (const PrettyDiag &PD : Active) { in run()
/openbsd-src/gnu/llvm/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.cpp589 Active.emplace_back( in push()
591 Active.empty() ? nullptr : Active.back().get())); in push()
806 assert(!Active.empty() && "No active loops to pop"); in pop()
807 Active.back()->finish(); in pop()
808 Active.pop_back(); in pop()
814 for (const auto &AL : Active) { in InsertHelper()
/openbsd-src/gnu/llvm/llvm/lib/ProfileData/Coverage/
H A DCoverageMapping.cpp647 auto Active = Regions.begin(); in combineRegions() local
650 if (Active->startLoc() != I->startLoc() || in combineRegions()
651 Active->endLoc() != I->endLoc()) { in combineRegions()
653 ++Active; in combineRegions()
654 if (Active != I) in combineRegions()
655 *Active = *I; in combineRegions()
670 if (I->Kind == Active->Kind) in combineRegions()
671 Active->ExecutionCount += I->ExecutionCount; in combineRegions()
673 return Regions.drop_back(std::distance(++Active, End)); in combineRegions()
/openbsd-src/share/misc/
H A Dscsi_modes251 {Change Active Partition} t1
252 {Change Active Format} t1
253 {Active Format} t5
254 {Active Partition} i1
H A Dusb_hid_usages689 0xF2 Host Call Active
1150 0x502 Contact Record Active
2601 0x55 Active Time
/openbsd-src/gnu/llvm/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.cpp174 bool Active = false; in doInitialization() local
177 Active = true; in doInitialization()
181 if (!Active) in doInitialization()
/openbsd-src/gnu/llvm/llvm/include/llvm/Support/
H A DSuffixTree.h188 ActiveState Active; variable
/openbsd-src/gnu/llvm/clang/lib/AST/
H A DComputeDependence.cpp209 auto Active = E->getLHS()->getDependence(); in computeDependence() local
212 std::swap(Active, Inactive); in computeDependence()
215 return (Active & ExprDependence::TypeValue) | in computeDependence()
216 ((Cond | Active | Inactive) & ~ExprDependence::TypeValue); in computeDependence()
/openbsd-src/gnu/llvm/clang/lib/Lex/
H A DPPMacroExpansion.cpp236 for (auto *Active : Info.ActiveModuleMacros) { in updateModuleMacroInfo() local
237 auto *NewMI = Active->getMacroInfo(); in updateModuleMacroInfo()
251 IsSystemMacro &= Active->getOwningModule()->IsSystem || in updateModuleMacroInfo()
286 llvm::DenseSet<ModuleMacro*> Active; in dumpMacroInfo() local
289 Active.insert(MM); in dumpMacroInfo()
299 if (Active.count(MM)) in dumpMacroInfo()
/openbsd-src/gnu/llvm/clang/docs/
H A DItaniumMangleAbiTags.rst49 Active tags
H A DMSVCCompatibility.rst117 libraries such as the Active Template Library (ATL) and Windows Runtime Library
/openbsd-src/etc/
H A Dprotocols113 a/n 107 A/N # Active Networks
/openbsd-src/sys/dev/isa/
H A Dfiles.isa291 # ThinkPad Active Protection System accelerometer
/openbsd-src/gnu/llvm/llvm/lib/Target/AArch64/
H A DAArch64A57FPLoadBalancing.cpp143 std::map<unsigned, Chain*> &Active,
/openbsd-src/sys/dev/pci/drm/amd/pm/powerplay/inc/
H A Dsmu74_discrete.h746 uint8_t Active; member
H A Dsmu75_discrete.h781 uint8_t Active; member
/openbsd-src/gnu/usr.bin/perl/pod/
H A Dperlgov.pod322 Active Core Team members vote in favor or against the proposal. Voting is
507 =head2 Active Members
/openbsd-src/gnu/llvm/llvm/lib/IR/
H A DVerifier.cpp2441 SmallPtrSet<Instruction *, 8> Active; in verifySiblingFuncletUnwinds() local
2446 Active.insert(PredPad); in verifySiblingFuncletUnwinds()
2450 if (Active.count(SuccPad)) { in verifySiblingFuncletUnwinds()
2473 Active.insert(PredPad); in verifySiblingFuncletUnwinds()
2477 Active.clear(); in verifySiblingFuncletUnwinds()
/openbsd-src/gnu/llvm/llvm/lib/Target/AArch64/AsmParser/
H A DAArch64AsmParser.cpp99 Prefix.Active = true; in CreateFromInst()
106 Prefix.Active = true; in CreateFromInst()
118 Prefix.Active = true; in CreateFromInst()
134 bool isActive() const { return Active; } in isActive()
147 bool Active = false; member in __anonb6c3df290111::AArch64AsmParser::PrefixInfo
/openbsd-src/gnu/llvm/clang/lib/Driver/ToolChains/
H A DGnu.cpp2676 bool Active; in ScanLibDirForGCCTriple() member
2693 if (!Suffix.Active) in ScanLibDirForGCCTriple()

12