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

1234567891011>>

/freebsd-11.0-release/contrib/llvm/lib/Analysis/
H A DObjCARCAnalysisUtils.cpp24 static cl::opt<bool, true>
26 cl::desc("enable/disable all ARC Optimizations"),
27 cl::location(EnableARCOpts),
28 cl::init(true));
/freebsd-11.0-release/contrib/llvm/tools/llvm-symbolizer/
H A Dllvm-symbolizer.cpp37 static cl::opt<bool>
38 ClUseSymbolTable("use-symbol-table", cl::init(true),
39 cl::desc("Prefer names in symbol table to names "
42 static cl::opt<FunctionNameKind> ClPrintFunctions(
43 "functions", cl::init(FunctionNameKind::LinkageName),
44 cl::desc("Print function name for a given address:"),
45 cl::values(clEnumValN(FunctionNameKind::None, "none", "omit function name"),
52 static cl::opt<bool>
53 ClUseRelativeAddress("relative-address", cl::init(false),
54 cl
[all...]
/freebsd-11.0-release/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.0-release/contrib/llvm/include/llvm/MC/
H A DMCTargetOptionsCommandFlags.h22 cl::opt<MCTargetOptions::AsmInstrumentation> AsmInstrumentation(
23 "asm-instrumentation", cl::desc("Instrumentation of inline assembly and "
25 cl::init(MCTargetOptions::AsmInstrumentationNone),
26 cl::values(clEnumValN(MCTargetOptions::AsmInstrumentationNone, "none",
32 cl::opt<bool> RelaxAll("mc-relax-all",
33 cl::desc("When used with filetype=obj, "
36 cl::opt<bool> IncrementalLinkerCompatible(
38 cl::desc(
42 cl::opt<int> DwarfVersion("dwarf-version", cl
[all...]
/freebsd-11.0-release/contrib/llvm/include/llvm/CodeGen/
H A DCommandFlags.h34 cl::opt<std::string>
35 MArch("march", cl::desc("Architecture to generate code for (see --version)"));
37 cl::opt<std::string>
39 cl::desc("Target a specific cpu type (-mcpu=help for details)"),
40 cl::value_desc("cpu-name"),
41 cl::init(""));
43 cl::list<std::string>
45 cl::CommaSeparated,
46 cl::desc("Target specific attributes (-mattr=help for details)"),
47 cl
[all...]
/freebsd-11.0-release/contrib/llvm/tools/llvm-pdbdump/
H A Dllvm-pdbdump.h17 extern llvm::cl::opt<bool> Compilands;
18 extern llvm::cl::opt<bool> Symbols;
19 extern llvm::cl::opt<bool> Globals;
20 extern llvm::cl::opt<bool> Types;
21 extern llvm::cl::opt<bool> All;
23 extern llvm::cl::opt<bool> ExcludeCompilerGenerated;
25 extern llvm::cl::opt<bool> NoClassDefs;
26 extern llvm::cl::opt<bool> NoEnumDefs;
27 extern llvm::cl::list<std::string> ExcludeTypes;
28 extern llvm::cl
[all...]
/freebsd-11.0-release/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.0-release/contrib/llvm/lib/Target/Hexagon/
H A DHexagonSubtarget.cpp29 static cl::opt<bool> EnableMemOps("enable-hexagon-memops",
30 cl::Hidden, cl::ZeroOrMore, cl::ValueDisallowed, cl::init(true),
31 cl::desc("Generate V4 MEMOP in code generation for Hexagon target"));
33 static cl::opt<bool> DisableMemOps("disable-hexagon-memops",
34 cl::Hidden, cl::ZeroOrMore, cl
[all...]
H A DHexagonTargetMachine.cpp30 static cl::opt<bool> EnableRDFOpt("rdf-opt", cl::Hidden, cl::ZeroOrMore,
31 cl::init(true), cl::desc("Enable RDF-based optimizations"));
33 static cl::opt<bool> DisableHardwareLoops("disable-hexagon-hwloops",
34 cl::Hidden, cl::desc("Disable Hardware Loops for Hexagon target"));
36 static cl::opt<bool> DisableHexagonCFGOpt("disable-hexagon-cfgopt",
37 cl
[all...]
/freebsd-11.0-release/contrib/llvm/include/llvm/Support/
H A DPluginLoader.h31 static cl::opt<PluginLoader, false, cl::parser<std::string> >
32 LoadOpt("load", cl::ZeroOrMore, cl::value_desc("pluginfilename"),
33 cl::desc("Load the specified plugin"));
/freebsd-11.0-release/contrib/llvm/tools/llvm-cov/
H A Dgcov.cpp93 cl::list<std::string> SourceFiles(cl::Positional, cl::OneOrMore,
94 cl::desc("SOURCEFILE"));
96 cl::opt<bool> AllBlocks("a", cl::Grouping, cl::init(false),
97 cl::desc("Display all basic blocks"));
98 cl::alias AllBlocksA("all-blocks", cl
[all...]
/freebsd-11.0-release/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.0-release/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.0-release/contrib/llvm/lib/CodeGen/
H A DBasicTargetTransformInfo.cpp31 cl::opt<unsigned>
32 llvm::PartialUnrollingThreshold("partial-unrolling-threshold", cl::init(0),
33 cl::desc("Threshold for partial unrolling"),
34 cl::Hidden);
/freebsd-11.0-release/contrib/llvm/lib/Support/
H A DDebug.cpp77 static cl::opt<bool, true>
78 Debug("debug", cl::desc("Enable debug output"), cl::Hidden,
79 cl::location(DebugFlag));
83 static cl::opt<unsigned>
85 cl::desc("Buffer the last N characters of debug output "
88 cl::Hidden,
89 cl::init(0));
109 static cl::opt<DebugOnlyOpt, true, cl
[all...]
/freebsd-11.0-release/contrib/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> FileHeaders("file-headers",
54 cl::desc("Display file headers "));
55 cl::alias FileHeadersShort("h",
56 cl::desc("Alias for --file-headers"),
57 cl::aliasopt(FileHeaders));
60 cl
[all...]
H A Dllvm-readobj.h30 extern llvm::cl::list<std::string> InputFilenames;
31 extern llvm::cl::opt<bool> FileHeaders;
32 extern llvm::cl::opt<bool> Sections;
33 extern llvm::cl::opt<bool> SectionRelocations;
34 extern llvm::cl::opt<bool> SectionSymbols;
35 extern llvm::cl::opt<bool> SectionData;
36 extern llvm::cl::opt<bool> Relocations;
37 extern llvm::cl::opt<bool> Symbols;
38 extern llvm::cl::opt<bool> DynamicSymbols;
39 extern llvm::cl
[all...]
/freebsd-11.0-release/contrib/llvm/tools/llvm-as/
H A Dllvm-as.cpp34 static cl::opt<std::string>
35 InputFilename(cl::Positional, cl::desc("<input .llvm file>"), cl::init("-"));
37 static cl::opt<std::string>
38 OutputFilename("o", cl::desc("Override output filename"),
39 cl::value_desc("filename"));
41 static cl::opt<bool>
42 Force("f", cl::desc("Enable binary output on terminals"));
44 static cl
[all...]
/freebsd-11.0-release/contrib/llvm/lib/DebugInfo/DWARF/
H A DSyntaxHighlighting.cpp16 static cl::opt<cl::boolOrDefault>
18 cl::desc("use colored syntax highlighting (default=autodetect)"),
19 cl::init(cl::BOU_UNSET));
23 if (UseColor == cl::BOU_UNSET ? OS.has_colors() : UseColor == cl::BOU_TRUE) {
36 if (UseColor == cl::BOU_UNSET ? OS.has_colors() : UseColor == cl::BOU_TRUE)
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/Tooling/
H A DCommonOptionsParser.cpp96 int &argc, const char **argv, cl::OptionCategory &Category,
97 llvm::cl::NumOccurrencesFlag OccurrencesFlag, const char *Overview) {
98 static cl::opt<bool> Help("h", cl::desc("Alias for -help"), cl::Hidden);
100 static cl::opt<std::string> BuildPath("p", cl::desc("Build path"),
101 cl::Optional, cl::cat(Category));
103 static cl
[all...]
/freebsd-11.0-release/contrib/llvm/tools/llvm-objdump/
H A Dllvm-objdump.h25 extern cl::opt<std::string> TripleName;
26 extern cl::opt<std::string> ArchName;
27 extern cl::opt<std::string> MCPU;
28 extern cl::list<std::string> MAttrs;
29 extern cl::list<std::string> FilterSections;
30 extern cl::opt<bool> Disassemble;
31 extern cl::opt<bool> DisassembleAll;
32 extern cl::opt<bool> NoShowRawInsn;
33 extern cl::opt<bool> PrivateHeaders;
34 extern cl
[all...]
/freebsd-11.0-release/contrib/llvm/lib/TableGen/
H A DMain.cpp31 static cl::opt<std::string>
32 OutputFilename("o", cl::desc("Output filename"), cl::value_desc("filename"),
33 cl::init("-"));
35 static cl::opt<std::string>
37 cl::desc("Dependency filename"),
38 cl::value_desc("filename"),
39 cl::init(""));
41 static cl::opt<std::string>
42 InputFilename(cl
[all...]
/freebsd-11.0-release/contrib/llvm/lib/Target/NVPTX/MCTargetDesc/
H A DNVPTXMCAsmInfo.cpp22 static cl::opt<bool> CompileForDebugging("debug-compile",
23 cl::desc("Compile for debugging"),
24 cl::Hidden, cl::init(false));
/freebsd-11.0-release/contrib/llvm/tools/llvm-extract/
H A Dllvm-extract.cpp38 static cl::opt<std::string>
39 InputFilename(cl::Positional, cl::desc("<input bitcode file>"),
40 cl::init("-"), cl::value_desc("filename"));
42 static cl::opt<std::string>
43 OutputFilename("o", cl::desc("Specify output filename"),
44 cl::value_desc("filename"), cl::init("-"));
46 static cl
[all...]

Completed in 241 milliseconds

1234567891011>>