HomeSort by: relevance | last modified time | path
    Searched defs:Level (Results 1 - 25 of 46) sorted by relevancy

1 2

  /src/sys/external/bsd/acpica/dist/parser/
pswalk.c 73 UINT32 Level = 0;
93 AcpiOsPrintf (" %*.s%s %p", (Level * 4), " ",
115 Level++;
140 Level--;
  /src/sys/external/bsd/acpica/dist/namespace/
nsload.c 248 UINT32 Level;
256 Level = 1;
262 while (Level > 0)
284 Level++;
295 Level--;
nswalk.c 205 UINT32 Level;
231 Level = 1;
235 * started. When Level is zero, the loop is done because we have
238 while (Level > 0 && ChildNode)
288 Status = DescendingCallback (ChildNode, Level,
296 Status = AscendingCallback (ChildNode, Level,
333 * Depth first search: Attempt to go down another level in the
339 (Level < MaxDepth) &&
346 Level++;
377 Level--
    [all...]
nsalloc.c 356 /* Deallocate all children at this level */
403 UINT32 Level = 1;
427 while (Level > 0)
446 Level++;
457 Level--;
503 UINT32 Level;
526 Level = 1;
532 while (Level > 0)
564 Level++;
579 Level--
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Frontend/
TextDiagnosticPrinter.cpp 52 DiagnosticsEngine::Level Level,
72 if (Level == DiagnosticsEngine::Error &&
82 << (Level == DiagnosticsEngine::Remark ? "-R" : "-W") << Opt;
109 void TextDiagnosticPrinter::HandleDiagnostic(DiagnosticsEngine::Level Level,
112 DiagnosticConsumer::HandleDiagnostic(Level, Info);
120 printDiagnosticOptions(DiagMessageStream, Level, Info, *DiagOpts);
136 TextDiagnostic::printDiagnosticLevel(OS, Level, DiagOpts->ShowColors);
138 OS, /*IsSupplemental=*/Level == DiagnosticsEngine::Note
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/Basic/
OperatorPrecedence.h 26 enum Level {
47 prec::Level getBinOpPrecedence(tok::TokenKind Kind, bool GreaterThanIsOperator,
DiagnosticIDs.h 166 /// The level of the diagnostic, after it has been through mapping.
167 enum Level {
180 /// level.
188 unsigned getCustomDiagID(Level L, StringRef FormatString);
228 /// Return the lowest-level warning option that enables the specified
314 /// Classify the specified diagnostic ID into a Level, consumable by
322 DiagnosticIDs::Level
338 void EmitDiag(DiagnosticsEngine &Diag, Level DiagLevel) const;
  /src/external/apache2/llvm/dist/clang/lib/AST/
AttrImpl.cpp 148 unsigned Level = 0;
151 if (Level <= Attr->getLevel()) {
152 Level = Attr->getLevel();
  /src/external/apache2/llvm/dist/clang/tools/diagtool/
ShowEnabledWarnings.cpp 29 DiagnosticsEngine::Level Level;
31 PrettyDiag(StringRef name, StringRef flag, DiagnosticsEngine::Level level)
32 : Name(name), Flag(flag), Level(level) {}
42 static char getCharForLevel(DiagnosticsEngine::Level Level) {
43 switch (Level) {
52 llvm_unreachable("Unknown diagnostic level");
    [all...]
  /src/sys/external/bsd/acpica/dist/compiler/
asltree.c 748 UINT32 Level;
761 Level = 0;
780 Status = DescendingCallback (Op, Level, Context);
787 Level++;
818 if (Level != 0 )
820 Level--;
839 Status = AscendingCallback (Op, Level, Context);
849 Level++;
872 if (Level != 0 )
874 Level--
    [all...]
  /src/sys/external/bsd/acpica/dist/disassembler/
dmresrc.c 261 UINT32 Level;
272 Level = Info->Level;
314 Level--;
315 AcpiDmIndent (Level);
322 Level--;
336 Level--;
340 AcpiDmEndDependentDescriptor (Info, Aml, ResourceLength, Level);
342 AcpiDmIndent (Level);
363 Info, Aml, ResourceLength, Level);
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/Frontend/
SerializedDiagnostics.h 18 /// A top-level block which represents any meta data associated
39 /// A stable version of DiagnosticIDs::Level.
43 enum Level {
  /src/external/apache2/llvm/dist/clang/include/clang/Tooling/Core/
Diagnostic.h 66 /// Represents the diagnostic with the level of severity and possible
69 enum Level {
76 Diagnostic(llvm::StringRef DiagnosticName, Level DiagLevel,
80 const SmallVector<DiagnosticMessage, 1> &Notes, Level DiagLevel,
92 /// Diagnostic level. Can indicate either an error or a warning.
93 Level DiagLevel;
  /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
BreadthFirstIterator.h 13 // * Normal breadth-first iteration - visit a graph level-by-level.
66 // Current level.
67 unsigned Level;
71 Level = 0;
102 Level += 1;
144 unsigned getLevel() const { return Level; }
  /src/games/robots/
extern.c 52 bool Was_bonus = false; /* Was a bonus last level */
69 int Level; /* Current level */
74 int Start_level = 1; /* Level on which to start */
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
ModuleBuilder.cpp 53 unsigned Level = --Self.HandlingTopLevelDecls;
54 if (Level == 0 && EmitDeferred)
  /src/external/apache2/llvm/dist/clang/lib/Format/
TokenAnnotator.h 40 : First(Line.Tokens.front().Tok), Level(Line.Level),
128 unsigned Level;
UnwrappedLineParser.h 43 /// The indent level of the \c UnwrappedLine.
44 unsigned Level;
123 // Parses a record (aka class) as a top level element. If ParseAsExpr is true,
146 // Used by addUnwrappedLine to denote whether to keep or remove a level
193 // FIXME: We are constantly running into bugs where Line.Level is incorrectly
194 // subtracted from beyond 0. Introduce a method to subtract from Line.Level
256 // branches) for each nesting level of preprocessor branches.
257 // \c PPBranchLevel stores the current nesting level of preprocessor
262 // for each nesting level.
265 // Contains the maximum number of branches at each nesting level
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
ScheduleDFS.h 9 // Definition of an ILP metric for machine level instruction scheduling.
91 /// Record a connection between subtrees and the connection level.
94 unsigned Level;
96 Connection(unsigned tree, unsigned level): TreeID(tree), Level(level) {}
111 /// Cache the current connection level of each subtree.
176 /// Get the connection level of a subtree.
178 /// For bottom-up trees, the connection level is the latency depth (in cycles)
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
CodeGen.h 33 enum Level { NotPIC=0, SmallPIC=1, BigPIC=2 };
37 enum Level { Default=0, Small=1, Large=2 };
50 // Code generation optimization level.
52 enum Level {
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
MLInlineAdvisor.cpp 82 unsigned Level = 0;
93 // level means we haven't visited it yet, meaning it's in this SCC.
96 Level = std::max(Level, Pos->second + 1);
103 FunctionLevels[F] = Level;
  /src/external/apache2/llvm/dist/llvm/tools/llvm-xray/
xray-graph.cpp 470 auto Level = ThreadStack.second.size();
472 errs() << "#" << Level-- << "\t"
  /src/external/apache2/llvm/dist/clang/lib/Basic/Targets/
X86.cpp 153 // here - turn on the sse4.2 if enabled, turn off the sse4.1 level if
319 X86SSEEnum Level = llvm::StringSwitch<X86SSEEnum>(Feature)
330 SSELevel = std::max(SSELevel, Level);
348 // matches the selected sse level.
  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
SILowerI1Copies.cpp 11 // form and a wave-level control flow graph.
251 // All visited / reachable block, tagged by level (level 0 is the def block,
252 // level 1 are all blocks reachable including but not going through the def
256 // Nearest common dominator of all visited blocks by level (level 0 is the
263 // Level at which a loop was found: 0 is not possible; 1 = a backward edge is
265 // itself has an edge to the def block, the loop level is 2), etc.
290 /// Return the level of \p PostDom if a loop was found, or 0 otherwise.
297 unsigned Level = 0
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/llvm-objdump/
SourcePrinter.cpp 392 uint32_t Level = 0;
398 Pos != End && Level < PrefixStrip; ++Pos) {
401 ++Level;

Completed in 50 milliseconds

1 2