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

1234567891011>>

/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DObjCARCAnalysisUtils.cpp23 static cl::opt<bool, true> EnableARCOptimizations(
24 "enable-objc-arc-opts", cl::desc("enable/disable all ARC Optimizations"),
25 cl::location(EnableARCOpts), cl::init(true), cl::Hidden);
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-symbolizer/
H A Dllvm-symbolizer.cpp35 static cl::opt<bool>
36 ClUseSymbolTable("use-symbol-table", cl::init(true),
37 cl::desc("Prefer names in symbol table to names "
40 static cl::opt<FunctionNameKind> ClPrintFunctions(
41 "functions", cl::init(FunctionNameKind::LinkageName),
42 cl::desc("Print function name for a given address"), cl::ValueOptional,
43 cl::values(clEnumValN(FunctionNameKind::None, "none", "omit function name"),
50 static cl::alias ClPrintFunctionsShort("f", cl
[all...]
/freebsd-11-stable/contrib/libarchive/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...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DSizeOpts.cpp17 cl::opt<bool> EnablePGSO(
18 "pgso", cl::Hidden, cl::init(true),
19 cl::desc("Enable the profile guided size optimizations. "));
21 cl::opt<bool> PGSOLargeWorkingSetSizeOnly(
22 "pgso-lwss-only", cl::Hidden, cl::init(true),
23 cl::desc("Apply the profile guided size optimizations only "
26 cl::opt<bool> PGSOColdCodeOnly(
27 "pgso-cold-code-only", cl
[all...]
/freebsd-11-stable/lib/libc/iconv/
H A Dcitrus_lookup.c87 seq_get_num_entries_db(struct _citrus_lookup *cl) argument
90 return (cl->cl_dbnum);
94 seq_next_db(struct _citrus_lookup *cl, struct _region *key, argument
98 if (cl->cl_key) {
100 _region_init(key, cl->cl_key, cl->cl_keylen);
101 return (_db_lookup_by_s(cl->cl_db, cl->cl_key, data,
102 &cl->cl_dblocator));
105 if (cl
116 seq_lookup_db(struct _citrus_lookup *cl, const char *key, struct _region *data) argument
131 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
253 seq_open_plain(struct _citrus_lookup *cl, const char *name) argument
276 struct _citrus_lookup *cl; local
297 _citrus_lookup_seq_rewind(struct _citrus_lookup *cl) argument
307 _citrus_lookup_seq_next(struct _citrus_lookup *cl, struct _region *key, struct _region *data) argument
315 _citrus_lookup_seq_lookup(struct _citrus_lookup *cl, const char *key, struct _region *data) argument
323 _citrus_lookup_get_number_of_entries(struct _citrus_lookup *cl) argument
330 _citrus_lookup_seq_close(struct _citrus_lookup *cl) argument
342 struct _citrus_lookup *cl; local
[all...]
/freebsd-11-stable/contrib/llvm-project/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...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DPluginLoader.h30 static cl::opt<PluginLoader, false, cl::parser<std::string> >
31 LoadOpt("load", cl::ZeroOrMore, cl::value_desc("pluginfilename"),
32 cl::desc("Load the specified plugin"));
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-cov/
H A Dgcov.cpp84 cl::list<std::string> SourceFiles(cl::Positional, cl::OneOrMore,
85 cl::desc("SOURCEFILE"));
87 cl::opt<bool> AllBlocks("a", cl::Grouping, cl::init(false),
88 cl::desc("Display all basic blocks"));
89 cl::alias AllBlocksA("all-blocks", cl
[all...]
/freebsd-11-stable/contrib/llvm-project/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);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/
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...]
/freebsd-11-stable/lib/libc/i386/string/
H A Dstrcmp.S61 L2: movb (%eax),%cl
62 testb %cl,%cl
64 cmpb %cl,(%edx)
68 movb (%eax),%cl
69 testb %cl,%cl
71 cmpb %cl,(%edx)
75 movb (%eax),%cl
76 testb %cl,
[all...]
/freebsd-11-stable/sys/net/altq/
H A Daltq_rmclass.c195 struct rm_class *cl; local
226 cl = malloc(sizeof(struct rm_class), M_DEVBUF, M_NOWAIT | M_ZERO);
227 if (cl == NULL)
229 CALLOUT_INIT(&cl->callout_);
230 cl->q_ = malloc(sizeof(class_queue_t), M_DEVBUF, M_NOWAIT | M_ZERO);
231 if (cl->q_ == NULL) {
232 free(cl, M_DEVBUF);
239 cl->children_ = NULL;
240 cl->parent_ = parent;
241 cl
359 rmc_modclass(struct rm_class *cl, u_int nsecPerByte, int maxq, u_int maxidle, int minidle, u_int offtime, int pktsize) argument
422 struct rm_class *cl, *clh; local
474 rmc_depth_compute(struct rm_class *cl) argument
500 rmc_depth_recompute(rm_class_t *cl) argument
555 rmc_delete_class(struct rm_ifdat *ifd, struct rm_class *cl) argument
758 rmc_queue_packet(struct rm_class *cl, mbuf_t *m) argument
852 rmc_satisfied(struct rm_class *cl, struct timeval *now) argument
885 rmc_under_limit(struct rm_class *cl, struct timeval *now) argument
969 struct rm_class *cl = NULL, *first = NULL; local
1127 struct rm_class *cl, *first = NULL; local
1265 rm_class_t *cl, *borrowed; local
1440 rmc_drop_action(struct rm_class *cl) argument
1450 rmc_dropall(struct rm_class *cl) argument
1491 rmc_delay_action(struct rm_class *cl, struct rm_class *borrow) argument
1564 rmc_restart(struct rm_class *cl) argument
1593 rmc_root_overlimit(struct rm_class *cl, struct rm_class *borrow) argument
1605 _rmc_addq(rm_class_t *cl, mbuf_t *m) argument
1629 _rmc_dropq(rm_class_t *cl) argument
1638 _rmc_getq(rm_class_t *cl) argument
1656 _rmc_pollq(rm_class_t *cl) argument
[all...]
H A Daltq_hfsc.c159 #define is_a_parent_class(cl) ((cl)->cl_children != NULL)
228 struct hfsc_class *cl, *parent; local
259 cl = hfsc_class_create(hif, &rtsc, &lssc, &ulsc,
261 if (cl == NULL)
271 struct hfsc_class *cl; local
276 if ((cl = clh_to_clp(hif, a->qid)) == NULL)
279 return (hfsc_class_destroy(cl));
286 struct hfsc_class *cl; local
293 if ((cl
314 struct hfsc_class *cl; local
358 struct hfsc_class *cl; local
372 struct hfsc_class *cl, *p; local
568 hfsc_class_destroy(struct hfsc_class *cl) argument
656 hfsc_nextclass(struct hfsc_class *cl) argument
681 struct hfsc_class *cl; local
744 struct hfsc_class *cl; local
843 hfsc_addq(struct hfsc_class *cl, struct mbuf *m) argument
873 hfsc_getq(struct hfsc_class *cl) argument
891 hfsc_pollq(struct hfsc_class *cl) argument
897 hfsc_purgeq(struct hfsc_class *cl) argument
917 set_active(struct hfsc_class *cl, int len) argument
928 set_passive(struct hfsc_class *cl) argument
940 init_ed(struct hfsc_class *cl, int next_len) argument
968 update_ed(struct hfsc_class *cl, int next_len) argument
977 update_d(struct hfsc_class *cl, int next_len) argument
983 init_vf(struct hfsc_class *cl, int len) argument
1074 update_vf(struct hfsc_class *cl, int len, u_int64_t cur_time) argument
1159 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
1278 actlist_insert(struct hfsc_class *cl) argument
1299 actlist_remove(struct hfsc_class *cl) argument
1305 actlist_update(struct hfsc_class *cl) argument
1342 actlist_firstfit(struct hfsc_class *cl, u_int64_t cur_time) argument
1600 get_class_stats(struct hfsc_classstats *sp, struct hfsc_class *cl) argument
1682 struct hfsc_class *cl; local
2076 struct hfsc_class *cl, *parent; local
2110 struct hfsc_class *cl; local
2126 struct hfsc_class *cl; local
2152 struct hfsc_class *cl; local
2189 struct hfsc_class *cl; local
[all...]
/freebsd-11-stable/contrib/llvm-project/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...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
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);
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCTargetOptionsCommandFlags.inc21 static cl::opt<bool> RelaxAll("mc-relax-all",
22 cl::desc("When used with filetype=obj, "
25 static cl::opt<bool> IncrementalLinkerCompatible(
27 cl::desc(
31 static cl::opt<int> DwarfVersion("dwarf-version", cl::desc("Dwarf version"),
32 cl::init(0));
34 static cl::opt<bool> ShowMCInst("asm-show-inst",
35 cl::desc("Emit internal instruction representation to "
38 static cl
[all...]
/freebsd-11-stable/contrib/llvm-project/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...]
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-modextract/
H A Dllvm-modextract.cpp24 static cl::opt<bool>
25 BinaryExtract("b", cl::desc("Whether to perform binary extraction"));
27 static cl::opt<std::string> OutputFilename("o", cl::Required,
28 cl::desc("Output filename"),
29 cl::value_desc("filename"));
31 static cl::opt<std::string>
32 InputFilename(cl::Positional, cl::desc("<input bitcode>"), cl
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-readobj/
H A Dllvm-readobj.cpp48 cl::list<std::string> InputFilenames(cl::Positional,
49 cl::desc("<input object files>"),
50 cl::ZeroOrMore);
53 cl::opt<bool>
55 cl::desc("Equivalent to setting: --file-headers, --program-headers, "
59 cl::alias AllShort("a", cl::desc("Alias for --all"), cl::aliasopt(All));
62 cl
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonTargetMachine.cpp31 static cl::opt<bool> EnableCExtOpt("hexagon-cext", cl::Hidden, cl::ZeroOrMore,
32 cl::init(true), cl::desc("Enable Hexagon constant-extender optimization"));
34 static cl::opt<bool> EnableRDFOpt("rdf-opt", cl::Hidden, cl::ZeroOrMore,
35 cl::init(true), cl
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/tools/bugpoint/
H A Dbugpoint.cpp41 static cl::opt<bool>
42 FindBugs("find-bugs", cl::desc("Run many different optimization sequences "
44 cl::init(false));
46 static cl::list<std::string>
47 InputFilenames(cl::Positional, cl::OneOrMore,
48 cl::desc("<input llvm ll/bc files>"));
50 static cl::opt<unsigned> TimeoutValue(
51 "timeout", cl::init(300), cl
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-extract/
H A Dllvm-extract.cpp36 cl::OptionCategory ExtractCat("llvm-extract Options");
39 static cl::opt<std::string> InputFilename(cl::Positional,
40 cl::desc("<input bitcode file>"),
41 cl::init("-"),
42 cl::value_desc("filename"));
44 static cl::opt<std::string> OutputFilename("o",
45 cl::desc("Specify output filename"),
46 cl::value_desc("filename"),
47 cl
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/
H A DCommonOptionsParser.cpp84 int &argc, const char **argv, cl::OptionCategory &Category,
85 llvm::cl::NumOccurrencesFlag OccurrencesFlag, const char *Overview) {
87 static cl::opt<std::string> BuildPath("p", cl::desc("Build path"),
88 cl::Optional, cl::cat(Category),
89 cl::sub(*cl::AllSubCommands));
91 static cl::list<std::string> SourcePaths(
92 cl
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-mca/
H A Dllvm-mca.cpp65 static cl::OptionCategory ToolOptions("Tool Options");
66 static cl::OptionCategory ViewOptions("View Options");
68 static cl::opt<std::string> InputFilename(cl::Positional,
69 cl::desc("<input file>"),
70 cl::cat(ToolOptions), cl::init("-"));
72 static cl::opt<std::string> OutputFilename("o", cl::desc("Output filename"),
73 cl
[all...]

Completed in 156 milliseconds

1234567891011>>