| /src/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 …]
|
| /src/usr.sbin/jail/ |
| H A D | config.c | 829 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() 842 while ((p = strchr(opt1, '.')) != NULL && in equalopts() 843 !strncmp(opt1, opt2, ++p - opt1)) { in equalopts() 844 opt2 += p - opt1; in equalopts() 845 opt1 = p; 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 D | jailp.h | 228 extern int equalopts(const char *opt1, const char *opt2);
|
| /src/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 ] &&
|
| /src/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()
|
| /src/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()
|
| /src/sys/kern/ |
| H A D | vfs_mount.c | 258 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() 271 while ((p = strchr(opt1, '.')) != NULL && in vfs_equalopts() 272 !strncmp(opt1, opt2, ++p - opt1)) { in vfs_equalopts() 273 opt2 += p - opt1; in vfs_equalopts() 274 opt1 = p; 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() [all …]
|
| /src/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
|
| /src/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
|
| /src/crypto/openssl/test/recipes/80-test_cmp_http_data/ |
| H A D | test_credentials.csv | 1 …al, -extracerts,val, BLANK, BLANK, -digest,val, -unprotected_requests,noarg, -opt1,arg1, -opt2,arg2
|
| H A D | test_verification.csv | 1 …keyusage, -unprotected_errors, -extracertsout,val,val2, -srvcertout,val, -opt1,arg1, -opt2,arg2, -…
|
| H A D | test_enrollment.csv | 1 …val,val2, -out_trusted,val,val2, -oldcert,val, -csr,val, -revreason,val, -opt1,arg1, -opt2,arg2, -…
|
| /src/sys/dev/cxgbe/tom/ |
| H A D | t4_listen.c | 584 req->opt1 = htobe64(V_CONN_POLICY(CPL_CONN_POLICY_ASK) | in create_server() 614 req->opt1 = htobe64(V_CONN_POLICY(CPL_CONN_POLICY_ASK) | in create_server6()
|
| /src/sys/contrib/device-tree/src/arm/marvell/ |
| H A D | dove.dtsi | 722 marvell,function = "twsi-opt1";
|
| /src/sys/dev/cxgb/common/ |
| H A D | cxgb_t3_cpl.h | 528 __be32 opt1; member
|
| /src/crypto/openssl/include/openssl/ |
| H A D | asn1t.h.in | 285 * ASN1_SOMETHING *opt1;
|
| /src/sys/dev/cxgbe/common/ |
| H A D | t4_msg.h | 683 __be64 opt1; member 696 __be64 opt1; member
|
| /src/sys/dev/cxgb/ |
| H A D | cxgb_main.c | 3254 oreq->opt1 = htonl(V_MAC_MATCH_VALID(f->mac_vld) | in set_filter()
|
| /src/contrib/sqlite3/ |
| H A D | sqlite3.c | 22394 #define CTIMEOPT_VAL2_(opt1,opt2) #opt1 "," #opt2 argument
|