Home
last modified time | relevance | path

Searched refs:opt2 (Results 1 – 23 of 23) sorted by relevance

/freebsd-13-stable/contrib/kyua/utils/
HDoptional_test.cpp229 optional< int > opt1, opt2; in ATF_TEST_CASE_BODY() local
231 opt1 = none; opt2 = none; in ATF_TEST_CASE_BODY()
232 ATF_REQUIRE( opt1 == opt2); in ATF_TEST_CASE_BODY()
233 ATF_REQUIRE(!(opt1 != opt2)); in ATF_TEST_CASE_BODY()
235 opt1 = utils::make_optional(5); opt2 = none; in ATF_TEST_CASE_BODY()
236 ATF_REQUIRE(!(opt1 == opt2)); in ATF_TEST_CASE_BODY()
237 ATF_REQUIRE( opt1 != opt2); in ATF_TEST_CASE_BODY()
239 opt1 = none; opt2 = utils::make_optional(5); in ATF_TEST_CASE_BODY()
240 ATF_REQUIRE(!(opt1 == opt2)); in ATF_TEST_CASE_BODY()
241 ATF_REQUIRE( opt1 != opt2); in ATF_TEST_CASE_BODY()
[all …]
/freebsd-13-stable/contrib/byacc/test/
HDrun_test.sh256 for opt2 in "" $OPT2
264 error=${ROOT}${opt2}.error
267 $YACC $OPTS $opt2 -v -d $output $prefix -b $ROOT${opt2} $input 2>$error
270 REF=${REF_DIR}/${root}${opt2}${type}
299 NEW=${ROOT}${opt2}${type}
/freebsd-13-stable/tools/build/options/
HDmakeman287 while read opt2 ; do
289 echo ".Va ${opt2}"
301 while read opt2 ; do
302 echo ".It Va ${opt2}"
303 noopt=$(echo ${opt2} | sed -e's/WITH_/WITHOUT_/;t' -e's/WITHOUT_/WITH_/')
/freebsd-13-stable/usr.sbin/jail/
HDconfig.c763 equalopts(const char *opt1, const char *opt2) in equalopts() argument
768 if (strcmp(opt1, opt2) == 0) in equalopts()
771 if (strncmp(opt1, "no", 2) == 0 && strcmp(opt1 + 2, opt2) == 0) in equalopts()
774 if (strncmp(opt2, "no", 2) == 0 && strcmp(opt1, opt2 + 2) == 0) in equalopts()
777 !strncmp(opt1, opt2, ++p - opt1)) { in equalopts()
778 opt2 += p - opt1; in equalopts()
781 if (strncmp(opt1, "no", 2) == 0 && strcmp(opt1 + 2, opt2) == 0) in equalopts()
784 if (strncmp(opt2, "no", 2) == 0 && strcmp(opt1, opt2 + 2) == 0) in equalopts()
HDjailp.h218 extern int equalopts(const char *opt1, const char *opt2);
/freebsd-13-stable/sys/dev/cxgbe/tom/
HDt4_tom.c1025 uint32_t opt2 = 0; in calc_options2() local
1035 opt2 |= F_RX_FC_VALID | F_RX_COALESCE_VALID; in calc_options2()
1036 opt2 |= F_CONG_CNTRL_VALID | F_PACE_VALID; in calc_options2()
1038 opt2 |= F_T5_OPT_2_VALID; /* all 4 valid */ in calc_options2()
1039 opt2 |= F_T5_ISS; /* ISS provided in CPL */ in calc_options2()
1043 opt2 |= V_SACK_EN(cp->sack); in calc_options2()
1046 opt2 |= V_TSTAMPS_EN(cp->tstamp); in calc_options2()
1049 opt2 |= F_WND_SCALE_EN; in calc_options2()
1052 opt2 |= V_CCTRL_ECN(cp->ecn); in calc_options2()
1054 opt2 |= V_TX_QUEUE(TX_MODQ(pi->tx_chan)); in calc_options2()
[all …]
HDt4_connect.c340 cpl->opt2 = calc_options2(vi, &toep->params); in t4_connect()
345 be32toh(cpl->opt2)); in t4_connect()
373 cpl->opt2 = calc_options2(vi, &toep->params); in t4_connect()
378 be32toh(cpl->opt2)); in t4_connect()
HDt4_listen.c1128 uint32_t opt2, int tid) in send_synack() argument
1149 rpl->opt2 = opt2; in send_synack()
1368 uint32_t opt2; in do_pass_accept_req() local
1371 opt2 = calc_options2(vi, &synqe->params); in do_pass_accept_req()
1378 if (send_synack(sc, synqe, opt0, opt2, tid) != 0) { in do_pass_accept_req()
1388 __func__, stid, tid, synqe, be64toh(opt0), be32toh(opt2)); in do_pass_accept_req()
/freebsd-13-stable/sys/kern/
HDvfs_mount.c222 vfs_equalopts(const char *opt1, const char *opt2) in vfs_equalopts() argument
227 if (strcmp(opt1, opt2) == 0) in vfs_equalopts()
230 if (strncmp(opt1, "no", 2) == 0 && strcmp(opt1 + 2, opt2) == 0) in vfs_equalopts()
233 if (strncmp(opt2, "no", 2) == 0 && strcmp(opt1, opt2 + 2) == 0) in vfs_equalopts()
236 !strncmp(opt1, opt2, ++p - opt1)) { in vfs_equalopts()
237 opt2 += p - opt1; in vfs_equalopts()
240 if (strncmp(opt1, "no", 2) == 0 && strcmp(opt1 + 2, opt2) == 0) in vfs_equalopts()
243 if (strncmp(opt2, "no", 2) == 0 && strcmp(opt1, opt2 + 2) == 0) in vfs_equalopts()
248 (vfs_isopt_ro(opt2) || vfs_isopt_rw(opt2))) in vfs_equalopts()
261 struct vfsopt *opt, *opt2, *tmp; in vfs_sanitizeopts() local
[all …]
/freebsd-13-stable/crypto/openssl/crypto/sha/asm/
HDsha1-armv4-large.pl110 my ($a,$b,$c,$d,$e,$opt1,$opt2)=@_;
125 $opt2 @ F_xx_xx
/freebsd-13-stable/bin/sh/
HDexec.c754 const char *opt2; in typecmd_impl() local
758 name = padvance(&path2, &opt2, argv[i]); in typecmd_impl()
/freebsd-13-stable/sys/dev/cxgbe/common/
HDt4_msg.h781 __be32 opt2; member
788 __be32 opt2; member
806 __be32 opt2; member
822 __be32 opt2; member
835 __be32 opt2; member
857 __be32 opt2; member
871 __be32 opt2; member
886 __be32 opt2; member
/freebsd-13-stable/sys/contrib/device-tree/Bindings/pinctrl/
HDpinctrl-palmas.txt71 There are 4 special functions: opt0, opt1, opt2 and opt3. If any of these
Dmarvell,dove-pinctrl.txt61 twsi - none, opt1, opt2, opt3
/freebsd-13-stable/sys/dev/cxgb/common/
HDcxgb_t3_cpl.h611 __be32 opt2; member
628 __be32 opt2; member
/freebsd-13-stable/sys/contrib/device-tree/src/arm/
HDdove.dtsi712 marvell,function = "twsi-opt2";
/freebsd-13-stable/sys/dev/cxgbe/crypto/
HDt6_kern_tls.c171 cpl->opt2 = htobe32(options); in mk_ktls_act_open_req()
206 cpl->opt2 = htobe32(options); in mk_ktls_act_open_req6()
/freebsd-13-stable/sys/dev/cxgbe/
HDt4_filter.c1541 cpl6->opt2 = htobe32(F_RSS_QUEUE_VALID | V_RSS_QUEUE(f->fs.iq) | in mk_act_open_req6()
1585 cpl6->opt2 = htobe32(F_RSS_QUEUE_VALID | V_RSS_QUEUE(f->fs.iq) | in mk_act_open_req()
/freebsd-13-stable/contrib/subversion/subversion/libsvn_ra_svn/
HDprotocol55 example: ( fixed:string ? opt1:number opt2:string ? opt3:number )
/freebsd-13-stable/contrib/ofed/libcxgb4/
HDt4fw_api.h490 __be32 opt2; member
/freebsd-13-stable/sys/dev/cxgbe/firmware/
HDt4fw_interface.h919 __be32 opt2; member
/freebsd-13-stable/contrib/byacc/
HDCHANGES1954 * test/run_test.sh: use $opt2 in filenames of the generated files
/freebsd-13-stable/contrib/sqlite3/
HDsqlite3.c21922 #define CTIMEOPT_VAL2_(opt1,opt2) #opt1 "," #opt2 argument