Home
last modified time | relevance | path

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

12

/src/contrib/kyua/utils/
H A Doptional_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 …]
/src/contrib/byacc/test/
H A Drun_test.sh259 for opt2 in "" $OPT2
267 error=${ROOT}${opt2}.error
270 $YACC $OPTS $opt2 -v -d $output $prefix -b "$ROOT${opt2}" "$input" 2>"$error"
273 REF=${REF_DIR}/${root}${opt2}${type}
302 NEW="${ROOT}${opt2}${type}"
/src/tools/build/options/
H A Dmakeman342 while read opt2 ; do
344 echo ".Va ${opt2}"
356 while read opt2 ; do
357 echo ".It Va ${opt2}"
358 noopt=$(echo ${opt2} | sed -e's/WITH_/WITHOUT_/;t' -e's/WITHOUT_/WITH_/')
/src/usr.sbin/jail/
H A Dconfig.c829 equalopts(const char *opt1, const char *opt2) in equalopts() argument
834 if (strcmp(opt1, opt2) == 0) in equalopts()
837 if (strncmp(opt1, "no", 2) == 0 && strcmp(opt1 + 2, opt2) == 0) in equalopts()
840 if (strncmp(opt2, "no", 2) == 0 && strcmp(opt1, opt2 + 2) == 0) in equalopts()
843 !strncmp(opt1, opt2, ++p - opt1)) { in equalopts()
844 opt2 += p - opt1; in equalopts()
847 if (strncmp(opt1, "no", 2) == 0 && strcmp(opt1 + 2, opt2) == 0) in equalopts()
850 if (strncmp(opt2, "no", 2) == 0 && strcmp(opt1, opt2 + 2) == 0) in equalopts()
H A Djailp.h228 extern int equalopts(const char *opt1, const char *opt2);
/src/sys/kern/
H A Dvfs_mount.c258 vfs_equalopts(const char *opt1, const char *opt2) in vfs_equalopts() argument
263 if (strcmp(opt1, opt2) == 0) in vfs_equalopts()
266 if (strncmp(opt1, "no", 2) == 0 && strcmp(opt1 + 2, opt2) == 0) in vfs_equalopts()
269 if (strncmp(opt2, "no", 2) == 0 && strcmp(opt1, opt2 + 2) == 0) in vfs_equalopts()
272 !strncmp(opt1, opt2, ++p - opt1)) { in vfs_equalopts()
273 opt2 += p - opt1; in vfs_equalopts()
276 if (strncmp(opt1, "no", 2) == 0 && strcmp(opt1 + 2, opt2) == 0) in vfs_equalopts()
279 if (strncmp(opt2, "no", 2) == 0 && strcmp(opt1, opt2 + 2) == 0) in vfs_equalopts()
284 (vfs_isopt_ro(opt2) || vfs_isopt_rw(opt2))) in vfs_equalopts()
297 struct vfsopt *opt, *opt2, *tmp; in vfs_sanitizeopts() local
[all …]
/src/sys/dev/cxgbe/tom/
H A Dt4_tom.c1165 uint32_t opt2 = 0; in calc_options2() local
1175 opt2 |= F_RX_FC_VALID | F_RX_COALESCE_VALID; in calc_options2()
1176 opt2 |= F_CONG_CNTRL_VALID | F_PACE_VALID; in calc_options2()
1178 opt2 |= F_T5_OPT_2_VALID; /* all 4 valid */ in calc_options2()
1179 opt2 |= F_T5_ISS; /* ISS provided in CPL */ in calc_options2()
1183 opt2 |= V_SACK_EN(cp->sack); in calc_options2()
1186 opt2 |= V_TSTAMPS_EN(cp->tstamp); in calc_options2()
1189 opt2 |= F_WND_SCALE_EN; in calc_options2()
1192 opt2 |= V_CCTRL_ECN(cp->ecn); in calc_options2()
1194 opt2 |= V_TX_QUEUE(TX_MODQ(pi->tx_chan)); in calc_options2()
[all …]
H A Dt4_connect.c367 cpl->opt2 = calc_options2(vi, &toep->params); in t4_connect()
372 be32toh(cpl->opt2)); in t4_connect()
405 cpl->opt2 = calc_options2(vi, &toep->params); in t4_connect()
410 be32toh(cpl->opt2)); in t4_connect()
H A Dt4_listen.c1280 uint32_t opt2, int tid) in send_synack() argument
1301 rpl->opt2 = opt2; in send_synack()
1523 uint32_t opt2; in do_pass_accept_req() local
1526 opt2 = calc_options2(vi, &synqe->params); in do_pass_accept_req()
1536 if (send_synack(sc, synqe, opt0, opt2, tid) != 0) { in do_pass_accept_req()
1548 __func__, stid, tid, synqe, be64toh(opt0), be32toh(opt2)); in do_pass_accept_req()
/src/crypto/openssl/crypto/sha/asm/
H A Dsha1-armv4-large.pl112 my ($a,$b,$c,$d,$e,$opt1,$opt2)=@_;
127 $opt2 @ F_xx_xx
/src/bin/sh/
H A Dexec.c782 const char *opt2; in typecmd_impl() local
786 name = padvance(&path2, &opt2, argv[i]); in typecmd_impl()
/src/sys/contrib/device-tree/Bindings/pinctrl/
H A Dmarvell,dove-pinctrl.txt61 twsi - none, opt1, opt2, opt3
H A Dpinctrl-palmas.txt71 There are 4 special functions: opt0, opt1, opt2 and opt3. If any of these
/src/crypto/openssl/test/recipes/80-test_cmp_http_data/
H A Dtest_credentials.csv1 …al, -extracerts,val, BLANK, BLANK, -digest,val, -unprotected_requests,noarg, -opt1,arg1, -opt2,arg2
H A Dtest_verification.csv1 …nprotected_errors, -extracertsout,val,val2, -srvcertout,val, -opt1,arg1, -opt2,arg2, -opt3,arg3, -…
H A Dtest_enrollment.csv1 …ut_trusted,val,val2, -oldcert,val, -csr,val, -revreason,val, -opt1,arg1, -opt2,arg2, -opt3,arg3, -…
/src/sys/dev/cxgbe/common/
H A Dt4_msg.h967 __be32 opt2; member
974 __be32 opt2; member
992 __be32 opt2; member
1009 __be32 opt2; member
1022 __be32 opt2; member
1042 __be32 opt2; member
1064 __be32 opt2; member
1078 __be32 opt2; member
1093 __be32 opt2; member
1110 __be32 opt2; member
/src/sys/dev/cxgb/common/
H A Dcxgb_t3_cpl.h611 __be32 opt2; member
628 __be32 opt2; member
/src/sys/contrib/device-tree/src/arm/marvell/
H A Ddove.dtsi727 marvell,function = "twsi-opt2";
/src/sys/dev/cxgbe/crypto/
H A Dt6_kern_tls.c176 cpl->opt2 = htobe32(options); in mk_ktls_act_open_req()
211 cpl->opt2 = htobe32(options); in mk_ktls_act_open_req6()
/src/sys/dev/cxgbe/
H A Dt4_filter.c1751 cpl6->opt2 = htobe32(F_RSS_QUEUE_VALID | V_RSS_QUEUE(f->fs.iq) | in mk_act_open_req6()
1795 cpl6->opt2 = htobe32(F_RSS_QUEUE_VALID | V_RSS_QUEUE(f->fs.iq) | in mk_act_open_req()
/src/crypto/openssl/include/openssl/
H A Dasn1t.h.in286 * ASN1_SOMEOTHER *opt2;
/src/contrib/ofed/libcxgb4/
H A Dt4fw_api.h490 __be32 opt2; member
/src/sys/dev/cxgbe/firmware/
H A Dt4fw_interface.h946 __be32 opt2; member
/src/contrib/byacc/
H A DCHANGES4668 * test/run_test.sh: use $opt2 in filenames of the generated files

12