| /openbsd-src/gnu/usr.bin/texinfo/util/ |
| H A D | outline.gawk | 29 Level["@top"] = 0 30 Level["@appendix"] = 1 31 Level["@chapter"] = 1 32 Level["@majorheading"] = 1 33 Level["@unnumbered"] = 1 34 Level["@appendixsec"] = 2 35 Level["@heading"] = 2 36 Level["@section"] = 2 37 Level["@unnumberedsec"] = 2 38 Level["@unnumberedsubsec"] = 3 [all …]
|
| H A D | prepinfo.awk | 28 Level["@top"] = 0 29 Level["@appendix"] = 1 30 Level["@chapter"] = 1 31 Level["@majorheading"] = 1 32 Level["@unnumbered"] = 1 33 Level["@appendixsec"] = 2 34 Level["@heading"] = 2 35 Level["@section"] = 2 36 Level["@unnumberedsec"] = 2 37 Level["@unnumberedsubsec"] = 3 [all …]
|
| /openbsd-src/gnu/llvm/clang/include/clang/Frontend/ |
| H A D | DiagnosticRenderer.h | 69 DiagnosticsEngine::Level LastLevel = DiagnosticsEngine::Ignored; 77 DiagnosticsEngine::Level Level, 83 DiagnosticsEngine::Level Level, 87 DiagnosticsEngine::Level Level, 98 DiagnosticsEngine::Level Level) {} in beginDiagnostic() argument 100 DiagnosticsEngine::Level Level) {} in endDiagnostic() argument 105 DiagnosticsEngine::Level Level); 110 void emitCaret(FullSourceLoc Loc, DiagnosticsEngine::Level Level, 113 DiagnosticsEngine::Level Level, 115 void emitMacroExpansions(FullSourceLoc Loc, DiagnosticsEngine::Level Level, [all …]
|
| H A D | TextDiagnostic.h | 52 DiagnosticsEngine::Level Level, 77 DiagnosticsEngine::Level Level, StringRef Message, 82 DiagnosticsEngine::Level Level, 85 void emitCodeContext(FullSourceLoc Loc, DiagnosticsEngine::Level Level, in emitCodeContext() argument 88 emitSnippetAndCaret(Loc, Level, Ranges, Hints); in emitCodeContext() 102 void emitSnippetAndCaret(FullSourceLoc Loc, DiagnosticsEngine::Level Level,
|
| H A D | SARIFDiagnostic.h | 37 DiagnosticsEngine::Level Level, StringRef Message, 42 DiagnosticsEngine::Level Level, 45 void emitCodeContext(FullSourceLoc Loc, DiagnosticsEngine::Level Level, in emitCodeContext() argument 67 DiagnosticsEngine::Level Level);
|
| /openbsd-src/gnu/llvm/llvm/lib/Passes/ |
| H A D | PassBuilderPipelines.cpp | 302 OptimizationLevel Level) { in invokePeepholeEPCallbacks() argument 304 C(FPM, Level); in invokePeepholeEPCallbacks() 320 PassBuilder::buildO1FunctionSimplificationPipeline(OptimizationLevel Level, in buildO1FunctionSimplificationPipeline() argument 339 invokePeepholeEPCallbacks(FPM, Level); in buildO1FunctionSimplificationPipeline() 388 C(LPM2, Level); in buildO1FunctionSimplificationPipeline() 402 LPM2.addPass(LoopFullUnrollPass(Level.getSpeedupLevel(), in buildO1FunctionSimplificationPipeline() 407 C(LPM2, Level); in buildO1FunctionSimplificationPipeline() 444 invokePeepholeEPCallbacks(FPM, Level); in buildO1FunctionSimplificationPipeline() 449 C(FPM, Level); in buildO1FunctionSimplificationPipeline() 458 invokePeepholeEPCallbacks(FPM, Level); in buildO1FunctionSimplificationPipeline() [all …]
|
| /openbsd-src/gnu/llvm/llvm/lib/Support/ |
| H A D | IntervalMap.cpp | 25 NodeRef Path::getLeftSibling(unsigned Level) const { in getLeftSibling() 27 if (Level == 0) in getLeftSibling() 31 unsigned l = Level - 1; in getLeftSibling() 43 for (++l; l != Level; ++l) in getLeftSibling() 48 void Path::moveLeft(unsigned Level) { in moveLeft() argument 49 assert(Level != 0 && "Cannot move the root node"); in moveLeft() 54 l = Level - 1; in moveLeft() 59 } else if (height() < Level) in moveLeft() 61 path.resize(Level + 1, Entry(nullptr, 0, 0)); in moveLeft() 68 for (++l; l != Level; ++l) { in moveLeft() [all …]
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/CodeGen/ |
| H A D | SchedulerRegistry.h | 33 ScheduleDAGSDNodes *(*)(SelectionDAGISel *, CodeGenOpt::Level)> { 36 CodeGenOpt::Level); 64 CodeGenOpt::Level OptLevel); 69 CodeGenOpt::Level OptLevel); 76 CodeGenOpt::Level); 83 CodeGenOpt::Level); 88 CodeGenOpt::Level OptLevel); 94 CodeGenOpt::Level OptLevel); 98 CodeGenOpt::Level OptLevel); 103 CodeGenOpt::Level OptLevel);
|
| /openbsd-src/gnu/llvm/clang/lib/Frontend/ |
| H A D | TextDiagnosticPrinter.cpp | 52 DiagnosticsEngine::Level Level, in printDiagnosticOptions() argument 72 if (Level == DiagnosticsEngine::Error && in printDiagnosticOptions() 82 << (Level == DiagnosticsEngine::Remark ? "-R" : "-W") << Opt; in printDiagnosticOptions() 109 void TextDiagnosticPrinter::HandleDiagnostic(DiagnosticsEngine::Level Level, in HandleDiagnostic() argument 112 DiagnosticConsumer::HandleDiagnostic(Level, Info); in HandleDiagnostic() 120 printDiagnosticOptions(DiagMessageStream, Level, Info, *DiagOpts); in HandleDiagnostic() 136 TextDiagnostic::printDiagnosticLevel(OS, Level, DiagOpts->ShowColors); in HandleDiagnostic() 138 OS, /*IsSupplemental=*/Level == DiagnosticsEngine::Note, in HandleDiagnostic() 152 FullSourceLoc(Info.getLocation(), Info.getSourceManager()), Level, in HandleDiagnostic()
|
| H A D | TextDiagnosticBuffer.cpp | 23 void TextDiagnosticBuffer::HandleDiagnostic(DiagnosticsEngine::Level Level, in HandleDiagnostic() argument 26 DiagnosticConsumer::HandleDiagnostic(Level, Info); in HandleDiagnostic() 30 switch (Level) { in HandleDiagnostic() 34 All.emplace_back(Level, Notes.size()); in HandleDiagnostic() 38 All.emplace_back(Level, Warnings.size()); in HandleDiagnostic() 42 All.emplace_back(Level, Remarks.size()); in HandleDiagnostic() 47 All.emplace_back(Level, Errors.size()); in HandleDiagnostic()
|
| H A D | SerializedDiagnosticPrinter.cpp | 69 DiagnosticsEngine::Level Level, StringRef Message, 74 DiagnosticsEngine::Level Level, in emitDiagnosticLoc() argument 79 void emitCodeContext(FullSourceLoc Loc, DiagnosticsEngine::Level Level, 84 DiagnosticsEngine::Level Level) override; 86 DiagnosticsEngine::Level Level) override; 156 void HandleDiagnostic(DiagnosticsEngine::Level DiagLevel, 191 DiagnosticsEngine::Level Level, StringRef Message, 206 unsigned getEmitDiagnosticFlag(DiagnosticsEngine::Level DiagLevel, 540 unsigned SDiagsWriter::getEmitDiagnosticFlag(DiagnosticsEngine::Level DiagLevel, in getEmitDiagnosticFlag() 571 void SDiagsWriter::HandleDiagnostic(DiagnosticsEngine::Level DiagLevel, in HandleDiagnostic() [all …]
|
| H A D | DiagnosticRenderer.cpp | 87 DiagnosticsEngine::Level Level, in emitDiagnostic() argument 94 beginDiagnostic(D, Level); in emitDiagnostic() 98 emitDiagnosticMessage(Loc, PresumedLoc(), Level, Message, Ranges, D); in emitDiagnostic() 123 emitIncludeStack(Loc, PLoc, Level); in emitDiagnostic() 126 emitDiagnosticMessage(Loc, PLoc, Level, Message, Ranges, D); in emitDiagnostic() 127 emitCaret(Loc, Level, MutableRanges, FixItHints); in emitDiagnostic() 132 emitMacroExpansions(UnexpandedLoc, Level, MutableRanges, FixItHints); in emitDiagnostic() 137 LastLevel = Level; in emitDiagnostic() 139 endDiagnostic(D, Level); in emitDiagnostic() 165 DiagnosticsEngine::Level Level) { in emitIncludeStack() argument [all …]
|
| H A D | LogDiagnosticPrinter.cpp | 26 static StringRef getLevelName(DiagnosticsEngine::Level Level) { in getLevelName() argument 27 switch (Level) { in getLevelName() 111 void LogDiagnosticPrinter::HandleDiagnostic(DiagnosticsEngine::Level Level, in HandleDiagnostic() argument 114 DiagnosticConsumer::HandleDiagnostic(Level, Info); in HandleDiagnostic() 129 DE.DiagnosticLevel = Level; in HandleDiagnostic()
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/ADT/ |
| H A D | IntervalMap.h | 797 template <typename NodeT> NodeT &node(unsigned Level) const { in node() argument 798 return *reinterpret_cast<NodeT*>(path[Level].node); in node() 800 unsigned size(unsigned Level) const { return path[Level].size; } in size() argument 801 unsigned offset(unsigned Level) const { return path[Level].offset; } in offset() argument 802 unsigned &offset(unsigned Level) { return path[Level].offset; } in offset() argument 824 NodeRef &subtree(unsigned Level) const { in subtree() argument 825 return path[Level].subtree(path[Level].offset); in subtree() 830 void reset(unsigned Level) { in reset() argument 831 path[Level] = Entry(subtree(Level - 1), offset(Level)); in reset() 850 void setSize(unsigned Level, unsigned Size) { in setSize() argument [all …]
|
| /openbsd-src/gnu/llvm/llvm/lib/Analysis/ |
| H A D | DependenceAnalysis.cpp | 195 for (unsigned Level = 1; Level <= D->getLevels(); Level++) { in dumpExampleDependence() local 196 if (D->isSplitable(Level)) { in dumpExampleDependence() 197 OS << " da analyze - split level = " << Level; in dumpExampleDependence() 198 OS << ", iteration = " << *DA->getSplitIteration(*D, Level); in dumpExampleDependence() 291 for (unsigned Level = 1; Level <= Levels; ++Level) { in isDirectionNegative() local 292 unsigned char Direction = DV[Level - 1].Direction; in isDirectionNegative() 310 for (unsigned Level = 1; Level <= Levels; ++Level) { in normalize() local 311 unsigned char Direction = DV[Level - 1].Direction; in normalize() 319 DV[Level - 1].Direction = RevDirection; in normalize() 321 if (DV[Level - 1].Distance != nullptr) in normalize() [all …]
|
| /openbsd-src/gnu/llvm/clang/tools/diagtool/ |
| H A D | ShowEnabledWarnings.cpp | 29 DiagnosticsEngine::Level Level; member 31 PrettyDiag(StringRef name, StringRef flag, DiagnosticsEngine::Level level) in PrettyDiag() 32 : Name(name), Flag(flag), Level(level) {} in PrettyDiag() 42 static char getCharForLevel(DiagnosticsEngine::Level Level) { in getCharForLevel() argument 43 switch (Level) { in getCharForLevel() 126 DiagnosticsEngine::Level DiagLevel = in run() 138 Out << getCharForLevel(PD.Level) << " "; in run()
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/Analysis/ |
| H A D | DependenceAnalysis.h | 157 virtual unsigned getDirection(unsigned Level) const { return DVEntry::ALL; } in getDirection() argument 161 virtual const SCEV *getDistance(unsigned Level) const { return nullptr; } in getDistance() argument 175 virtual bool isPeelFirst(unsigned Level) const { return false; } in isPeelFirst() argument 179 virtual bool isPeelLast(unsigned Level) const { return false; } in isPeelLast() argument 183 virtual bool isSplitable(unsigned Level) const { return false; } in isSplitable() argument 188 virtual bool isScalar(unsigned Level) const; 250 unsigned getDirection(unsigned Level) const override; 254 const SCEV *getDistance(unsigned Level) const override; 268 bool isPeelFirst(unsigned Level) const override; 272 bool isPeelLast(unsigned Level) const override; [all …]
|
| /openbsd-src/gnu/usr.bin/perl/cpan/Test-Simple/lib/Test/ |
| H A D | Builder.pm | 39 our $Level = 1; 52 #$hub->add_context_aquire(sub {$_[0]->{level} += $Level - 1}); 151 # Non-TB tools normally expect 0 added to the level. $Level is normally 1. So 152 # we only want the level to change if $Level != 1. 154 Test2::API::test2_add_callback_context_aquire(sub { $_[0]->{level} += $Level - 1 }); 188 # 1 for our frame, another for the -1 off of $Level in our hook at the top. 374 $ok = eval { local $Level = 1; $code->(@args); 1 }; 438 $Level = 1; 503 local $Level = $Level [all...] |
| /openbsd-src/gnu/llvm/llvm/include/llvm/Support/ |
| H A D | CodeGen.h | 36 enum Level { NotPIC=0, SmallPIC=1, BigPIC=2 }; enum 40 enum Level { Default=0, Small=1, Large=2 }; enum 57 enum Level : IDType { enum 66 inline std::optional<Level> getLevel(IDType ID) { in getLevel() 69 return static_cast<Level>(ID); in getLevel() 74 inline std::optional<Level> parseLevel(char C) { in parseLevel()
|
| /openbsd-src/gnu/usr.bin/perl/t/mro/ |
| H A D | complex_dfs_utf8.t | 15 Level 5 8 | A | 9 | B | A | C | (More General) 22 Level 4 7 | D | | 27 Level 3 4 | G | 6 | E | | 32 Level 2 3 | H | 5 | F | | 40 Level 1 1 | J | 2 | I | | 45 Level 0 0 | K | (More Specialized)
|
| H A D | complex_c3_utf8.t | 15 Level 5 8 | A | 9 | B | A | C | (More General) 22 Level 4 7 | D | | 27 Level 3 4 | G | 6 | E | | 32 Level 2 3 | H | 5 | F | | 40 Level 1 1 | J | 2 | I | | 45 Level 0 0 | K | (More Specialized)
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/Passes/ |
| H A D | PassBuilder.h | 176 buildFunctionSimplificationPipeline(OptimizationLevel Level, 194 ModulePassManager buildModuleSimplificationPipeline(OptimizationLevel Level, 199 ModuleInlinerWrapperPass buildInlinerPipeline(OptimizationLevel Level, 204 ModulePassManager buildModuleInlinerPipeline(OptimizationLevel Level, 221 buildModuleOptimizationPipeline(OptimizationLevel Level, 235 ModulePassManager buildPerModuleDefaultPipeline(OptimizationLevel Level, 250 ModulePassManager buildThinLTOPreLinkDefaultPipeline(OptimizationLevel Level); 264 buildThinLTODefaultPipeline(OptimizationLevel Level, 279 ModulePassManager buildLTOPreLinkDefaultPipeline(OptimizationLevel Level); 292 ModulePassManager buildLTODefaultPipeline(OptimizationLevel Level, [all …]
|
| /openbsd-src/usr.bin/file/magdir/ |
| H A D | dump | 12 >692 belong 0 Level zero, type: 13 >692 belong >0 Level %d, type: 31 >692 belong 0 Level zero, type: 32 >692 belong >0 Level %d, type: 50 >692 lelong 0 Level zero, type: 51 >692 lelong >0 Level %d, type: 69 >692 lelong 0 Level zero, type: 70 >692 lelong >0 Level %d, type: 100 >692 belong 0 Level zero, type: 101 >692 belong >0 Level %d, type: [all …]
|
| /openbsd-src/gnu/usr.bin/perl/cpan/Test-Simple/t/Legacy/subtest/ |
| H A D | predicate.t | 35 local $Test::Builder::Level = $Test::Builder::Level + 1; 64 local $Test::Builder::Level = $Test::Builder::Level + 1; 119 local $Test::Builder::Level = $Test::Builder::Level + 1;
|
| /openbsd-src/gnu/usr.bin/perl/cpan/IO-Compress/t/ |
| H A D | 005defhdr.t | 135 [ {-Level => 0}, { FLEVEL => ZLIB_FLG_LEVEL_FASTEST} ], 136 [ {-Level => 1}, { FLEVEL => ZLIB_FLG_LEVEL_FASTEST} ], 137 [ {-Level => 2}, { FLEVEL => ZLIB_FLG_LEVEL_FAST } ], 138 [ {-Level => 3}, { FLEVEL => ZLIB_FLG_LEVEL_FAST } ], 139 [ {-Level => 4}, { FLEVEL => ZLIB_FLG_LEVEL_FAST } ], 140 [ {-Level => 5}, { FLEVEL => ZLIB_FLG_LEVEL_FAST } ], 141 [ {-Level => 6}, { FLEVEL => ZLIB_FLG_LEVEL_DEFAULT} ], 142 [ {-Level => 7}, { FLEVEL => ZLIB_FLG_LEVEL_SLOWEST} ], 143 [ {-Level => 8}, { FLEVEL => ZLIB_FLG_LEVEL_SLOWEST} ], 144 [ {-Level [all...] |