/freebsd/kerberos5/lib/libhx509/ |
H A D | Makefile | 274 ${GEN_OCSP}: ocsp.asn1 ocsp.opt 275 ${ASN1_COMPILE} --option-file=${.ALLSRC:M*.opt} \ 280 ${GEN_PKCS10}: pkcs10.asn1 pkcs10.opt 281 ${ASN1_COMPILE} --option-file=${.ALLSRC:M*.opt} \
|
/freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
H A D | MLInlineAdvisor.cpp | 38 static cl::opt<std::string> InteractiveChannelBaseName( 48 static cl::opt<bool> 54 static cl::opt<SkipMLPolicyCriteria> SkipPolicy( 60 static cl::opt<std::string> ModelSelector("ml-inliner-model-selector", 97 static cl::opt<float> SizeIncreaseThreshold( 103 static cl::opt<bool> KeepFPICache(
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
H A D | WindowScheduler.cpp | 63 cl::opt<unsigned> 69 cl::opt<unsigned> WindowSearchRatio( 76 cl::opt<unsigned> WindowIICoeff( 82 cl::opt<unsigned> WindowRegionLimit( 88 cl::opt<unsigned> WindowDiffLimit( 98 cl::opt<unsigned>
|
H A D | RegAllocEvictionAdvisor.cpp | 29 static cl::opt<RegAllocEvictionAdvisorAnalysis::AdvisorMode> Mode( 41 static cl::opt<bool> EnableLocalReassignment( 48 cl::opt<unsigned> EvictInterferenceCutoff(
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/ |
H A D | HotColdSplitting.cpp | 68 static cl::opt<bool> EnableStaticAnalysis("hot-cold-static-analysis", 71 static cl::opt<int> 76 static cl::opt<bool> EnableColdSection( 81 static cl::opt<std::string> 87 static cl::opt<int> MaxParametersForSplit( 91 static cl::opt<int> ColdBranchProbDenom(
|
/freebsd/usr.sbin/bhyve/ |
H A D | pci_virtio_console.c | 646 pci_vtcon_legacy_config_port(nvlist_t *nvl, int port, char *opt) in pci_vtcon_legacy_config_port() argument 652 name = strsep(&opt, "="); in pci_vtcon_legacy_config_port() 653 path = opt; in pci_vtcon_legacy_config_port() 672 char *opt, *str, *tofree; in pci_vtcon_legacy_config() local 680 while ((opt = strsep(&str, ",")) != NULL) { in pci_vtcon_legacy_config() 681 error = pci_vtcon_legacy_config_port(ports_nvl, port, opt); in pci_vtcon_legacy_config()
|
/freebsd/contrib/file/src/ |
H A D | file.c | 114 #define OPT(shortname, longname, opt, def, doc) \ argument 115 {longname, opt, NULL, shortname}, 116 #define OPT_LONGONLY(longname, opt, def, doc, id) \ argument 117 {longname, opt, NULL, id}, 771 #define OPT(shortname, longname, opt, def, doc) \ in help() argument 774 #define OPT_LONGONLY(longname, opt, def, doc, id) \ in help() argument
|
/freebsd/tools/test/stress2/misc/ |
H A D | suj17.sh | 50 echo "newfs $opt md$mdstart" 51 newfs $opt md$mdstart > /dev/null
|
H A D | linger4.sh | 47 echo "newfs $opt md$mdstart" 48 newfs $opt md$mdstart > /dev/null
|
H A D | newfs4.sh | 59 opt="-O2 -U" 61 newfs $blocksize $opt md$mdstart > /dev/null
|
H A D | crossmp8.sh | 118 opt=$([ $((`date '+%s'` % 2)) -eq 0 ] && echo "-f") 119 umount $opt ${mntpoint}$m > /dev/null 2>&1
|
/freebsd/usr.sbin/ppp/ |
H A D | ccp.h | 103 struct fsm_opt opt; /* Set by implementation's OptInit() */ member 109 struct ccp_opt *opt; /* Set by implementation's OptInit() */ member
|
/freebsd/contrib/llvm-project/llvm/lib/MC/ |
H A D | MCAsmInfo.cpp | 27 static cl::opt<DefaultOnOff> DwarfExtendedLoc( 35 cl::opt<cl::boolOrDefault> UseLEB128Directives(
|
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/channel_program/ |
H A D | channel_common.kshlib | 128 while getopts "nt:m:" opt; do 129 case $opt in
|
/freebsd/crypto/heimdal/appl/gssmask/ |
H A D | gssmask.c | 202 krb5_get_init_creds_opt *opt, in acquire_cred() argument 213 krb5_get_init_creds_opt_set_forwardable (opt, 1); in acquire_cred() 214 krb5_get_init_creds_opt_set_renew_life (opt, 3600 * 24 * 30); in acquire_cred() 226 opt); in acquire_cred() 522 krb5_get_init_creds_opt *opt = NULL; in HandleOP() local 538 ret = krb5_get_init_creds_opt_alloc (context, &opt); in HandleOP() 542 krb5_get_init_creds_opt_set_pa_password(context, opt, password, NULL); in HandleOP() 544 gsm_error = acquire_cred(c, principal, opt, &handle); in HandleOP() 550 if (opt) in HandleOP() 551 krb5_get_init_creds_opt_free (context, opt); in HandleOP()
|
/freebsd/contrib/lua/src/ |
H A D | lstrlib.c | 1501 int opt = *((*fmt)++); local 1503 switch (opt) { 1538 default: luaL_error(h->L, "invalid format option '%c'", opt); 1555 KOption opt = getoption(h, fmt, psize); local 1557 if (opt == Kpaddalign) { /* 'X' gets alignment from following option */ 1561 if (align <= 1 || opt == Kchar) /* need no alignment? */ 1570 return opt; 1624 KOption opt = getdetails(&h, totalsize, &fmt, &size, &ntoalign); local 1629 switch (opt) { 1723 KOption opt = getdetails(&h, totalsize, &fmt, &size, &ntoalign); local [all …]
|
/freebsd/crypto/openssl/apps/lib/ |
H A D | apps.c | 697 char *next_item(char *opt) /* in list separated by comma and/or space */ in next_item() argument 700 while (*opt != ',' && !isspace(_UC(*opt)) && *opt != '\0') in next_item() 701 opt++; in next_item() 702 if (*opt != '\0') { in next_item() 704 *opt++ = '\0'; in next_item() 706 while (isspace(_UC(*opt))) in next_item() 707 opt++; in next_item() 709 return *opt == '\0' ? NULL : opt; /* NULL indicates end of input */ in next_item() 2260 char *opt = sk_OPENSSL_STRING_value(opts, i); in do_pkey_ctx_init() local 2262 if (pkey_ctrl_string(pkctx, opt) <= 0) { in do_pkey_ctx_init() [all …]
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-objcopy/ |
H A D | ObjcopyOptions.cpp | 31 using namespace llvm::opt; 49 static constexpr opt::OptTable::Info ObjcopyInfoTable[] = { 57 class ObjcopyOptTable : public opt::GenericOptTable { 59 ObjcopyOptTable() : opt::GenericOptTable(objcopy_opt::ObjcopyInfoTable) { in ObjcopyOptTable() 81 static constexpr opt::OptTable::Info InstallNameToolInfoTable[] = { 89 class InstallNameToolOptTable : public opt::GenericOptTable { 112 static constexpr opt::OptTable::Info BitcodeStripInfoTable[] = { 120 class BitcodeStripOptTable : public opt::GenericOptTable { 123 : opt::GenericOptTable(bitcode_strip::BitcodeStripInfoTable) {} in BitcodeStripOptTable() 141 static constexpr opt::OptTable::Info StripInfoTable[] = { [all …]
|
/freebsd/contrib/sendmail/contrib/ |
H A D | bitdomain.c | 52 int opt; local 54 while ((opt = getopt(argc, argv, "o:")) != -1) { 55 switch (opt) {
|
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/ |
H A D | HexagonGenExtract.cpp | 33 static cl::opt<unsigned> ExtractCutoff("extract-cutoff", cl::init(~0U), 43 static cl::opt<bool> NoSR0("extract-nosr0", cl::init(true), cl::Hidden, 46 static cl::opt<bool> NeedAnd("extract-needand", cl::init(true), cl::Hidden,
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
H A D | SpeculativeExecution.cpp | 81 static cl::opt<unsigned> SpecExecMaxSpeculationCost( 91 static cl::opt<unsigned> SpecExecMaxNotHoisted( 97 static cl::opt<bool> SpecExecOnlyIfDivergentTarget(
|
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/symbolizer/scripts/ |
H A D | build_symbolizer.sh | 41 OPT=$CLANG_DIR/opt 190 $OPT -passes=internalize -internalize-public-api-list=${SYMBOLIZER_API_LIST} all.bc -o opt.bc 191 $CC $FLAGS -fno-lto -c opt.bc -o symbolizer.o
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-cov/ |
H A D | TestingSupport.cpp | 26 cl::opt<std::string> InputSourceFile(cl::Positional, cl::Required, in convertForTestingMain() 29 cl::opt<std::string> OutputFilename( in convertForTestingMain()
|
/freebsd/tests/sys/cddl/zfs/tests/cli_root/zfs_destroy/ |
H A D | zfs_destroy_005_neg.ksh | 86 for opt in $options; do 87 log_mustnot $ZFS destroy $opt $dtst
|
/freebsd/cddl/contrib/opensolaris/lib/pyzfs/common/ |
H A D | util.py | 138 def append_with_opt(option, opt, value, parser): argument 140 getattr(parser.values, option.dest).append((opt, value))
|