| /netbsd-src/external/ibm-public/postfix/dist/src/global/ |
| H A D | compat_level_expand.ref | 3 << ${ {$compatibility_level} ==level {3.0} ? {good} : {bad} } 4 stat=0 result=good 5 << ${ {$compatibility_level} !=level {3.0} ? {bad} : {good} } 6 stat=0 result=good 7 << ${ {$compatibility_level} ==level {3.10} ? {bad} : {good} } 8 stat=0 result=good 9 << ${ {$compatibility_level} !=level {3.10} ? {good} : {bad} } 10 stat=0 result=good 11 << ${ {$compatibility_level} <level {4} ? {good} : {bad} } 12 stat=0 result=good [all …]
|
| H A D | compat_level_expand.in | 3 ${ {$compatibility_level} ==level {3.0} ? {good} : {bad} } 4 ${ {$compatibility_level} !=level {3.0} ? {bad} : {good} } 5 ${ {$compatibility_level} ==level {3.10} ? {bad} : {good} } 6 ${ {$compatibility_level} !=level {3.10} ? {good} : {bad} } 7 ${ {$compatibility_level} <level {4} ? {good} : {bad} } 8 ${ {$compatibility_level} <=level {4} ? {good} : {bad} } 9 ${ {$compatibility_level} <level {2} ? {bad} : {good} } 10 ${ {$compatibility_level} <=level {2} ? {bad} : {good} } 11 ${ {$compatibility_level} <=level {3.0} ? {good} : {bad} } 12 ${ {$compatibility_level} >level {4} ? {bad} : {good} } [all …]
|
| /netbsd-src/crypto/external/bsd/netpgp/dist/ |
| H A D | tst | 53 /usr/bin/netpgp --verify a.gpg && good=1 54 marktest 1 $good 56 /usr/bin/netpgp --verify a || good=2 57 marktest 2 $good 62 diff src/netpgp/netpgp.1 b && good=3 63 marktest 3 $good 68 diff configure c && good=4 69 marktest 4 $good 76 diff e d && good=5 77 marktest 5 $good [all …]
|
| /netbsd-src/external/apache2/llvm/dist/clang/docs/ |
| H A D | ClangFormattedStatus.rst | 6 .good { background-color: #2CCCFF } 12 .. role:: good 56 - :good:`100%` 96 - :good:`100%` 136 - :good:`100%` 151 - :good:`100%` 171 - :good:`100%` 231 - :good:`100%` 241 - :good:`100%` 276 - :good:`100%` [all …]
|
| H A D | OpenMPSupport.rst | 6 .good { background-color: #CCFF99 } 11 .. role:: good 122 … | support != in the canonical loop form | :good:`done` … 126 … | collapse imperfectly nested loop | :good:`done` … 128 … | collapse non-rectangular nested loop | :good:`done` … 130 … | C++ range-base for loop | :good:`done` … 132 … | clause: if for SIMD directives | :good:`done` … 134 … | inclusive scan extension (matching C++17 PSTL) | :good:`done` … 136 … | memory allocators | :good:`done` … 138 … | allocate directive and allocate clause | :good:`done` … [all …]
|
| /netbsd-src/crypto/external/bsd/openssl.old/dist/test/recipes/ |
| H A D | 15-test_genrsa.t | 31 my $good = 11; # Log2 of number of bits (2 << 11 == 2048) 32 while ($good > $bad + 1) { 33 my $checked = int(($good + $bad + 1) / 2); 37 $good = $checked; 43 $good++ if $good == $bad; 44 $good = 2 ** $good; 45 note "Found lowest allowed amount of bits to be $good"; 47 ok(run(app([ 'openssl', 'genrsa', '-3', '-out', 'genrsatest.pem', $good ])), 48 "genrsa -3 $good"); 51 ok(run(app([ 'openssl', 'genrsa', '-f4', '-out', 'genrsatest.pem', $good ])), [all …]
|
| /netbsd-src/crypto/external/bsd/openssl/dist/test/recipes/ |
| H A D | 15-test_genrsa.t | 45 my $good = 11; # Log2 of number of bits (2 << 11 == 2048) 47 while ($good > $bad + 1) { 48 my $checked = int(($good + $bad + 1) / 2); 56 $good = $checked; 62 $good++ if $good == $bad; 63 $good = 2 ** $good; 64 note "Found lowest allowed amount of bits to be $good"; 68 '-pkeyopt', "rsa_keygen_bits:$good", 70 "genpkey $good"); 96 ok(run(app([ 'openssl', 'genrsa', '-3', '-out', 'genrsatest.pem', $good ])), [all …]
|
| /netbsd-src/crypto/external/bsd/openssl.old/dist/crypto/rsa/ |
| H A D | rsa_ssl.c | 67 unsigned int good, found_zero_byte, mask, threes_in_row; in RSA_padding_check_SSLv23() local 96 good = constant_time_is_zero(em[0]); in RSA_padding_check_SSLv23() 97 good &= constant_time_eq(em[1], 2); in RSA_padding_check_SSLv23() 98 err = constant_time_select_int(good, 0, RSA_R_BLOCK_TYPE_IS_NOT_02); in RSA_padding_check_SSLv23() 99 mask = ~good; in RSA_padding_check_SSLv23() 120 good &= constant_time_ge(zero_index, 2 + 8); in RSA_padding_check_SSLv23() 121 err = constant_time_select_int(mask | good, err, in RSA_padding_check_SSLv23() 123 mask = ~good; in RSA_padding_check_SSLv23() 131 good &= constant_time_lt(threes_in_row, 8); in RSA_padding_check_SSLv23() 132 err = constant_time_select_int(mask | good, err, in RSA_padding_check_SSLv23() [all …]
|
| H A D | rsa_pk1.c | 161 unsigned int good, found_zero_byte, mask; in RSA_padding_check_PKCS1_type_2() local 196 good = constant_time_is_zero(em[0]); in RSA_padding_check_PKCS1_type_2() 197 good &= constant_time_eq(em[1], 2); in RSA_padding_check_PKCS1_type_2() 214 good &= constant_time_ge(zero_index, 2 + 8); in RSA_padding_check_PKCS1_type_2() 226 good &= constant_time_ge(tlen, mlen); in RSA_padding_check_PKCS1_type_2() 246 mask = good & constant_time_lt(i, mlen); in RSA_padding_check_PKCS1_type_2() 252 err_clear_last_constant_time(1 & good); in RSA_padding_check_PKCS1_type_2() 254 return constant_time_select_int(good, mlen, -1); in RSA_padding_check_PKCS1_type_2()
|
| /netbsd-src/external/bsd/kyua-cli/dist/utils/logging/ |
| H A D | operations_test.cpp | 112 ATF_REQUIRE(std::getline(input, line).good()); in ATF_TEST_CASE_BODY() 115 ATF_REQUIRE(std::getline(input, line).good()); in ATF_TEST_CASE_BODY() 118 ATF_REQUIRE(std::getline(input, line).good()); in ATF_TEST_CASE_BODY() 121 ATF_REQUIRE(std::getline(input, line).good()); in ATF_TEST_CASE_BODY() 141 ATF_REQUIRE(std::getline(input, line).good()); in ATF_TEST_CASE_BODY() 195 ATF_REQUIRE(std::getline(input, line).good()); in ATF_TEST_CASE_BODY() 198 ATF_REQUIRE(std::getline(input, line).good()); in ATF_TEST_CASE_BODY() 201 ATF_REQUIRE(std::getline(input, line).good()); in ATF_TEST_CASE_BODY() 204 ATF_REQUIRE(std::getline(input, line).good()); in ATF_TEST_CASE_BODY() 207 ATF_REQUIRE(std::getline(input, line).good()); in ATF_TEST_CASE_BODY() [all …]
|
| /netbsd-src/crypto/external/bsd/openssl/dist/ssl/record/ |
| H A D | tls_pad.c | 31 size_t good, 77 size_t good; in ssl3_cbc_remove_padding_and_mac() local 87 good = constant_time_ge_s(*reclen, padding_length + overhead); in ssl3_cbc_remove_padding_and_mac() 89 good &= constant_time_ge_s(block_size, padding_length + 1); in ssl3_cbc_remove_padding_and_mac() 90 *reclen -= good & (padding_length + 1); in ssl3_cbc_remove_padding_and_mac() 93 block_size, mac_size, good, libctx); in ssl3_cbc_remove_padding_and_mac() 122 size_t good = -1; in tls1_cbc_remove_padding_and_mac() local 144 good = constant_time_ge_s(*reclen, overhead + padding_length); in tls1_cbc_remove_padding_and_mac() 165 good &= ~(mask & (padding_length ^ b)); in tls1_cbc_remove_padding_and_mac() 172 good = constant_time_eq_s(0xff, good & 0xff); in tls1_cbc_remove_padding_and_mac() [all …]
|
| /netbsd-src/crypto/external/bsd/openssl.old/dist/test/ssl-tests/ |
| H A D | 15-certstatus.conf | 5 test-0 = 0-certstatus-good 9 [0-certstatus-good] 10 ssl_conf = 0-certstatus-good-ssl 12 [0-certstatus-good-ssl] 13 server = 0-certstatus-good-server 14 client = 0-certstatus-good-client 16 [0-certstatus-good-server] 21 [0-certstatus-good-client] 29 server = 0-certstatus-good-server-extra 31 [0-certstatus-good-server-extra]
|
| H A D | 16-dtls-certstatus.conf | 5 test-0 = 0-certstatus-good 9 [0-certstatus-good] 10 ssl_conf = 0-certstatus-good-ssl 12 [0-certstatus-good-ssl] 13 server = 0-certstatus-good-server 14 client = 0-certstatus-good-client 16 [0-certstatus-good-server] 21 [0-certstatus-good-client] 29 server = 0-certstatus-good-server-extra 31 [0-certstatus-good-server-extra]
|
| /netbsd-src/crypto/external/bsd/openssl/dist/test/ssl-tests/ |
| H A D | 16-dtls-certstatus.cnf | 5 test-0 = 0-certstatus-good 9 [0-certstatus-good] 10 ssl_conf = 0-certstatus-good-ssl 12 [0-certstatus-good-ssl] 13 server = 0-certstatus-good-server 14 client = 0-certstatus-good-client 16 [0-certstatus-good-server] 21 [0-certstatus-good-client] 29 server = 0-certstatus-good-server-extra 31 [0-certstatus-good-server-extra]
|
| H A D | 15-certstatus.cnf | 5 test-0 = 0-certstatus-good 9 [0-certstatus-good] 10 ssl_conf = 0-certstatus-good-ssl 12 [0-certstatus-good-ssl] 13 server = 0-certstatus-good-server 14 client = 0-certstatus-good-client 16 [0-certstatus-good-server] 21 [0-certstatus-good-client] 29 server = 0-certstatus-good-server-extra 31 [0-certstatus-good-server-extra]
|
| /netbsd-src/crypto/external/bsd/openssl/dist/crypto/rsa/ |
| H A D | rsa_pk1.c | 174 unsigned int good, found_zero_byte, mask; in RSA_padding_check_PKCS1_type_2() local 208 good = constant_time_is_zero(em[0]); in RSA_padding_check_PKCS1_type_2() 209 good &= constant_time_eq(em[1], 2); in RSA_padding_check_PKCS1_type_2() 226 good &= constant_time_ge(zero_index, 2 + 8); in RSA_padding_check_PKCS1_type_2() 238 good &= constant_time_ge(tlen, mlen); in RSA_padding_check_PKCS1_type_2() 258 mask = good & constant_time_lt(i, mlen); in RSA_padding_check_PKCS1_type_2() 270 err_clear_last_constant_time(1 & good); in RSA_padding_check_PKCS1_type_2() 273 return constant_time_select_int(good, mlen, -1); in RSA_padding_check_PKCS1_type_2() 303 unsigned int i, good, version_good; in ossl_rsa_padding_check_PKCS1_type_2_TLS() local 326 good = constant_time_is_zero(from[0]); in ossl_rsa_padding_check_PKCS1_type_2_TLS() [all …]
|
| /netbsd-src/external/public-domain/xz/dist/tests/files/ |
| H A D | README | 16 Good files (good-*.xz) must decode successfully without requiring 19 Unsupported files (unsupported-*.xz) are good files, but headers 24 with the good files, these files must not require a lot of CPU time 32 good-0-empty.xz has one Stream with no Blocks. 34 good-0pad-empty.xz has one Stream with no Blocks followed by 37 good-0cat-empty.xz has two zero-Block Streams concatenated without 40 good-0catpad-empty.xz has two zero-Block Streams concatenated with 43 good-1-check-none.xz has one Stream with one Block with two 46 good-1-check-crc32.xz has one Stream with one Block with two 49 good-1-check-crc64.xz is like good-1-check-crc32.xz but with CRC64. [all …]
|
| /netbsd-src/crypto/external/bsd/openssl/dist/test/ |
| H A D | pkey_meth_test.c | 26 int good = 1; in test_asn1_meths() local 34 good = 0; in test_asn1_meths() 38 if (!good) { in test_asn1_meths() 50 return good; in test_asn1_meths() 59 int good = 1; in test_pkey_meths() local 67 good = 0; in test_pkey_meths() 71 if (!good) { in test_pkey_meths() 79 return good; in test_pkey_meths()
|
| H A D | x509_internal_test.c | 32 int prev = -1, good = 1; in test_standard_exts() local 38 good = 0; in test_standard_exts() 42 if (!good) { in test_standard_exts() 48 return good; in test_standard_exts() 83 int good = 1; in test_a2i_ipaddress() local 90 good = 0; in test_a2i_ipaddress() 98 good = 0; in test_a2i_ipaddress() 102 return good; in test_a2i_ipaddress()
|
| /netbsd-src/crypto/external/bsd/openssl.old/dist/test/ |
| H A D | pkey_meth_test.c | 23 int good = 1; in test_asn1_meths() local 31 good = 0; in test_asn1_meths() 35 if (!good) { in test_asn1_meths() 47 return good; in test_asn1_meths() 55 int good = 1; in test_pkey_meths() local 63 good = 0; in test_pkey_meths() 67 if (!good) { in test_pkey_meths() 75 return good; in test_pkey_meths()
|
| H A D | x509_internal_test.c | 41 int prev = -1, good = 1; in test_standard_exts() local 47 good = 0; in test_standard_exts() 51 if (!good) { in test_standard_exts() 57 return good; in test_standard_exts() 92 int good = 1; in test_a2i_ipaddress() local 99 good = 0; in test_a2i_ipaddress() 107 good = 0; in test_a2i_ipaddress() 111 return good; in test_a2i_ipaddress()
|
| /netbsd-src/external/gpl2/dtc/dist/tests/ |
| H A D | truncated_string.c | 23 const struct fdt_property *good, *bad; in main() local 32 good = fdt_get_property_by_offset(fdt, off, NULL); in main() 37 if (fdt32_to_cpu(good->len) != 0) in main() 39 name = fdt_get_string(fdt, fdt32_to_cpu(good->nameoff), &len); in main() 61 fdt_set_size_dt_strings(fdt, fdt32_to_cpu(good->nameoff) + 4); in main() 62 name = fdt_get_string(fdt, fdt32_to_cpu(good->nameoff), &len); in main()
|
| /netbsd-src/tests/usr.bin/gzip/ |
| H A D | t_gzip.sh | 86 atf_test_case good 93 cat >good.gz.uue <<EOF 94 begin-base64 644 good.gz 98 uudecode -m good.gz.uue 100 atf_check gzip -d good.gz 126 atf_add_test_case good
|
| /netbsd-src/games/monop/ |
| H A D | houses.c | 64 bool good, got_morg; in buy_houses() local 69 good = TRUE; in buy_houses() 78 got_morg = good = FALSE; in buy_houses() 83 good = TRUE; in buy_houses() 86 if (!good || got_morg) in buy_houses() 94 else if (!good) in buy_houses() 224 bool good; in sell_houses() local 229 good = TRUE; in sell_houses() 235 good = 0; in sell_houses() 237 if (!good && op->sqr->desc->houses != 0) in sell_houses() [all …]
|
| /netbsd-src/usr.sbin/rpc.pcnfsd/ |
| H A D | pcnfsd_test.c | 18 void good(); 55 good(); in main() 57 good(); in main() 61 good(); in main() 63 good(); in main() 65 good(); in main() 67 good(); in main() 71 good(); in main() 76 good(); in main() 83 good(); in main() [all …]
|