| /src/external/apache2/llvm/dist/llvm/tools/llvm-cov/ |
| gcov.cpp | 86 cl::list<std::string> SourceFiles(cl::Positional, cl::OneOrMore, 87 cl::desc("SOURCEFILE")); 89 cl::opt<bool> AllBlocks("a", cl::Grouping, cl::init(false), 90 cl::desc("Display all basic blocks")); 91 cl::alias AllBlocksA("all-blocks", cl::aliasopt(AllBlocks)) [all...] |
| /src/external/bsd/libarchive/dist/libarchive/test/ |
| test_archive_cmdline.c | 33 struct archive_cmdline *cl; local 36 assert((cl = __archive_cmdline_allocate()) != NULL); 37 if (cl == NULL) 39 assertEqualInt(ARCHIVE_OK, __archive_cmdline_parse(cl, "gzip")); 40 assertEqualInt(1, cl->argc); 41 assertEqualString("gzip", cl->path); 42 assertEqualString("gzip", cl->argv[0]); 43 assertEqualInt(ARCHIVE_OK, __archive_cmdline_free(cl)); 45 assert((cl = __archive_cmdline_allocate()) != NULL); 46 if (cl == NULL [all...] |
| /src/external/apache2/llvm/dist/llvm/utils/fpcmp/ |
| fpcmp.cpp | 20 cl::opt<std::string> 21 File1(cl::Positional, cl::desc("<input file #1>"), cl::Required); 22 cl::opt<std::string> 23 File2(cl::Positional, cl::desc("<input file #2>"), cl::Required); 25 cl::opt<double> 26 RelTolerance("r", cl::desc("Relative error tolerated"), cl::init(0)) [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/ |
| SizeOpts.cpp | 17 cl::opt<bool> llvm::EnablePGSO( 18 "pgso", cl::Hidden, cl::init(true), 19 cl::desc("Enable the profile guided size optimizations. ")); 21 cl::opt<bool> llvm::PGSOLargeWorkingSetSizeOnly( 22 "pgso-lwss-only", cl::Hidden, cl::init(true), 23 cl::desc("Apply the profile guided size optimizations only " 26 cl::opt<bool> llvm::PGSOColdCodeOnly( 27 "pgso-cold-code-only", cl::Hidden, cl::init(false) [all...] |
| /src/lib/libc/citrus/ |
| citrus_lookup.c | 90 seq_get_num_entries_db(struct _citrus_lookup *cl) 92 return cl->cl_dbnum; 96 seq_next_db(struct _citrus_lookup *cl, 100 if (cl->cl_key) { 102 _region_init(key, cl->cl_key, cl->cl_keylen); 103 return _db_lookup_by_s(cl->cl_db, cl->cl_key, data, 104 &cl->cl_dblocator); 107 if (cl->cl_rewind) 275 struct _citrus_lookup *cl; local 337 struct _citrus_lookup *cl; local [all...] |
| /src/external/apache2/llvm/dist/llvm/tools/llvm-pdbutil/ |
| llvm-pdbutil.h | 77 extern llvm::cl::list<std::string> WithName; 79 extern llvm::cl::opt<bool> Compilands; 80 extern llvm::cl::opt<bool> Symbols; 81 extern llvm::cl::opt<bool> Globals; 82 extern llvm::cl::opt<bool> Classes; 83 extern llvm::cl::opt<bool> Enums; 84 extern llvm::cl::opt<bool> Funcsigs; 85 extern llvm::cl::opt<bool> Arrays; 86 extern llvm::cl::opt<bool> Typedefs; 87 extern llvm::cl::opt<bool> Pointers [all...] |
| llvm-pdbutil.cpp | 101 cl::SubCommand DumpSubcommand("dump", "Dump MSF and CodeView debug info"); 102 cl::SubCommand BytesSubcommand("bytes", "Dump raw bytes from the PDB file"); 104 cl::SubCommand DiaDumpSubcommand("diadump", 107 cl::SubCommand 111 cl::SubCommand 114 cl::SubCommand 118 cl::SubCommand MergeSubcommand("merge", 121 cl::SubCommand ExplainSubcommand("explain", 124 cl::SubCommand ExportSubcommand("export", 127 cl::OptionCategory TypeCategory("Symbol Type Options") [all...] |
| /src/sys/arch/mvme68k/stand/sboot/ |
| clock.c | 104 struct clockreg *cl = clockreg; local 107 cl->cl_csr |= CLK_READ; /* enable read (stop time) */ 108 sec = cl->cl_sec; 109 min = cl->cl_min; 110 hour = cl->cl_hour; 111 day = cl->cl_mday; 112 mon = cl->cl_month; 113 year = cl->cl_year; 114 cl->cl_csr &= ~CLK_READ; /* time wears on */
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/Support/ |
| PluginLoader.h | 34 static cl::opt<PluginLoader, false, cl::parser<std::string> > 35 LoadOpt("load", cl::ZeroOrMore, cl::value_desc("pluginfilename"), 36 cl::desc("Load the specified plugin"));
|
| /src/external/apache2/llvm/dist/llvm/lib/Support/ |
| TypeSize.cpp | 16 cl::opt<bool> ScalableErrorAsWarning( 17 "treat-scalable-fixed-error-as-warning", cl::Hidden, cl::init(false), 18 cl::desc("Treat issues where a fixed-width property is requested from a " 20 cl::ZeroOrMore);
|
| /src/external/apache2/llvm/dist/llvm/tools/llvm-xray/ |
| llvm-xray.cpp | 26 cl::ParseCommandLineOptions(argc, argv, 30 for (auto *SC : cl::getRegisteredSubcommands()) { 34 if (SC == &*cl::TopLevelSubCommand) { 35 cl::PrintHelpMessage(false, true); 46 cl::PrintHelpMessage(false, true);
|
| /src/external/apache2/llvm/dist/llvm/lib/IR/ |
| PrintPasses.cpp | 16 static cl::list<std::string> 18 llvm::cl::desc("Print IR before specified passes"), 19 cl::CommaSeparated, cl::Hidden); 21 static cl::list<std::string> 22 PrintAfter("print-after", llvm::cl::desc("Print IR after specified passes"), 23 cl::CommaSeparated, cl::Hidden); 25 static cl::opt<bool> PrintBeforeAll("print-before-all", 26 llvm::cl::desc("Print IR before each pass") [all...] |
| DiagnosticHandler.cpp | 46 static cl::opt<PassRemarksOpt, true, cl::parser<std::string>> PassRemarks( 47 "pass-remarks", cl::value_desc("pattern"), 48 cl::desc("Enable optimization remarks from passes whose name match " 50 cl::Hidden, cl::location(PassRemarksPassedOptLoc), cl::ValueRequired, 51 cl::ZeroOrMore); 55 static cl::opt<PassRemarksOpt, true, cl::parser<std::string>> PassRemarksMissed [all...] |
| /src/external/apache2/llvm/dist/llvm/tools/llvm-reduce/ |
| llvm-reduce.cpp | 32 static cl::OptionCategory Options("llvm-reduce options"); 34 static cl::opt<bool> Help("h", cl::desc("Alias for -help"), cl::Hidden, 35 cl::cat(Options)); 36 static cl::opt<bool> Version("v", cl::desc("Alias for -version"), cl::Hidden, 37 cl::cat(Options)); 39 static cl::opt<bool [all...] |
| /src/external/apache2/llvm/dist/llvm/tools/llvm-profgen/ |
| llvm-profgen.cpp | 21 static cl::list<std::string> PerfTraceFilenames( 22 "perfscript", cl::value_desc("perfscript"), cl::OneOrMore, 23 llvm::cl::MiscFlags::CommaSeparated, 24 cl::desc("Path of perf-script trace created by Linux perf tool with " 27 static cl::list<std::string> 28 BinaryFilenames("binary", cl::value_desc("binary"), cl::OneOrMore, 29 llvm::cl::MiscFlags::CommaSeparated, 30 cl::desc("Path of profiled binary files")) [all...] |
| /src/sys/altq/ |
| altq_hfsc.c | 167 #define is_a_parent_class(cl) ((cl)->cl_children != NULL) 244 struct hfsc_class *cl, *parent; local 275 cl = hfsc_class_create(hif, &rtsc, &lssc, &ulsc, 277 if (cl == NULL) 287 struct hfsc_class *cl; local 292 if ((cl = clh_to_clp(hif, a->qid)) == NULL) 295 return (hfsc_class_destroy(cl)); 302 struct hfsc_class *cl; local 309 if ((cl = clh_to_clp(hif, a->qid)) == NULL 332 struct hfsc_class *cl; local 374 struct hfsc_class *cl; local 388 struct hfsc_class *cl, *p; local 673 struct hfsc_class *cl; local 738 struct hfsc_class *cl; local 1260 struct hfsc_class *p, *cl = NULL; local 1692 struct hfsc_class *cl; local 2047 struct hfsc_class *cl, *parent; local 2080 struct hfsc_class *cl; local 2095 struct hfsc_class *cl; local 2120 struct hfsc_class *cl; local 2155 struct hfsc_class *cl; local [all...] |
| altq_rmclass.c | 203 struct rm_class *cl; local 226 cl = malloc(sizeof(struct rm_class), M_DEVBUF, M_WAITOK|M_ZERO); 227 if (cl == NULL) 229 CALLOUT_INIT(&cl->callout_); 231 cl->q_ = malloc(sizeof(class_queue_t), M_DEVBUF, M_WAITOK|M_ZERO); 232 if (cl->q_ == NULL) { 233 free(cl, M_DEVBUF); 240 cl->children_ = NULL; 241 cl->parent_ = parent; 242 cl->borrow_ = borrow 412 struct rm_class *cl, *clh; local 965 struct rm_class *cl = NULL, *first = NULL; local 1123 struct rm_class *cl, *first = NULL; local 1264 rm_class_t *cl, *cl0, *borrowed; local [all...] |
| /src/external/apache2/llvm/dist/llvm/tools/llvm-split/ |
| llvm-split.cpp | 27 static cl::opt<std::string> 28 InputFilename(cl::Positional, cl::desc("<input bitcode file>"), 29 cl::init("-"), cl::value_desc("filename")); 31 static cl::opt<std::string> 32 OutputFilename("o", cl::desc("Override output filename"), 33 cl::value_desc("filename")); 35 static cl::opt<unsigned> NumOutputs("j", cl::Prefix, cl::init(2) [all...] |
| /src/external/apache2/llvm/dist/llvm/tools/llvm-strings/ |
| llvm-strings.cpp | 27 static cl::list<std::string> InputFileNames(cl::Positional, 28 cl::desc("<input object files>"), 29 cl::ZeroOrMore); 31 static cl::opt<bool> 33 cl::desc("Print the name of the file before each string")); 34 static cl::alias PrintFileNameShort("f", cl::desc(""), 35 cl::aliasopt(PrintFileName)); 37 static cl::opt<int [all...] |
| /src/external/apache2/llvm/dist/llvm/tools/llvm-readobj/ |
| llvm-readobj.cpp | 51 cl::list<std::string> InputFilenames(cl::Positional, 52 cl::desc("<input object files>"), 53 cl::ZeroOrMore); 56 cl::opt<bool> 58 cl::desc("Equivalent to setting: --file-headers, --program-headers, " 62 cl::alias AllShort("a", cl::desc("Alias for --all"), cl::aliasopt(All)); 65 cl::opt<bool [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/CodeGen/ |
| CommandFlags.cpp | 25 static cl::opt<TY> *NAME##View; \ 32 static cl::list<TY> *NAME##View; \ 105 static cl::opt<std::string> MArch( 106 "march", cl::desc("Architecture to generate code for (see --version)")); 109 static cl::opt<std::string> MCPU( 110 "mcpu", cl::desc("Target a specific cpu type (-mcpu=help for details)"), 111 cl::value_desc("cpu-name"), cl::init("")); 114 static cl::list<std::string> MAttrs( 115 "mattr", cl::CommaSeparated [all...] |
| BasicTargetTransformInfo.cpp | 27 cl::opt<unsigned> 28 llvm::PartialUnrollingThreshold("partial-unrolling-threshold", cl::init(0), 29 cl::desc("Threshold for partial unrolling"), 30 cl::Hidden);
|
| /src/external/apache2/llvm/dist/llvm/tools/llvm-as/ |
| llvm-as.cpp | 33 cl::OptionCategory AsCat("llvm-as Options"); 35 static cl::opt<std::string> InputFilename(cl::Positional, 36 cl::desc("<input .llvm file>"), 37 cl::init("-")); 39 static cl::opt<std::string> OutputFilename("o", 40 cl::desc("Override output filename"), 41 cl::value_desc("filename"), 42 cl::cat(AsCat)); 44 static cl::opt<bool> Force("f", cl::desc("Enable binary output on terminals") [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/ |
| HexagonTargetMachine.cpp | 34 static cl::opt<bool> EnableCExtOpt("hexagon-cext", cl::Hidden, cl::ZeroOrMore, 35 cl::init(true), cl::desc("Enable Hexagon constant-extender optimization")); 37 static cl::opt<bool> EnableRDFOpt("rdf-opt", cl::Hidden, cl::ZeroOrMore, 38 cl::init(true), cl::desc("Enable RDF-based optimizations")) [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Analysis/ |
| ObjCARCAnalysisUtils.cpp | 24 static cl::opt<bool, true> EnableARCOptimizations( 25 "enable-objc-arc-opts", cl::desc("enable/disable all ARC Optimizations"), 26 cl::location(EnableARCOpts), cl::init(true), cl::Hidden);
|