/freebsd/contrib/kyua/utils/ |
H A D | optional_test.cpp | 229 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/usr.sbin/jail/ |
H A D | config.c | 818 equalopts(const char *opt1, const char *opt2) in equalopts() argument 823 if (strcmp(opt1, opt2) == 0) in equalopts() 826 if (strncmp(opt1, "no", 2) == 0 && strcmp(opt1 + 2, opt2) == 0) in equalopts() 829 if (strncmp(opt2, "no", 2) == 0 && strcmp(opt1, opt2 + 2) == 0) in equalopts() 831 while ((p = strchr(opt1, '.')) != NULL && in equalopts() 832 !strncmp(opt1, opt2, ++p - opt1)) { in equalopts() 833 opt2 += p - opt1; in equalopts() 834 opt1 = p; in equalopts() 836 if (strncmp(opt1, "no", 2) == 0 && strcmp(opt1 + 2, opt2) == 0) in equalopts() 839 if (strncmp(opt2, "no", 2) == 0 && strcmp(opt1, opt2 + 2) == 0) in equalopts()
|
H A D | jailp.h | 228 extern int equalopts(const char *opt1, const char *opt2);
|
/freebsd/bin/sh/tests/builtins/ |
H A D | getopts4.0 | 5 r1=$? OPTIND1=$OPTIND opt1=$opt 8 [ "$r1" = 0 ] && [ "$OPTIND1" = 2 ] && [ "$opt1" = x ] && [ "$r2" != 0 ] &&
|
H A D | getopts5.0 | 5 r1=$? OPTIND1=$OPTIND opt1=$opt 8 [ "$r1" = 0 ] && [ "$OPTIND1" = 2 ] && [ "$opt1" = x ] && [ "$r2" != 0 ] &&
|
H A D | getopts10.0 | 5 r1=$? OPTIND1=$OPTIND opt1=$opt 9 [ "$r1" = 0 ] && [ "$OPTIND1" = 2 ] && [ "$opt1" = x ] && [ "$r2" != 0 ] &&
|
/freebsd/crypto/heimdal/lib/sl/ |
H A D | slc-gram.y | 464 gen_options(struct assignment *opt1, const char *name) in gen_options() argument 470 for(tmp = opt1; in gen_options() 491 struct assignment *opt1; in gen_wrapper() local 504 opt1 = find(as, "option"); in gen_wrapper() 512 if(opt1 != NULL) { in gen_wrapper() 513 gen_options(opt1, n); in gen_wrapper() 522 if(opt1 != NULL) in gen_wrapper() 651 f, opt1 ? "&opt": "NULL"); in gen_wrapper()
|
H A D | slc-gram.c | 1973 gen_options(struct assignment *opt1, const char *name) in gen_options() argument 1979 for(tmp = opt1; in gen_options() 2000 struct assignment *opt1; in gen_wrapper() local 2013 opt1 = find(as, "option"); in gen_wrapper() 2021 if(opt1 != NULL) { in gen_wrapper() 2022 gen_options(opt1, n); in gen_wrapper() 2031 if(opt1 != NULL) in gen_wrapper() 2160 f, opt1 ? "&opt": "NULL"); in gen_wrapper()
|
/freebsd/lib/libnetmap/ |
H A D | nmreq.c | 554 const char *scan, *opt1; in nmreq_options_decode() local 571 opt1 = scan; /* start of option */ in nmreq_options_decode() 575 len = scan - opt1; in nmreq_options_decode() 587 memcpy(w, opt1, len); in nmreq_options_decode()
|
/freebsd/sys/kern/ |
H A D | vfs_mount.c | 257 vfs_equalopts(const char *opt1, const char *opt2) in vfs_equalopts() argument 262 if (strcmp(opt1, opt2) == 0) in vfs_equalopts() 265 if (strncmp(opt1, "no", 2) == 0 && strcmp(opt1 + 2, opt2) == 0) in vfs_equalopts() 268 if (strncmp(opt2, "no", 2) == 0 && strcmp(opt1, opt2 + 2) == 0) in vfs_equalopts() 270 while ((p = strchr(opt1, '.')) != NULL && in vfs_equalopts() 271 !strncmp(opt1, opt2, ++p - opt1)) { in vfs_equalopts() 272 opt2 += p - opt1; in vfs_equalopts() 273 opt1 = p; in vfs_equalopts() 275 if (strncmp(opt1, "no", 2) == 0 && strcmp(opt1 + 2, opt2) == 0) in vfs_equalopts() 278 if (strncmp(opt2, "no", 2) == 0 && strcmp(opt1, opt2 + 2) == 0) in vfs_equalopts() [all …]
|
/freebsd/crypto/openssl/crypto/sha/asm/ |
H A D | sha1-armv4-large.pl | 112 my ($a,$b,$c,$d,$e,$opt1,$opt2)=@_; 126 $opt1 @ F_xx_xx
|
/freebsd/sys/contrib/device-tree/Bindings/pinctrl/ |
H A D | marvell,dove-pinctrl.txt | 61 twsi - none, opt1, opt2, opt3
|
H A D | pinctrl-palmas.txt | 71 There are 4 special functions: opt0, opt1, opt2 and opt3. If any of these
|
/freebsd/crypto/openssl/test/recipes/80-test_cmp_http_data/ |
H A D | test_verification.csv | 1 …ted,val, -ignore_keyusage, -unprotected_errors, -extracertsout,val,val2, -opt1,arg1, -opt2,arg2, -…
|
/freebsd/sys/dev/cxgbe/tom/ |
H A D | t4_listen.c | 583 req->opt1 = htobe64(V_CONN_POLICY(CPL_CONN_POLICY_ASK) | in create_server() 613 req->opt1 = htobe64(V_CONN_POLICY(CPL_CONN_POLICY_ASK) | in create_server6()
|
/freebsd/sys/contrib/device-tree/src/arm/marvell/ |
H A D | dove.dtsi | 722 marvell,function = "twsi-opt1";
|
/freebsd/sys/dev/cxgb/common/ |
H A D | cxgb_t3_cpl.h | 528 __be32 opt1; member
|
/freebsd/sys/dev/cxgbe/common/ |
H A D | t4_msg.h | 646 __be64 opt1; member 659 __be64 opt1; member
|
/freebsd/crypto/openssl/include/openssl/ |
H A D | asn1t.h.in | 294 * ASN1_SOMETHING *opt1;
|
/freebsd/sys/dev/cxgb/ |
H A D | cxgb_main.c | 3253 oreq->opt1 = htonl(V_MAC_MATCH_VALID(f->mac_vld) | in set_filter()
|
/freebsd/contrib/sqlite3/ |
H A D | sqlite3.c | 21922 #define CTIMEOPT_VAL2_(opt1,opt2) #opt1 "," #opt2 argument
|