Searched refs:cl (Results 501 - 525 of 878) sorted by relevance

<<21222324252627282930>>

/freebsd-11-stable/contrib/ntp/ntpdc/
H A Dntpdc.c1312 register struct xcmd *cl; local
1328 for (cl = clist; cl->keyword != 0; cl++) {
1330 if (*str != *(cl->keyword))
1332 if (strncmp(str, cl->keyword, (unsigned)clen) == 0) {
1338 if (*((cl->keyword) + clen) == '\0') {
1339 *cmd = cl;
1343 nearmatch = cl;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DSimplifyCFG.cpp93 static cl::opt<unsigned> PHINodeFoldingThreshold(
94 "phi-node-folding-threshold", cl::Hidden, cl::init(2),
95 cl::desc(
98 static cl::opt<unsigned> TwoEntryPHINodeFoldingThreshold(
99 "two-entry-phi-node-folding-threshold", cl::Hidden, cl::init(4),
100 cl::desc("Control the maximal total instruction cost that we are willing "
104 static cl::opt<bool> DupRet(
105 "simplifycfg-dup-ret", cl
[all...]
/freebsd-11-stable/crypto/openssl/crypto/bn/
H A Dbn_lcl.h516 int bn_cmp_part_words(const BN_ULONG *a, const BN_ULONG *b, int cl, int dl);
528 int cl, int dl);
530 int cl, int dl);
/freebsd-11-stable/usr.sbin/fmtree/
H A Dcreate.c85 time_t cl; local
91 (void)time(&cl);
98 fullpath, ctime(&cl));
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonCommonGEP.cpp53 static cl::opt<bool> OptSpeculate("commgep-speculate", cl::init(true),
54 cl::Hidden, cl::ZeroOrMore);
56 static cl::opt<bool> OptEnableInv("commgep-inv", cl::init(true), cl::Hidden,
57 cl::ZeroOrMore);
59 static cl::opt<bool> OptEnableConst("commgep-const", cl
[all...]
H A DHexagonSplitDouble.cpp54 static cl::opt<int> MaxHSDR("max-hsdr", cl::Hidden, cl::init(-1),
55 cl::desc("Maximum number of split partitions"));
56 static cl::opt<bool> MemRefsFixed("hsdr-no-mem", cl::Hidden, cl::init(true),
57 cl::desc("Do not split loads or stores"));
58 static cl::opt<bool> SplitAll("hsdr-split-all", cl
[all...]
H A DHexagonInstrInfo.cpp72 cl::opt<bool> ScheduleInlineAsm("hexagon-sched-inline-asm", cl::Hidden,
73 cl::init(false), cl::desc("Do not consider inline-asm a scheduling/"
76 static cl::opt<bool> EnableBranchPrediction("hexagon-enable-branch-prediction",
77 cl::Hidden, cl::init(true), cl::desc("Enable branch prediction"));
79 static cl::opt<bool> DisableNVSchedule("disable-hexagon-nv-schedule",
80 cl
[all...]
H A DHexagonISelDAGToDAG.cpp30 cl::opt<bool>
31 EnableAddressRebalancing("isel-rebalance-addr", cl::Hidden, cl::init(true),
32 cl::desc("Rebalance address calculation trees to improve "
38 cl::opt<bool>
39 RebalanceOnlyForOptimizations("rebalance-only-opt", cl::Hidden, cl::init(false),
40 cl::desc("Rebalance address tree only if this allows optimizations"));
43 cl::opt<bool>
44 RebalanceOnlyImbalancedTrees("rebalance-only-imbal", cl
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64PromoteConstant.cpp56 static cl::opt<bool> Stress("aarch64-stress-promote-const", cl::Hidden,
57 cl::desc("Promote all vector constants"));
H A DAArch64SpeculationHardening.cpp119 static cl::opt<bool> HardenLoads("aarch64-slh-loads", cl::Hidden,
120 cl::desc("Sanitize loads from memory."),
121 cl::init(true));
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DStackProtector.cpp60 static cl::opt<bool> EnableSelectionDAGSP("enable-selectiondag-sp",
61 cl::init(true), cl::Hidden);
H A DScheduleDAG.cpp46 static cl::opt<bool> StressSchedOpt(
47 "stress-sched", cl::Hidden, cl::init(false),
48 cl::desc("Stress test instruction scheduling"));
H A DStackMaps.cpp42 static cl::opt<int> StackMapVersion(
43 "stackmap-version", cl::init(3), cl::Hidden,
44 cl::desc("Specify the stackmap encoding version (default = 3)"));
H A DMachineRegisterInfo.cpp38 static cl::opt<bool> EnableSubRegLiveness("enable-subreg-liveness", cl::Hidden,
39 cl::init(true), cl::desc("Enable subregister liveness tracking."));
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/
H A Dllvm-objcopy.cpp351 cl::ExpandResponseFiles(Saver,
353 ? cl::TokenizeWindowsCommandLine
354 : cl::TokenizeGNUCommandLine,
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DGVN.cpp100 static cl::opt<bool> EnablePRE("enable-pre",
101 cl::init(true), cl::Hidden);
102 static cl::opt<bool> EnableLoadPRE("enable-load-pre", cl::init(true));
103 static cl::opt<bool> EnableMemDep("enable-gvn-memdep", cl::init(true));
106 static cl::opt<uint32_t>
107 MaxRecurseDepth("gvn-max-recurse-depth", cl::Hidden, cl
[all...]
H A DCallSiteSplitting.cpp82 static cl::opt<unsigned>
83 DuplicationThreshold("callsite-splitting-duplication-threshold", cl::Hidden,
84 cl::desc("Only allow instructions before a call, if "
86 cl::init(5));
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSIInsertSkips.cpp43 static cl::opt<unsigned> SkipThresholdFlag(
45 cl::desc("Number of instructions before jumping over divergent control flow"),
46 cl::init(12), cl::Hidden);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARC/
H A DARCFrameLowering.cpp27 static cl::opt<bool>
28 UseSaveRestoreFunclet("arc-save-restore-funclet", cl::Hidden,
29 cl::desc("Use arc callee save/restore functions"),
30 cl::init(true));
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/LTO/legacy/
H A DLTOCodeGenerator.h53 extern llvm::cl::opt<bool> EnableLTOInternalization;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Frontend/OpenMP/
H A DOMPIRBuilder.cpp36 static cl::opt<bool>
37 OptimisticAttributes("openmp-ir-builder-optimistic-attributes", cl::Hidden,
38 cl::desc("Use optimistic attributes describing "
40 cl::init(false));
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Vectorize/
H A DSLPVectorizer.h58 extern cl::opt<bool> RunSLPVectorization;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/ObjCARC/
H A DObjCARCContract.cpp50 static cl::opt<unsigned> MaxBBSize("arc-contract-max-bb-size", cl::Hidden,
51 cl::desc("Maximum basic block size to discover the dominance relation of "
52 "two instructions in the same basic block"), cl::init(65535));
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86OptimizeLEAs.cpp57 static cl::opt<bool>
58 DisableX86LEAOpt("disable-x86-lea-opt", cl::Hidden,
59 cl::desc("X86: Disable LEA optimizations."),
60 cl::init(false));
H A DX86RegisterInfo.cpp40 static cl::opt<bool>
41 EnableBasePointer("x86-use-base-pointer", cl::Hidden, cl::init(true),
42 cl::desc("Enable use of a base pointer for complex stack frames"));

Completed in 407 milliseconds

<<21222324252627282930>>