Searched refs:cl (Results 251 - 275 of 878) sorted by relevance

<<11121314151617181920>>

/freebsd-11-stable/sbin/fsck_msdosfs/
H A Ddir.c440 cl_t cl; local
443 for (cl = dir->head, len = sz = 0;
445 cl = fat_get_cl_next(fat, cl);
446 clearchain(fat, fat_get_cl_next(fat, cl));
447 ret = fat_set_cl_next(fat, cl, CLUST_EOF);
468 cl_t cl; local
476 cl = dir->head;
477 if (dir->parent && !fat_is_valid_cl(fat, cl)) {
485 off = (cl
544 cl_t cl, valcl = ~0, invcl = ~0, empcl = ~0; local
[all...]
/freebsd-11-stable/sys/contrib/ipfilter/netinet/
H A Dip_scan.c328 ipf_scan_matchisc(isc, is, cl, sl, maxm)
331 int cl, sl, maxm[2];
356 cl && isc->ipsc_clen) {
358 n = MIN(cl, isc->ipsc_clen);
375 n = MIN(cl, isc->ipsc_slen);
399 int i, j, k, n, cl, sl, maxm[2]; local
403 for (cl = 0, n = is->is_smsk[0]; n & 1; n >>= 1)
404 cl++;
414 i = ipf_scan_matchisc(isc, is, cl, sl, NULL);
418 } else if (cl >
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonTargetTransformInfo.cpp30 static cl::opt<bool> HexagonAutoHVX("hexagon-autohvx", cl::init(false),
31 cl::Hidden, cl::desc("Enable loop vectorizer for HVX"));
33 static cl::opt<bool> EmitLookupTables("hexagon-emit-lookup-tables",
34 cl::init(true), cl::Hidden,
35 cl::desc("Control lookup table emission on Hexagon target"));
H A DHexagonGenInsert.cpp50 static cl::opt<unsigned> VRegIndexCutoff("insert-vreg-cutoff", cl::init(~0U),
51 cl::Hidden, cl::ZeroOrMore, cl::desc("Vreg# cutoff for insert generation."));
54 static cl::opt<unsigned> VRegDistCutoff("insert-dist-cutoff", cl::init(30U),
55 cl::Hidden, cl::ZeroOrMore, cl
[all...]
H A DHexagonMachineScheduler.cpp47 static cl::opt<bool> IgnoreBBRegPressure("ignore-bb-reg-pressure",
48 cl::Hidden, cl::ZeroOrMore, cl::init(false));
50 static cl::opt<bool> UseNewerCandidate("use-newer-candidate",
51 cl::Hidden, cl::ZeroOrMore, cl::init(true));
53 static cl::opt<unsigned> SchedDebugVerboseLevel("misched-verbose-level",
54 cl
[all...]
H A DHexagonVectorPrint.cpp39 static cl::opt<bool> TraceHexVectorStoresOnly("trace-hex-vector-stores-only",
40 cl::Hidden, cl::ZeroOrMore, cl::init(false),
41 cl::desc("Enables tracing of vector stores"));
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DTargetSchedule.cpp33 static cl::opt<bool> EnableSchedModel("schedmodel", cl::Hidden, cl::init(true),
34 cl::desc("Use TargetSchedModel for latency lookup"));
36 static cl::opt<bool> EnableSchedItins("scheditins", cl::Hidden, cl::init(true),
37 cl::desc("Use InstrItineraryData for latency lookup"));
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Vectorize/
H A DLoopVectorize.h80 extern cl::opt<bool> EnableLoopInterleaving;
81 extern cl::opt<bool> EnableLoopVectorization;
94 /// means that interleaving default is consistent with the cl::opt flag, while
96 /// FIXME: The default for EnableLoopVectorization in the cl::opt should be
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLoopVersioningLICM.cpp103 static cl::opt<float>
105 cl::desc("LoopVersioningLICM's minimum allowed percentage"
107 cl::init(25), cl::Hidden);
110 static cl::opt<unsigned> LVLoopDepthThreshold(
112 cl::desc(
114 cl::init(2), cl::Hidden);
H A DLoopSink.cpp61 static cl::opt<unsigned> SinkFrequencyPercentThreshold(
62 "sink-freq-percent-threshold", cl::Hidden, cl::init(90),
63 cl::desc("Do not sink instructions that require cloning unless they "
66 static cl::opt<unsigned> MaxNumberOfUseBBsForSinking(
67 "max-uses-for-sinking", cl::Hidden, cl::init(30),
68 cl::desc("Do not sink instructions that have too many uses."));
H A DLowerExpectIntrinsic.cpp51 static cl::opt<uint32_t> LikelyBranchWeight(
52 "likely-branch-weight", cl::Hidden, cl::init(2000),
53 cl::desc("Weight of the branch likely to be taken (default = 2000)"));
54 static cl::opt<uint32_t> UnlikelyBranchWeight(
55 "unlikely-branch-weight", cl::Hidden, cl::init(1),
56 cl::desc("Weight of the branch unlikely to be taken (default = 1)"));
/freebsd-11-stable/contrib/opie/libopie/
H A Dbtoe.c2229 unsigned char cl; local
2237 cl = (y >> 16) & 0xff;
2241 s[start / 8] |= cl;
2256 unsigned char cl; local
2260 cl = s[start / 8];
2263 x = ((UINT4) (cl << 8 | cc) << 8 | cr);
/freebsd-11-stable/include/rpc/
H A Dclnt.h196 * CLNT_CONTROL(cl, request, info)
197 * CLIENT *cl;
201 #define CLNT_CONTROL(cl,rq,in) ((*(cl)->cl_ops->cl_control)(cl,rq,in))
202 #define clnt_control(cl,rq,in) ((*(cl)->cl_ops->cl_control)(cl,rq,in))
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DStatistic.cpp41 static cl::opt<bool> EnableStats(
43 cl::desc("Enable statistics output from program (available with Asserts)"),
44 cl::Hidden);
46 static cl::opt<bool> StatsAsJSON("stats-json",
47 cl::desc("Display statistics as json data"),
48 cl::Hidden);
/freebsd-11-stable/contrib/llvm-project/lld/ELF/
H A DDriverUtils.cpp76 static cl::TokenizerCallback getQuotingStyle(opt::InputArgList &args) {
82 return cl::TokenizeWindowsCommandLine;
83 return cl::TokenizeGNUCommandLine;
86 return cl::TokenizeWindowsCommandLine;
87 return cl::TokenizeGNUCommandLine;
127 cl::ExpandResponseFiles(saver, getQuotingStyle(args), vec);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/XCore/
H A DXCoreLowerThreadLocal.cpp33 static cl::opt<unsigned> MaxThreads(
34 "xcore-max-threads", cl::Optional,
35 cl::desc("Maximum number of threads (for emulation thread-local storage)"),
36 cl::Hidden, cl::value_desc("number"), cl::init(8));
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCLoopInstrFormPrep.cpp85 static cl::opt<unsigned> MaxVarsPrep("ppc-formprep-max-vars",
86 cl::Hidden, cl::init(16),
87 cl::desc("Potential common base number threshold per function for PPC loop "
90 static cl::opt<bool> PreferUpdateForm("ppc-formprep-prefer-update",
91 cl::init(true), cl::Hidden,
92 cl::desc("prefer update form when ds form is also a update form"));
98 static cl::opt<unsigned> MaxVarsUpdateForm("ppc-preinc-prep-max-vars",
99 cl
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Passes/
H A DPassBuilder.cpp189 static cl::opt<unsigned> MaxDevirtIterations("pm-max-devirt-iterations",
190 cl::ReallyHidden, cl::init(4));
191 static cl::opt<bool>
192 RunPartialInlining("enable-npm-partial-inlining", cl::init(false),
193 cl::Hidden, cl::ZeroOrMore,
194 cl::desc("Run Partial inlinining pass"));
196 static cl::opt<int> PreInlineThreshold(
197 "npm-preinline-threshold", cl
[all...]
/freebsd-11-stable/contrib/gcc/
H A Dtree-ssa-live.c1159 delete_coalesce_list (coalesce_list_p cl) argument
1161 free (cl->list);
1162 free (cl);
1171 find_partition_pair (coalesce_list_p cl, int p1, int p2, bool create) argument
1188 for (node = cl->list[p1]; node; node = node->next)
1214 node->next = cl->list[p1];
1215 cl->list[p1] = node;
1243 add_coalesce (coalesce_list_p cl, int p1, int p2, argument
1248 gcc_assert (cl->add_mode);
1253 node = find_partition_pair (cl, p
1273 sort_coalesce_list(coalesce_list_p cl) argument
1341 pop_best_coalesce(coalesce_list_p cl, int *p1, int *p2) argument
1396 build_tree_conflict_graph(tree_live_info_p liveinfo, tpa_p tpa, coalesce_list_p cl) argument
1564 coalesce_tpa_members(tpa_p tpa, conflict_graph graph, var_map map, coalesce_list_p cl, FILE *debug) argument
1729 dump_coalesce_list(FILE *f, coalesce_list_p cl) argument
[all...]
H A Dreal.c143 r->cl = rvc_nan;
152 r->cl = rvc_nan;
162 r->cl = rvc_inf;
499 r->cl = rvc_zero;
541 switch (CLASS2 (a->cl, b->cl))
647 r->cl = rvc_normal;
660 if (r->cl == rvc_zero)
679 switch (CLASS2 (a->cl, b->cl))
[all...]
/freebsd-11-stable/crypto/openssl/crypto/bn/
H A Dbn_mul.c73 * The sizes of those arrays is expressed through cl, which is the common
77 * parameter, it must have the length cl+abs(dl). These functions should
84 int cl, int dl)
88 assert(cl >= 0);
89 c = bn_sub_words(r, a, b, cl);
94 r += cl;
95 a += cl;
96 b += cl;
100 fprintf(stderr, " bn_sub_part_words %d + %d (dl < 0, c = %d)\n", cl,
138 fprintf(stderr, " bn_sub_part_words %d + %d (dl > 0, c = %d)\n", cl,
82 bn_sub_part_words(BN_ULONG *r, const BN_ULONG *a, const BN_ULONG *b, int cl, int dl) argument
226 bn_add_part_words(BN_ULONG *r, const BN_ULONG *a, const BN_ULONG *b, int cl, int dl) argument
[all...]
/freebsd-11-stable/sys/arm/allwinner/
H A Daw_mp.c86 #define CPUS_CL_RST(cl) (0x30 + (cluster) * 0x4)
87 #define CPUX_CL_CTRL0(cl) (0x0 + (cluster) * 0x10)
88 #define CPUX_CL_CTRL1(cl) (0x4 + (cluster) * 0x10)
89 #define CPUX_CL_CPU_STATUS(cl) (0x30 + (cluster) * 0x4)
90 #define CPUX_CL_RST(cl) (0x80 + (cluster) * 0x4)
91 #define PRCM_CL_PWROFF(cl) (0x100 + (cluster) * 0x4)
92 #define PRCM_CL_PWR_CLAMP(cl, cpu) (0x140 + (cluster) * 0x4 + (cpu) * 0x4)
/freebsd-11-stable/contrib/unbound/compat/
H A Dgetentropy_solaris.c227 static const int cl[] = { variable
289 for (ii = 0; ii < sizeof(cl)/sizeof(cl[0]); ii++)
290 HX(clock_gettime(cl[ii], &ts) == -1, ts);
361 for (ii = 0; ii < sizeof(cl)/sizeof(cl[0]);
363 HX((e = clock_gettime(cl[ii],
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsDelaySlotFiller.cpp59 static cl::opt<bool> DisableDelaySlotFiller(
61 cl::init(false),
62 cl::desc("Fill all delay slots with NOPs."),
63 cl::Hidden);
65 static cl::opt<bool> DisableForwardSearch(
67 cl::init(true),
68 cl::desc("Disallow MIPS delay filler to search forward."),
69 cl::Hidden);
71 static cl::opt<bool> DisableSuccBBSearch(
73 cl
[all...]
/freebsd-11-stable/lib/libc/rpc/
H A Dclnt_raw.c235 clnt_raw_geterr(CLIENT *cl, struct rpc_err *err) argument
242 clnt_raw_freeres(CLIENT *cl, xdrproc_t xdr_res, void *res_ptr) argument
261 clnt_raw_abort(CLIENT *cl) argument
267 clnt_raw_control(CLIENT *cl, u_int ui, void *str) argument
274 clnt_raw_destroy(CLIENT *cl) argument

Completed in 324 milliseconds

<<11121314151617181920>>