HomeSort by: relevance | last modified time | path
    Searched refs:Active (Results 1 - 25 of 29) sorted by relevancy

1 2

  /src/external/apache2/llvm/dist/llvm/lib/Support/
SuffixTree.cpp 21 Active.Node = Root;
103 if (Active.Len == 0) {
104 // If not, then say the active index is the end index.
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);
118 // The active node is an internal node, and we visited it, so it must
121 NeedsLink->Link = Active.Node
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/Parse/
RAIIObjectsForParser.h 48 bool Active;
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) done()
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaTemplateInstantiate.cpp 449 auto &Active = CodeSynthesisContexts.back();
450 if (!Active.isInstantiationRecord()) {
455 InNonInstantiationSFINAEContext = Active.SavedInNonInstantiationSFINAEContext;
480 auto &Active = SemaRef.CodeSynthesisContexts.back();
481 if (Active.Entity)
483 {Active.Entity->getCanonicalDecl(), Active.Kind});
527 Active = CodeSynthesisContexts.rbegin(),
529 Active != ActiveEnd;
530 ++Active, ++InstantiationIdx)
    [all...]
SemaOpenMP.cpp 392 bool Active;
395 : Self(Self), Active(false) {
401 if (Active) {
403 Active = false;
407 if (!Active) {
409 Active = true;
8464 assert(getLangOpts().OpenMP && "OpenMP is not active.");
SemaDeclCXX.cpp 4909 if (FieldDecl *Active =
4911 return Active != Field->getCanonicalDecl();
4917 // If there's no explicit initialization, the field is active only if it
  /src/external/apache2/llvm/dist/clang/tools/diagtool/
ShowEnabledWarnings.cpp 114 std::vector<PrettyDiag> Active;
131 Active.push_back(PrettyDiag(DR.getName(), WarningOpt, DiagLevel));
135 for (const PrettyDiag &PD : Active) {
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGLoopInfo.h 100 /// Get the set of attributes active for this loop.
290 bool hasInfo() const { return !Active.empty(); }
293 const LoopInfo &getInfo() const { return *Active.back(); }
296 /// Stack of active loops.
297 llvm::SmallVector<std::unique_ptr<LoopInfo>, 4> Active;
CGLoopInfo.cpp 588 Active.emplace_back(
590 Active.empty() ? nullptr : Active.back().get()));
805 assert(!Active.empty() && "No active loops to pop");
806 Active.back()->finish();
807 Active.pop_back();
813 for (const auto &AL : Active) {
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
SuffixTree.h 188 ActiveState Active;
  /src/external/apache2/llvm/dist/llvm/lib/ProfileData/Coverage/
CoverageMapping.cpp 453 /// Emit segments for active regions which end before \p Loc.
455 /// \p Loc: The start location of the next region. If None, all active
498 // start of the new region, use the last active region to fill the gap.
502 // Emit a skipped segment if there are no more active regions. This
515 // Active regions which end before the current region need to be popped.
531 // Avoid making zero-length regions active. If it's the last region,
551 // This region is active (i.e not completed).
555 // Complete any remaining active regions.
569 // to their kinds so that the most suitable region will become "active"
587 auto Active = Regions.begin()
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
RegAllocPBQP.cpp 307 // isn't linear, because the size of the active set isn't bound by the
328 IntervalSet Active(lowestEndPoint);
344 // Retire any active intervals that end before Cur starts.
345 IntervalSet::iterator RetireItr = Active.begin();
346 while (RetireItr != Active.end() &&
355 Active.erase(Active.begin(), RetireItr);
362 // At this point we know that Cur overlaps all active intervals. Add the
365 for (const auto &A : Active) {
385 // Finally, add Cur to the Active set
    [all...]
ShadowStackGCLowering.cpp 173 bool Active = false;
176 Active = true;
180 if (!Active)
  /src/external/apache2/llvm/dist/clang/lib/AST/
ComputeDependence.cpp 191 auto Active = E->getLHS()->getDependence();
194 std::swap(Active, Inactive);
195 // Take type- and value- dependency from the active branch. Propagate all
197 return (Active & ExprDependence::TypeValue) |
198 ((Cond | Active | Inactive) & ~ExprDependence::TypeValue);
  /src/external/apache2/llvm/dist/clang/lib/Lex/
PPMacroExpansion.cpp 239 for (auto *Active : Info.ActiveModuleMacros) {
240 auto *NewMI = Active->getMacroInfo();
254 IsSystemMacro &= Active->getOwningModule()->IsSystem ||
289 llvm::DenseSet<ModuleMacro*> Active;
291 Active.insert(MM);
301 if (Active.count(MM))
302 llvm::errs() << " active";
  /src/sys/external/bsd/drm2/dist/drm/amd/powerplay/inc/
smu74_discrete.h 747 uint8_t Active;
smu75_discrete.h 783 uint8_t Active;
  /src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/
AArch64A57FPLoadBalancing.cpp 143 std::map<unsigned, Chain*> &Active,
231 /// Inform the chain that its last active register (the dest register of
337 // The currently "active" chains - chains that can be added to and haven't
588 assert(Substs.size() == 0 && "No substitutions should be left active!");
683 // Given an operand and the set of active chains (keyed by register),
  /src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/AsmParser/
AArch64AsmParser.cpp 91 Prefix.Active = true;
98 Prefix.Active = true;
110 Prefix.Active = true;
125 PrefixInfo() : Active(false), Predicated(false) {}
126 bool isActive() const { return Active; }
139 bool Active;
  /src/external/apache2/llvm/dist/llvm/lib/IR/
Verifier.cpp 2352 SmallPtrSet<Instruction *, 8> Active;
2357 Active.insert(PredPad);
2361 if (Active.count(SuccPad)) {
2384 Active.insert(PredPad);
2386 // Each node only has one successor, so we've walked all the active
2388 Active.clear();
  /src/usr.sbin/sysinst/
msg.mi.es 79 Active la selecci�n actual desde el men� pulsando la tecla Intro.
1514 * $3 = other flag options d = bootselect default, a = active
  /src/external/apache2/llvm/dist/clang/lib/Driver/ToolChains/
Gnu.cpp 2524 bool Active;
2541 if (!Suffix.Active)
  /src/external/apache2/llvm/dist/clang/include/clang/Sema/
Sema.h 436 /// Stack of active SEH __finally scopes. Can be empty.
781 /// function, block, and method scopes that are currently active.
1241 /// The number of active cleanup objects when we entered
1489 /// Cause the active diagnostic on the DiagosticsEngine to be
1593 // If we aren't active, there is nothing to do.
4630 bool Active;
4631 FunctionScopeRAII(Sema &S) : S(S), Active(true) {}
4633 if (Active)
4636 void disable() { Active = false; }
8706 /// List of active code synthesis contexts
    [all...]
  /src/external/gpl2/diffutils/dist/config/
texinfo.tex 67 % and turn on active characters that we couldn't do earlier because
70 \catcode`+=\active \catcode`\_=\active}
357 % will have two active spaces as part of the argument with the
358 % `itemize'. Here we remove all active spaces from #1, and assign the
361 % This loses if there are any *other* active characters besides spaces
377 % Change the active space to expand to nothing.
543 \ifnum\catcode13=\active \else
754 % Allow normal characters that we make active in the argument (a file name).
765 % Restore active chars for included file
    [all...]
  /src/external/gpl2/grep/dist/doc/
texinfo.tex 64 % and turn on active characters that we couldn't do earlier because
67 \catcode`+=\active \catcode`\_=\active}
344 % will have two active spaces as part of the argument with the
345 % `itemize'. Here we remove all active spaces from #1, and assign the
348 % This loses if there are any *other* active characters besides spaces
364 % Change the active space to expand to nothing.
530 \ifnum\catcode13=\active \else
741 % Allow normal characters that we make active in the argument (a file name).
752 % Restore active chars for included file
    [all...]
  /src/external/gpl3/binutils/dist/gprofng/doc/
texinfo.tex 62 % and turn on active characters that we couldn't do earlier because
65 \catcode`+=\active \catcode`\_=\active}
106 {\catcode`\'=\active \global\let\ptexquoteright'}% active in plain's math mode
506 % Several utility definitions with active space:
660 \ifnum\catcode`\^^M=\active \else
919 \def\c{\begingroup \catcode`\^^M=\active%
922 {\catcode`\^^M=\active \gdef\cxxx#1^^M{\endgroup}}
1502 \catcode`\\=\active \otherbackslas
    [all...]

Completed in 137 milliseconds

1 2