Searched refs:Active (Results 1 - 23 of 23) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/llvm/lib/Support/
H A DSuffixTree.cpp21 Active.Node = Root;
103 if (Active.Len == 0) {
105 Active.Idx = EndIdx;
108 assert(Active.Idx <= EndIdx && "Start index can't be after end index!");
111 unsigned FirstChar = Str[Active.Idx];
114 if (Active.Node->Children.count(FirstChar) == 0) {
116 insertLeaf(*Active.Node, EndIdx, FirstChar);
121 NeedsLink->Link = Active.Node;
127 SuffixTreeNode *NextNode = Active.Node->Children[FirstChar];
133 if (Active
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Parse/
H A DRAIIObjectsForParser.h48 bool Active; member in class:clang::SuppressAccessChecks
56 Active = true;
58 Active = false;
63 State(Other.State), Active(Other.Active) {
64 Other.Active = false;
69 assert(Active && "trying to end an inactive suppression");
71 Active = false;
75 assert(!Active && "redelaying without having ended first");
82 if (Active) don
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaTemplateInstantiate.cpp444 auto &Active = CodeSynthesisContexts.back(); local
445 if (!Active.isInstantiationRecord()) {
450 InNonInstantiationSFINAEContext = Active.SavedInNonInstantiationSFINAEContext;
475 auto &Active = SemaRef.CodeSynthesisContexts.back(); local
476 if (Active.Entity)
478 std::make_pair(Active.Entity, Active.Kind));
522 Active = CodeSynthesisContexts.rbegin(),
524 Active != ActiveEnd;
525 ++Active,
[all...]
H A DSemaOpenMP.cpp383 bool Active;
386 : Self(Self), Active(false) {
392 if (Active) {
394 Active = false;
398 if (!Active) {
400 Active = true;
H A DSemaDeclCXX.cpp4848 if (FieldDecl *Active =
4850 return Active != Field->getCanonicalDecl();
/freebsd-13-stable/usr.sbin/bsdinstall/scripts/
H A Dauto243 export ZFSBOOT_PARTITION_SCHEME="GPT + Active"
256 export ZFSBOOT_PARTITION_SCHEME="GPT + Active"
274 export ZFSBOOT_PARTITION_SCHEME="GPT + Active"
287 export ZFSBOOT_PARTITION_SCHEME="GPT + Active"
/freebsd-13-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGLoopInfo.h277 bool hasInfo() const { return !Active.empty(); }
280 const LoopInfo &getInfo() const { return *Active.back(); }
284 llvm::SmallVector<std::unique_ptr<LoopInfo>, 4> Active; member in class:clang::CodeGen::LoopInfoStack
H A DCGLoopInfo.cpp569 Active.emplace_back(
571 Active.empty() ? nullptr : Active.back().get()));
771 assert(!Active.empty() && "No active loops to pop");
772 Active.back()->finish();
773 Active.pop_back();
779 for (const auto &AL : Active) {
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DSuffixTree.h188 ActiveState Active; member in class:llvm::SuffixTree
/freebsd-13-stable/contrib/llvm-project/llvm/lib/ProfileData/Coverage/
H A DCoverageMapping.cpp470 // Active regions which end before the current region need to be popped.
536 auto Active = Regions.begin();
539 if (Active->startLoc() != I->startLoc() ||
540 Active->endLoc() != I->endLoc()) {
542 ++Active;
543 if (Active != I)
544 *Active = *I;
559 if (I->Kind == Active->Kind)
560 Active->ExecutionCount += I->ExecutionCount;
562 return Regions.drop_back(std::distance(++Active, En
[all...]
/freebsd-13-stable/stand/i386/mbr/
H A Dmbr.S65 testw %si,%si # Active already found?
70 testw %si,%si # Active found?
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DRegAllocPBQP.cpp329 IntervalSet Active(lowestEndPoint);
346 IntervalSet::iterator RetireItr = Active.begin();
347 while (RetireItr != Active.end() &&
356 Active.erase(Active.begin(), RetireItr);
366 for (const auto &A : Active) {
386 // Finally, add Cur to the Active set.
387 Active.insert(Cur);
H A DShadowStackGCLowering.cpp169 bool Active = false; local
172 Active = true;
176 if (!Active)
/freebsd-13-stable/contrib/llvm-project/clang/lib/AST/
H A DComputeDependence.cpp161 auto Active = E->getLHS()->getDependence(); local
164 std::swap(Active, Inactive);
167 return (Active & ExprDependence::TypeValue) |
168 ((Cond | Active | Inactive) & ~ExprDependence::TypeValue);
/freebsd-13-stable/contrib/llvm-project/clang/lib/Lex/
H A DPPMacroExpansion.cpp237 for (auto *Active : Info.ActiveModuleMacros) {
238 auto *NewMI = Active->getMacroInfo();
252 IsSystemMacro &= Active->getOwningModule()->IsSystem ||
287 llvm::DenseSet<ModuleMacro*> Active; local
289 Active.insert(MM);
299 if (Active.count(MM))
/freebsd-13-stable/stand/i386/zfsboot/
H A Dzfsldr.S76 testb $0x80,(%si) # Active?
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64A57FPLoadBalancing.cpp143 std::map<unsigned, Chain*> &Active,
/freebsd-13-stable/stand/i386/boot2/
H A Dboot1.S156 testb $0x80,(%si) # Active?
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AsmParser/
H A DAArch64AsmParser.cpp90 Prefix.Active = true;
97 Prefix.Active = true;
109 Prefix.Active = true;
124 PrefixInfo() : Active(false), Predicated(false) {}
125 bool isActive() const { return Active; }
138 bool Active; member in class:__anon3880::AArch64AsmParser::PrefixInfo
/freebsd-13-stable/stand/lua/
H A Dmenu.lua111 return "Active: "
/freebsd-13-stable/contrib/llvm-project/llvm/lib/IR/
H A DVerifier.cpp2196 SmallPtrSet<Instruction *, 8> Active; local
2201 Active.insert(PredPad);
2205 if (Active.count(SuccPad)) {
2228 Active.insert(PredPad);
2232 Active.clear();
/freebsd-13-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DGnu.cpp2470 bool Active; member in struct:GCCLibSuffix
2505 if (!Suffix.Active)
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h4338 bool Active; member in struct:clang::final::CompleteTypeKind::FunctionScopeRAII
4339 FunctionScopeRAII(Sema &S) : S(S), Active(true) {}
4341 if (Active)
4344 void disable() { Active = false; }

Completed in 567 milliseconds