Home
last modified time | relevance | path

Searched refs:cl (Results 1 – 25 of 652) sorted by relevance

12345678910>>...27

/NextBSD/sys/net/altq/
HDaltq_hfsc.c159 #define is_a_parent_class(cl) ((cl)->cl_children != NULL) argument
228 struct hfsc_class *cl, *parent; in hfsc_add_queue() local
259 cl = hfsc_class_create(hif, &rtsc, &lssc, &ulsc, in hfsc_add_queue()
261 if (cl == NULL) in hfsc_add_queue()
271 struct hfsc_class *cl; in hfsc_remove_queue() local
276 if ((cl = clh_to_clp(hif, a->qid)) == NULL) in hfsc_remove_queue()
279 return (hfsc_class_destroy(cl)); in hfsc_remove_queue()
286 struct hfsc_class *cl; in hfsc_getqstats() local
293 if ((cl = clh_to_clp(hif, a->qid)) == NULL) in hfsc_getqstats()
299 get_class_stats(&stats, cl); in hfsc_getqstats()
[all …]
HDaltq_rmclass.c195 struct rm_class *cl; in rmc_newclass() local
226 cl = malloc(sizeof(struct rm_class), M_DEVBUF, M_NOWAIT | M_ZERO); in rmc_newclass()
227 if (cl == NULL) in rmc_newclass()
229 CALLOUT_INIT(&cl->callout_); in rmc_newclass()
230 cl->q_ = malloc(sizeof(class_queue_t), M_DEVBUF, M_NOWAIT | M_ZERO); in rmc_newclass()
231 if (cl->q_ == NULL) { in rmc_newclass()
232 free(cl, M_DEVBUF); in rmc_newclass()
239 cl->children_ = NULL; in rmc_newclass()
240 cl->parent_ = parent; in rmc_newclass()
241 cl->borrow_ = borrow; in rmc_newclass()
[all …]
HDaltq_fairq.c193 struct fairq_class *cl; in fairq_add_queue() local
208 cl = fairq_class_create(pif, a->priority, a->qlimit, a->bandwidth, in fairq_add_queue()
210 if (cl == NULL) in fairq_add_queue()
220 struct fairq_class *cl; in fairq_remove_queue() local
225 if ((cl = clh_to_clp(pif, a->qid)) == NULL) in fairq_remove_queue()
228 return (fairq_class_destroy(cl)); in fairq_remove_queue()
235 struct fairq_class *cl; in fairq_getqstats() local
242 if ((cl = clh_to_clp(pif, a->qid)) == NULL) in fairq_getqstats()
248 get_class_stats(&stats, cl); in fairq_getqstats()
263 struct fairq_class *cl; in fairq_clear_interface() local
[all …]
HDaltq_priq.c163 struct priq_class *cl; in priq_add_queue() local
178 cl = priq_class_create(pif, a->priority, a->qlimit, in priq_add_queue()
180 if (cl == NULL) in priq_add_queue()
190 struct priq_class *cl; in priq_remove_queue() local
195 if ((cl = clh_to_clp(pif, a->qid)) == NULL) in priq_remove_queue()
198 return (priq_class_destroy(cl)); in priq_remove_queue()
205 struct priq_class *cl; in priq_getqstats() local
212 if ((cl = clh_to_clp(pif, a->qid)) == NULL) in priq_getqstats()
218 get_class_stats(&stats, cl); in priq_getqstats()
233 struct priq_class *cl; in priq_clear_interface() local
[all …]
HDaltq_cbq.c108 cbq_class_destroy(cbq_state_t *cbqp, struct rm_class *cl) in cbq_class_destroy() argument
113 rmc_delete_class(&cbqp->ifnp, cl); in cbq_class_destroy()
119 if (cbqp->cbq_class_tbl[i] == cl) in cbq_class_destroy()
122 if (cl == cbqp->ifnp.root_) in cbq_class_destroy()
124 if (cl == cbqp->ifnp.default_) in cbq_class_destroy()
127 if (cl == cbqp->ifnp.ctl_) in cbq_class_destroy()
138 struct rm_class *cl; in clh_to_clp() local
147 if ((cl = cbqp->cbq_class_tbl[i]) != NULL && in clh_to_clp()
148 cl->stats_.handle == chandle) in clh_to_clp()
149 return (cl); in clh_to_clp()
[all …]
/NextBSD/lib/libc/iconv/
HDcitrus_lookup.c87 seq_get_num_entries_db(struct _citrus_lookup *cl) in seq_get_num_entries_db() argument
90 return (cl->cl_dbnum); in seq_get_num_entries_db()
94 seq_next_db(struct _citrus_lookup *cl, struct _region *key, in seq_next_db() argument
98 if (cl->cl_key) { in seq_next_db()
100 _region_init(key, cl->cl_key, cl->cl_keylen); in seq_next_db()
101 return (_db_lookup_by_s(cl->cl_db, cl->cl_key, data, in seq_next_db()
102 &cl->cl_dblocator)); in seq_next_db()
105 if (cl->cl_rewind) { in seq_next_db()
106 cl->cl_dbidx = 0; in seq_next_db()
108 cl->cl_rewind = 0; in seq_next_db()
[all …]
/NextBSD/contrib/libarchive/libarchive/test/
HDtest_archive_cmdline.c34 struct archive_cmdline *cl; in DEFINE_TEST() local
37 assert((cl = __archive_cmdline_allocate()) != NULL); in DEFINE_TEST()
38 if (cl == NULL) in DEFINE_TEST()
40 assertEqualInt(ARCHIVE_OK, __archive_cmdline_parse(cl, "gzip")); in DEFINE_TEST()
41 assertEqualInt(1, cl->argc); in DEFINE_TEST()
42 assertEqualString("gzip", cl->path); in DEFINE_TEST()
43 assertEqualString("gzip", cl->argv[0]); in DEFINE_TEST()
44 assertEqualInt(ARCHIVE_OK, __archive_cmdline_free(cl)); in DEFINE_TEST()
46 assert((cl = __archive_cmdline_allocate()) != NULL); in DEFINE_TEST()
47 if (cl == NULL) in DEFINE_TEST()
[all …]
/NextBSD/contrib/llvm/include/llvm/CodeGen/
HDCommandFlags.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::value_desc("a1,+a2,-a3,..."));
[all …]
/NextBSD/contrib/llvm/tools/llvm-cov/
HDgcov.cpp93 cl::list<std::string> SourceFiles(cl::Positional, cl::OneOrMore, in gcovMain()
94 cl::desc("SOURCEFILE")); in gcovMain()
96 cl::opt<bool> AllBlocks("a", cl::Grouping, cl::init(false), in gcovMain()
97 cl::desc("Display all basic blocks")); in gcovMain()
98 cl::alias AllBlocksA("all-blocks", cl::aliasopt(AllBlocks)); in gcovMain()
100 cl::opt<bool> BranchProb("b", cl::Grouping, cl::init(false), in gcovMain()
101 cl::desc("Display branch probabilities")); in gcovMain()
102 cl::alias BranchProbA("branch-probabilities", cl::aliasopt(BranchProb)); in gcovMain()
104 cl::opt<bool> BranchCount("c", cl::Grouping, cl::init(false), in gcovMain()
105 cl::desc("Display branch counts instead " in gcovMain()
[all …]
HDCodeCoverage.cpp249 cl::opt<std::string, true> ObjectFilename( in run()
250 cl::Positional, cl::Required, cl::location(this->ObjectFilename), in run()
251 cl::desc("Covered executable or object file.")); in run()
253 cl::list<std::string> InputSourceFiles( in run()
254 cl::Positional, cl::desc("<Source files>"), cl::ZeroOrMore); in run()
256 cl::opt<std::string, true> PGOFilename( in run()
257 "instr-profile", cl::Required, cl::location(this->PGOFilename), in run()
258 cl::desc( in run()
261 cl::opt<std::string> Arch( in run()
262 "arch", cl::desc("architecture of the coverage mapping binary")); in run()
[all …]
/NextBSD/contrib/llvm/tools/llvm-readobj/
HDllvm-readobj.cpp47 cl::list<std::string> InputFilenames(cl::Positional,
48 cl::desc("<input object files>"),
49 cl::ZeroOrMore);
52 cl::opt<bool> FileHeaders("file-headers",
53 cl::desc("Display file headers "));
54 cl::alias FileHeadersShort("h",
55 cl::desc("Alias for --file-headers"),
56 cl::aliasopt(FileHeaders));
59 cl::opt<bool> Sections("sections",
60 cl::desc("Display all sections."));
[all …]
/NextBSD/contrib/llvm/lib/CodeGen/
HDPasses.cpp33 static cl::opt<bool> DisablePostRA("disable-post-ra", cl::Hidden,
34 cl::desc("Disable Post Regalloc"));
35 static cl::opt<bool> DisableBranchFold("disable-branch-fold", cl::Hidden,
36 cl::desc("Disable branch folding"));
37 static cl::opt<bool> DisableTailDuplicate("disable-tail-duplicate", cl::Hidden,
38 cl::desc("Disable tail duplication"));
39 static cl::opt<bool> DisableEarlyTailDup("disable-early-taildup", cl::Hidden,
40 cl::desc("Disable pre-register allocation tail duplication"));
41 static cl::opt<bool> DisableBlockPlacement("disable-block-placement",
42 cl::Hidden, cl::desc("Disable probability-driven block placement"));
[all …]
/NextBSD/contrib/llvm/lib/Target/AArch64/
HDAArch64TargetMachine.cpp27 static cl::opt<bool>
28 EnableCCMP("aarch64-ccmp", cl::desc("Enable the CCMP formation pass"),
29 cl::init(true), cl::Hidden);
31 static cl::opt<bool> EnableMCR("aarch64-mcr",
32 cl::desc("Enable the machine combiner pass"),
33 cl::init(true), cl::Hidden);
35 static cl::opt<bool>
36 EnableStPairSuppress("aarch64-stp-suppress", cl::desc("Suppress STP for AArch64"),
37 cl::init(true), cl::Hidden);
39 static cl::opt<bool>
[all …]
/NextBSD/contrib/llvm/tools/opt/
HDopt.cpp62 static cl::list<const PassInfo*, bool, PassNameParser>
63 PassList(cl::desc("Optimizations available:"));
69 static cl::opt<std::string> PassPipeline(
71 cl::desc("A textual description of the pass pipeline for optimizing"),
72 cl::Hidden);
76 static cl::opt<std::string>
77 InputFilename(cl::Positional, cl::desc("<input bitcode file>"),
78 cl::init("-"), cl::value_desc("filename"));
80 static cl::opt<std::string>
81 OutputFilename("o", cl::desc("Override output filename"),
[all …]
/NextBSD/lib/libc/i386/string/
HDstrcmp.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,%cl
78 cmpb %cl,(%edx)
82 movb (%eax),%cl
[all …]
/NextBSD/contrib/llvm/tools/llvm-pdbdump/
HDllvm-pdbdump.cpp56 cl::list<std::string> InputFilenames(cl::Positional,
57 cl::desc("<input PDB files>"),
58 cl::OneOrMore);
60 cl::OptionCategory TypeCategory("Symbol Type Options");
61 cl::OptionCategory FilterCategory("Filtering Options");
62 cl::OptionCategory OtherOptions("Other Options");
64 cl::opt<bool> Compilands("compilands", cl::desc("Display compilands"),
65 cl::cat(TypeCategory));
66 cl::opt<bool> Symbols("symbols", cl::desc("Display symbols for each compiland"),
67 cl::cat(TypeCategory));
[all …]
/NextBSD/contrib/llvm/tools/llvm-link/
HDllvm-link.cpp37 static cl::list<std::string>
38 InputFilenames(cl::Positional, cl::OneOrMore,
39 cl::desc("<input bitcode files>"));
41 static cl::list<std::string> OverridingInputs(
42 "override", cl::ZeroOrMore, cl::value_desc("filename"),
43 cl::desc(
46 static cl::opt<std::string>
47 OutputFilename("o", cl::desc("Override output filename"), cl::init("-"),
48 cl::value_desc("filename"));
50 static cl::opt<bool>
[all …]
/NextBSD/contrib/llvm/tools/llvm-extract/
HDllvm-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::opt<bool>
47 Force("f", cl::desc("Enable binary output on terminals"));
49 static cl::opt<bool>
50 DeleteFn("delete", cl::desc("Delete specified Globals from Module"));
[all …]
/NextBSD/contrib/llvm/tools/lli/
HDlli.cpp73 cl::opt<std::string>
74 InputFile(cl::desc("<input bitcode>"), cl::Positional, cl::init("-"));
76 cl::list<std::string>
77 InputArgv(cl::ConsumeAfter, cl::desc("<program arguments>..."));
79 cl::opt<bool> ForceInterpreter("force-interpreter",
80 cl::desc("Force interpretation: disable JIT"),
81 cl::init(false));
83 cl::opt<JITKind> UseJITKind("jit-kind",
84 cl::desc("Choose underlying JIT kind."),
85 cl::init(JITKind::MCJIT),
[all …]
/NextBSD/contrib/llvm/tools/llvm-objdump/
HDllvm-objdump.h24 extern cl::opt<std::string> TripleName;
25 extern cl::opt<std::string> ArchName;
26 extern cl::opt<std::string> MCPU;
27 extern cl::list<std::string> MAttrs;
28 extern cl::list<std::string> DumpSections;
29 extern cl::opt<bool> Disassemble;
30 extern cl::opt<bool> NoShowRawInsn;
31 extern cl::opt<bool> PrivateHeaders;
32 extern cl::opt<bool> ExportsTrie;
33 extern cl::opt<bool> Rebase;
[all …]
/NextBSD/contrib/llvm/lib/Target/Hexagon/
HDHexagonSubtarget.cpp27 static cl::opt<bool>
28 EnableV3("enable-hexagon-v3", cl::Hidden,
29 cl::desc("Enable Hexagon V3 instructions."));
31 static cl::opt<bool>
34 cl::Hidden, cl::ZeroOrMore, cl::ValueDisallowed, cl::init(true),
35 cl::desc(
38 static cl::opt<bool>
41 cl::Hidden, cl::ZeroOrMore, cl::ValueDisallowed, cl::init(false),
42 cl::desc(
45 static cl::opt<bool>
[all …]
/NextBSD/contrib/llvm/tools/bugpoint/
HDExecutionDriver.cpp34 cl::opt<double>
35 AbsTolerance("abs-tolerance", cl::desc("Absolute error tolerated"),
36 cl::init(0.0));
37 cl::opt<double>
38 RelTolerance("rel-tolerance", cl::desc("Relative error tolerated"),
39 cl::init(0.0));
41 cl::opt<OutputType>
42 InterpreterSel(cl::desc("Specify the \"test\" i.e. suspect back-end:"),
43 cl::values(clEnumValN(AutoPick, "auto", "Use best guess"),
58 cl::init(AutoPick));
[all …]
HDbugpoint.cpp37 static cl::opt<bool>
38 FindBugs("find-bugs", cl::desc("Run many different optimization sequences "
39 "on program to find bugs"), cl::init(false));
41 static cl::list<std::string>
42 InputFilenames(cl::Positional, cl::OneOrMore,
43 cl::desc("<input llvm ll/bc files>"));
45 static cl::opt<unsigned>
46 TimeoutValue("timeout", cl::init(300), cl::value_desc("seconds"),
47 cl::desc("Number of seconds program is allowed to run before it "
50 static cl::opt<int>
[all …]
/NextBSD/contrib/llvm/tools/llvm-mc/
HDllvm-mc.cpp44 static cl::opt<std::string>
45 InputFilename(cl::Positional, cl::desc("<input file>"), cl::init("-"));
47 static cl::opt<std::string>
48 OutputFilename("o", cl::desc("Output filename"),
49 cl::value_desc("filename"));
51 static cl::opt<bool>
52 ShowEncoding("show-encoding", cl::desc("Show instruction encodings"));
54 static cl::opt<bool>
56 cl::desc("Compress DWARF debug sections"));
58 static cl::opt<bool>
[all …]
/NextBSD/contrib/llvm/tools/llvm-profdata/
HDllvm-profdata.cpp44 static void mergeInstrProfile(const cl::list<std::string> &Inputs, in mergeInstrProfile()
71 static void mergeSampleProfile(const cl::list<std::string> &Inputs, in mergeSampleProfile()
104 cl::list<std::string> Inputs(cl::Positional, cl::Required, cl::OneOrMore, in merge_main()
105 cl::desc("<filenames...>")); in merge_main()
107 cl::opt<std::string> OutputFilename("output", cl::value_desc("output"), in merge_main()
108 cl::init("-"), cl::Required, in merge_main()
109 cl::desc("Output file")); in merge_main()
110 cl::alias OutputFilenameA("o", cl::desc("Alias for --output"), in merge_main()
111 cl::aliasopt(OutputFilename)); in merge_main()
112 cl::opt<ProfileKinds> ProfileKind( in merge_main()
[all …]

12345678910>>...27