Searched refs:opt (Results 176 - 200 of 1373) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Option/
H A DOptSpecifier.h13 namespace opt { namespace in namespace:llvm
35 } // end namespace opt
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DContiki.cpp15 using namespace llvm::opt;
H A DInterfaceStubs.h28 const llvm::opt::ArgList &TCArgs,
H A DPPCLinux.cpp15 using namespace llvm::opt;
H A DAnanas.h31 const llvm::opt::ArgList &TCArgs,
44 const llvm::opt::ArgList &TCArgs,
55 const llvm::opt::ArgList &Args);
H A DDragonFly.h30 const llvm::opt::ArgList &TCArgs,
43 const llvm::opt::ArgList &TCArgs,
54 const llvm::opt::ArgList &Args);
H A DMinix.h30 const llvm::opt::ArgList &TCArgs,
43 const llvm::opt::ArgList &TCArgs,
54 const llvm::opt::ArgList &Args);
H A DAIX.h30 const llvm::opt::ArgList &TCArgs,
43 const llvm::opt::ArgList &TCArgs,
60 const llvm::opt::ArgList &Args);
/freebsd-11-stable/contrib/libreadline/examples/
H A Drl.c87 int opt, fd, nch; local
101 while ((opt = getopt(argc, argv, "p:u:d:n:")) != EOF)
103 switch (opt)
/freebsd-11-stable/contrib/apr/misc/unix/
H A Dgetopt.c80 *optch = os->opt;
86 *optch = os->opt;
90 if ((os->opt = (int) *os->place++) == (int) ':' ||
91 !(oli = strchr(opts, os->opt))) {
96 if (os->opt == (int) '-') {
97 *optch = os->opt;
104 apr_filepath_name_get(*os->argv), os->opt);
106 *optch = os->opt;
120 *optch = os->opt;
126 apr_filepath_name_get(*os->argv), os->opt);
[all...]
/freebsd-11-stable/contrib/smbfs/smbutil/
H A Dlookup.c64 int error, opt; local
78 while ((opt = getopt(argc, argv, "w:")) != EOF) {
79 switch(opt){
/freebsd-11-stable/lib/libc/tests/gen/
H A Dtest-fnmatch.c89 int opt; local
91 while ((opt = getopt(argc, argv, "s:")) != -1) {
92 switch (opt) {
/freebsd-11-stable/crypto/openssh/openbsd-compat/
H A Dbsd-nextstep.c53 tcsetattr(int fd, int opt, const struct termios *t) argument
57 if (opt & TCSASOFT) {
62 switch (opt & ~TCSASOFT) {
/freebsd-11-stable/tools/boot/
H A Duniverse.sh26 local opt=$3
28 echo -n "Building $ta ${opt} ... "
34 if ! make buildenv TARGET_ARCH=$ta BUILDENV_SHELL="make ${opt} -j 20 all" \
/freebsd-11-stable/usr.sbin/eeprom/
H A Deeprom.c63 int do_stdin, opt; local
70 while ((opt = getopt(argc, argv, "-a")) != -1) {
71 switch (opt) {
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Driver/
H A DTool.h16 namespace opt { namespace in namespace:llvm
129 const llvm::opt::ArgList &TCArgs,
143 const llvm::opt::ArgList &TCArgs,
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-lto2/
H A Dllvm-lto2.cpp32 static cl::opt<char>
37 static cl::opt<char> CGOptLevel(
38 "cg-opt-level",
45 static cl::opt<std::string> OutputFilename("o", cl::Required,
49 static cl::opt<std::string> CacheDir("cache-dir", cl::desc("Cache Directory"),
52 static cl::opt<std::string> OptPipeline("opt-pipeline",
56 static cl::opt<std::string> AAPipeline("aa-pipeline",
60 static cl::opt<bool> SaveTemps("save-temps", cl::desc("Save temporary files"));
62 static cl::opt<boo
[all...]
/freebsd-11-stable/usr.sbin/config/
H A Dconfig.h122 struct opt { struct
126 SLIST_ENTRY(opt) op_next;
127 SLIST_ENTRY(opt) op_append;
130 extern SLIST_HEAD(opt_head, opt) opt, mkopt, rmopts;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachineSizeOpts.cpp20 extern cl::opt<bool> EnablePGSO;
21 extern cl::opt<bool> PGSOLargeWorkingSetSizeOnly;
22 extern cl::opt<bool> ForcePGSO;
23 extern cl::opt<int> PgsoCutoffInstrProf;
24 extern cl::opt<int> PgsoCutoffSampleProf;
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A Dllvm-pdbutil.cpp161 cl::opt<bool> Native("native", cl::desc("Use native PDB reader instead of DIA"),
164 static cl::opt<bool>
167 static cl::opt<bool> NoSymIndexIds(
172 static cl::opt<bool>
178 static cl::opt<bool> Enums("enums", cl::desc("Dump enum types"),
180 static cl::opt<bool> Pointers("pointers", cl::desc("Dump enum types"),
182 static cl::opt<bool> UDTs("udts", cl::desc("Dump udt types"),
184 static cl::opt<bool> Compilands("compilands",
187 static cl::opt<bool> Funcsigs("funcsigs",
190 static cl::opt<boo
[all...]
/freebsd-11-stable/contrib/gcc/
H A Dgengtype-yacc.y166 p->opt = XNEW (struct options);
167 p->opt->name = "tag";
168 p->opt->next = NULL;
169 p->opt->info = (char *)$2;
177 p->opt = XNEW (struct options);
178 p->opt->name = "tag";
179 p->opt->next = NULL;
180 p->opt->info = xasprintf ("'%s'", $2);
190 p->opt = $2;
200 p->opt
[all...]
/freebsd-11-stable/contrib/libarchive/tar/
H A Dcmdline.c221 int opt = '?'; local
248 opt = *bsdtar->getopt_word++;
249 if (opt == '\0') {
254 p = strchr(short_options, opt);
262 opt);
306 opt = *bsdtar->getopt_word++;
307 if (opt == '\0') {
314 p = strchr(short_options, opt);
329 opt);
335 if (opt
[all...]
/freebsd-11-stable/contrib/libarchive/cat/
H A Dcmdline.c121 int opt = '?'; local
172 opt = *bsdcat->getopt_word++;
173 if (opt == '\0') {
180 p = strchr(short_options, opt);
195 opt);
201 if (opt == 'W') {
282 return (opt);
/freebsd-11-stable/cddl/compat/opensolaris/misc/
H A Dmnttab.c69 hasmntopt(struct mnttab *mnt, char *opt) argument
79 if (strncmp(opt, f, strlen(opt)) == 0)
86 optadd(char *mntopts, size_t size, const char *opt) argument
91 strlcat(mntopts, opt, size);
103 #define OPTADD(opt) optadd(mntopts, sizeof(mntopts), (opt))
/freebsd-11-stable/contrib/xz/src/lzmainfo/
H A Dlzmainfo.c155 lzma_options_lzma *opt = filter.options; local
162 (opt->dict_size + 512 * 1024) / (1024 * 1024),
163 my_log2(opt->dict_size), opt->lc, opt->lp, opt->pb);
165 free(opt);

Completed in 246 milliseconds

1234567891011>>