Searched refs:cl (Results 1 - 25 of 1733) sorted by relevance

1234567891011>>

/netbsd-current/external/apache2/llvm/dist/llvm/tools/llvm-cov/
H A Dgcov.cpp86 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
[all...]
/netbsd-current/external/bsd/libarchive/dist/libarchive/test/
H A Dtest_archive_cmdline.c34 struct archive_cmdline *cl; local
37 assert((cl = __archive_cmdline_allocate()) != NULL);
38 if (cl == NULL)
40 assertEqualInt(ARCHIVE_OK, __archive_cmdline_parse(cl, "gzip"));
41 assertEqualInt(1, cl->argc);
42 assertEqualString("gzip", cl->path);
43 assertEqualString("gzip", cl->argv[0]);
44 assertEqualInt(ARCHIVE_OK, __archive_cmdline_free(cl));
46 assert((cl = __archive_cmdline_allocate()) != NULL);
47 if (cl
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/utils/fpcmp/
H A Dfpcmp.cpp20 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
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
H A DSizeOpts.cpp17 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
[all...]
/netbsd-current/lib/libc/citrus/
H A Dcitrus_lookup.c90 seq_get_num_entries_db(struct _citrus_lookup *cl) argument
92 return cl->cl_dbnum;
96 seq_next_db(struct _citrus_lookup *cl, argument
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
118 seq_lookup_db(struct _citrus_lookup *cl, const char *key, struct _region *data) argument
132 seq_close_db(struct _citrus_lookup *cl) argument
139 seq_open_db(struct _citrus_lookup *cl, const char *name) argument
171 seq_next_plain(struct _citrus_lookup *cl, struct _region *key, struct _region *data) argument
211 seq_get_num_entries_plain(struct _citrus_lookup *cl) argument
223 seq_lookup_plain(struct _citrus_lookup *cl, const char *key, struct _region *data) argument
246 seq_close_plain(struct _citrus_lookup *cl) argument
252 seq_open_plain(struct _citrus_lookup *cl, const char *name) argument
275 struct _citrus_lookup *cl; local
296 _citrus_lookup_seq_rewind(struct _citrus_lookup *cl) argument
305 _citrus_lookup_seq_next(struct _citrus_lookup *cl, struct _region *key, struct _region *data) argument
312 _citrus_lookup_seq_lookup(struct _citrus_lookup *cl, const char *key, struct _region *data) argument
319 _citrus_lookup_get_number_of_entries(struct _citrus_lookup *cl) argument
325 _citrus_lookup_seq_close(struct _citrus_lookup *cl) argument
337 struct _citrus_lookup *cl; local
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/tools/llvm-pdbutil/
H A Dllvm-pdbutil.h77 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
[all...]
H A Dllvm-pdbutil.cpp101 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
[all...]
/netbsd-current/sys/arch/mvme68k/stand/sboot/
H A Dclock.c104 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 */
/netbsd-current/external/apache2/llvm/dist/llvm/tools/llvm-xray/
H A Dllvm-xray.cpp26 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);
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/Support/
H A DPluginLoader.h34 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"));
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Support/
H A DTypeSize.cpp16 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);
/netbsd-current/external/apache2/llvm/dist/llvm/lib/IR/
H A DPrintPasses.cpp16 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
[all...]
H A DDiagnosticHandler.cpp46 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
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/tools/llvm-reduce/
H A Dllvm-reduce.cpp32 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
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/tools/llvm-profgen/
H A Dllvm-profgen.cpp21 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
[all...]
/netbsd-current/sys/altq/
H A Daltq_hfsc.c167 #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
332 struct hfsc_class *cl; local
374 struct hfsc_class *cl; local
388 struct hfsc_class *cl, *p; local
565 hfsc_class_destroy(struct hfsc_class *cl) argument
647 hfsc_nextclass(struct hfsc_class *cl) argument
673 struct hfsc_class *cl; local
738 struct hfsc_class *cl; local
835 hfsc_addq(struct hfsc_class *cl, struct mbuf *m) argument
861 hfsc_getq(struct hfsc_class *cl) argument
875 hfsc_pollq(struct hfsc_class *cl) argument
881 hfsc_purgeq(struct hfsc_class *cl) argument
901 set_active(struct hfsc_class *cl, int len) argument
912 set_passive(struct hfsc_class *cl) argument
924 init_ed(struct hfsc_class *cl, int next_len) argument
952 update_ed(struct hfsc_class *cl, int next_len) argument
961 update_d(struct hfsc_class *cl, int next_len) argument
967 init_vf(struct hfsc_class *cl, int len) argument
1058 update_vf(struct hfsc_class *cl, int len, u_int64_t cur_time) argument
1143 update_cfmin(struct hfsc_class *cl) argument
1190 ellist_insert(struct hfsc_class *cl) argument
1212 ellist_remove(struct hfsc_class *cl) argument
1220 ellist_update(struct hfsc_class *cl) argument
1260 struct hfsc_class *p, *cl = NULL; local
1292 actlist_insert(struct hfsc_class *cl) argument
1313 actlist_remove(struct hfsc_class *cl) argument
1319 actlist_update(struct hfsc_class *cl) argument
1356 actlist_firstfit(struct hfsc_class *cl, u_int64_t cur_time) argument
1614 get_class_stats(struct hfsc_classstats *sp, struct hfsc_class *cl) argument
1692 struct hfsc_class *cl; local
1761 hfsc_class_modify(struct hfsc_class *cl, struct service_curve *rsc, struct service_curve *fsc, struct service_curve *usc) argument
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...]
H A Daltq_rmclass.c203 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
351 rmc_modclass(struct rm_class *cl, uint64_t psecPerByte, int maxq, u_int maxidle, int minidle, u_int offtime, int pktsize) argument
412 struct rm_class *cl, *clh; local
464 rmc_depth_compute(struct rm_class *cl) argument
490 rmc_depth_recompute(rm_class_t *cl) argument
545 rmc_delete_class(struct rm_ifdat *ifd, struct rm_class *cl) argument
750 rmc_queue_packet(struct rm_class *cl, mbuf_t *m) argument
844 rmc_satisfied(struct rm_class *cl, struct timespec *now) argument
877 rmc_under_limit(struct rm_class *cl, struct timespec *now) argument
961 struct rm_class *cl = NULL, *first = NULL; local
1119 struct rm_class *cl, *first = NULL; local
1260 rm_class_t *cl, *cl0, *borrowed; local
1436 rmc_drop_action(struct rm_class *cl) argument
1447 rmc_dropall(struct rm_class *cl) argument
1486 rmc_delay_action(struct rm_class *cl, struct rm_class *borrow) argument
1568 rmc_restart(struct rm_class *cl) argument
1595 rmc_root_overlimit(struct rm_class *cl, struct rm_class *borrow) argument
1608 _rmc_addq(rm_class_t *cl, mbuf_t *m) argument
1628 _rmc_dropq(rm_class_t *cl) argument
1637 _rmc_getq(rm_class_t *cl) argument
1651 _rmc_pollq(rm_class_t *cl) argument
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/tools/llvm-split/
H A Dllvm-split.cpp27 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
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/tools/llvm-strings/
H A Dllvm-strings.cpp27 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
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/tools/llvm-readobj/
H A Dllvm-readobj.cpp51 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
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/lib/CodeGen/
H A DCommandFlags.cpp25 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
[all...]
H A DBasicTargetTransformInfo.cpp27 cl::opt<unsigned>
28 llvm::PartialUnrollingThreshold("partial-unrolling-threshold", cl::init(0),
29 cl::desc("Threshold for partial unrolling"),
30 cl::Hidden);
/netbsd-current/external/apache2/llvm/dist/llvm/tools/llvm-as/
H A Dllvm-as.cpp33 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
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
H A DHexagonTargetMachine.cpp34 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
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Analysis/
H A DObjCARCAnalysisUtils.cpp24 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);

Completed in 394 milliseconds

1234567891011>>