| /netbsd-src/external/public-domain/xz/dist/src/xz/ |
| H A D | list.c | 109 uint32_t checks; member 639 uint32_t checks, bool space_after_comma) in get_check_names() argument 644 if (checks == 0) in get_check_names() 645 checks = 1; in get_check_names() 654 if (checks & (UINT32_C(1) << i)) { in get_check_names() 681 char checks[CHECKS_STR_SIZE]; in print_info_basic() local 682 get_check_names(checks, lzma_index_checks(xfi->idx), false); in print_info_basic() 693 checks, in print_info_basic() 712 uint32_t checks, uint64_t stream_padding) in print_adv_helper() argument 715 get_check_names(checks_str, checks, true); in print_adv_helper() [all …]
|
| /netbsd-src/external/gpl2/groff/dist/ |
| H A D | configure.ac | 29 # checks for programs 50 # checks for headers 56 # checks for header stuff 76 # checks for typedefs 83 # checks for libraries 87 # checks for functions 100 # checks for compiler characteristics 104 # checks for operating system services
|
| /netbsd-src/external/apache2/llvm/dist/llvm/docs/ |
| H A D | FaultMaps.rst | 2 FaultMaps and implicit checks 12 Code generated by managed language runtimes tend to have checks that 16 exploited by folding such safety checks into operations that can be 20 For example, Java requires null checks on objects before they are read 31 Information about implicit checks generated by LLVM are put in a 101 ``-enable-implicit-null-checks`` is passed to ``llc``. 109 Making null checks implicit is an aggressive optimization, and it can 112 ensure that only a negligible number of implicit null checks actually 114 of doing this is by healing failed implicit null checks into explicit 115 null checks via code patching or recompilation. It follows that there [all …]
|
| /netbsd-src/crypto/external/bsd/openssl/dist/crypto/bn/ |
| H A D | bn_prime.c | 27 static int bn_is_prime_int(const BIGNUM *w, int checks, BN_CTX *ctx, 131 int checks = bn_mr_min_checks(bits); in BN_generate_prime_ex2() local 172 i = bn_is_prime_int(ret, checks, ctx, 0, cb); in BN_generate_prime_ex2() 185 for (i = 0; i < checks; i++) { in BN_generate_prime_ex2() 230 int BN_is_prime_ex(const BIGNUM *a, int checks, BN_CTX *ctx_passed, in BN_is_prime_ex() argument 233 return ossl_bn_check_prime(a, checks, ctx_passed, 0, cb); in BN_is_prime_ex() 236 int BN_is_prime_fasttest_ex(const BIGNUM *w, int checks, BN_CTX *ctx, in BN_is_prime_fasttest_ex() argument 239 return ossl_bn_check_prime(w, checks, ctx, do_trial_division, cb); in BN_is_prime_fasttest_ex() 244 int ossl_bn_check_prime(const BIGNUM *w, int checks, BN_CTX *ctx, in ossl_bn_check_prime() argument 249 if (checks < min_checks) in ossl_bn_check_prime() [all …]
|
| H A D | bn_depr.c | 46 int BN_is_prime(const BIGNUM *a, int checks, in BN_is_prime() argument 52 return ossl_bn_check_prime(a, checks, ctx_passed, 0, &cb); in BN_is_prime() 55 int BN_is_prime_fasttest(const BIGNUM *a, int checks, in BN_is_prime_fasttest() argument 62 return ossl_bn_check_prime(a, checks, ctx_passed, do_trial_division, &cb); in BN_is_prime_fasttest()
|
| /netbsd-src/sys/arch/hppa/hppa/ |
| H A D | machdep.c | 1496 struct hppa_pim_checks *checks; 1503 checks = NULL; 1508 checks = &hpmc->pim_hpmc_checks; 1512 checks = &lpmc->pim_lpmc_checks; 1558 if (checks != NULL) { 1559 PIM_WORD("\n\n\tCheck Type", checks->pim_check_type, 1561 PIM_WORD("\n\tCPU State", checks->pim_check_cpu_state, 1563 PIM_WORD("\n\tCache Check", checks->pim_check_cache, 1565 PIM_WORD("\n\tTLB Check", checks->pim_check_tlb, 1567 PIM_WORD("\n\tBus Check", checks->pim_check_bus, [all …]
|
| /netbsd-src/crypto/external/bsd/openssl.old/dist/crypto/bn/ |
| H A D | bn_depr.c | 49 int BN_is_prime(const BIGNUM *a, int checks, 55 return BN_is_prime_ex(a, checks, ctx_passed, &cb); 58 int BN_is_prime_fasttest(const BIGNUM *a, int checks, 65 return BN_is_prime_fasttest_ex(a, checks, ctx_passed,
|
| H A D | bn_prime.c | 62 int checks = BN_prime_checks_for_size(bits); in BN_generate_prime_ex() local 104 i = BN_is_prime_fasttest_ex(ret, checks, ctx, 0, cb); in BN_generate_prime_ex() 117 for (i = 0; i < checks; i++) { in BN_generate_prime_ex() 145 int BN_is_prime_ex(const BIGNUM *a, int checks, BN_CTX *ctx_passed, in BN_is_prime_ex() argument 148 return BN_is_prime_fasttest_ex(a, checks, ctx_passed, 0, cb); in BN_is_prime_ex() 151 int BN_is_prime_fasttest_ex(const BIGNUM *a, int checks, BN_CTX *ctx_passed, in BN_is_prime_fasttest_ex() argument 168 if (checks == BN_prime_checks) in BN_is_prime_fasttest_ex() 169 checks = BN_prime_checks_for_size(BN_num_bits(a)); in BN_is_prime_fasttest_ex() 218 for (i = 0; i < checks; i++) { in BN_is_prime_fasttest_ex()
|
| /netbsd-src/external/gpl3/gcc/dist/libcody/ |
| H A D | configure.ac | 21 # Enable expensive internal checks 33 [enable expensive run-time checks. With LIST, 34 enable only specific categories of checks. 38 # Determine the default checks. 58 [Define to 1 if you want more run-time sanity checks.])
|
| /netbsd-src/external/apache2/llvm/dist/clang/docs/ |
| H A D | UndefinedBehaviorSanitizer.rst | 20 See the full list of available :ref:`checks <ubsan-checks>` below. 23 The checks have small runtime cost and no impact on address space layout or ABI. 50 You can enable only a subset of :ref:`checks <ubsan-checks>` offered by UBSan, 71 .. _ubsan-checks: 73 Available checks 76 Available checks are: 139 invalid pointers. These checks are made in terms of 152 signed left shift, also checks for signed overflow in C, and for 160 This includes all the checks covered by ``-ftrapv``, as well as checks for 161 signed division overflow (``INT_MIN/-1``), but not checks for [all …]
|
| H A D | ControlFlowIntegrity.rst | 28 To allow the checks to be implemented efficiently, the program must 33 The compiler will only produce CFI checks for a class if it can infer hidden 41 CFI checks for classes without visibility attributes. Most users will want 42 to specify ``-fvisibility=hidden``, which enables CFI checks for such classes. 57 - ``-fsanitize=cfi-cast-strict``: Enables :ref:`strict cast checks 104 This scheme checks that virtual calls take place using a vptr of the correct 129 This scheme checks that pointer casts are made to an object of the correct 131 of the pointee type of the cast. The checks are currently only introduced 165 This scheme checks that non-virtual calls take place using an object of 168 call. The checks are currently only introduced where the object is of a [all …]
|
| /netbsd-src/external/apache2/llvm/dist/libcxx/docs/DesignDocs/ |
| H A D | DebugMode.rst | 21 This macro is used to enable assertions and iterator debugging checks within 63 precondition checks throughout libc++. The second additionally enables 64 "iterator debugging" which checks the validity of iterators used by the program. 69 These checks are enabled when ``_LIBCPP_DEBUG`` is defined to either 0 or 1. 71 The following checks are enabled by ``_LIBCPP_DEBUG``: 84 These checks are enabled when ``_LIBCPP_DEBUG`` is defined to 1.
|
| /netbsd-src/crypto/external/bsd/openssl/dist/providers/implementations/encode_decode/ |
| H A D | encode_key2blob.c | 61 int checks[] = { in key2blob_check_selection() local 72 for (i = 0; i < OSSL_NELEM(checks); i++) { in key2blob_check_selection() 73 int check1 = (selection & checks[i]) != 0; in key2blob_check_selection() 74 int check2 = (selection_mask & checks[i]) != 0; in key2blob_check_selection()
|
| /netbsd-src/crypto/external/bsd/openssl.old/dist/doc/man1/ |
| H A D | prime.pod | 16 [B<-checks>] 21 The B<prime> command checks if the specified numbers are prime. 52 =item [B<-checks num>] 54 Perform the checks B<num> times to see that the generated number
|
| /netbsd-src/crypto/external/bsd/openssl/dist/doc/man3/ |
| H A D | X509_check_issued.pod | 5 X509_check_issued - checks if certificate is apparently issued by another 17 X509_check_issued() checks if certificate I<subject> was apparently issued 22 serial number, and issuer fields of I<issuer>, as far as present. It also checks 29 X509_check_issued() returns B<X509_V_OK> if all checks are successful
|
| H A D | SSL_set1_host.pod | 19 These functions configure server hostname checks in the SSL client. 24 checks are not performed on the peer certificate. When a nonempty 25 B<name> is specified, certificate verification automatically checks 42 L<X509_check_host(3)> when name checks are applicable, by default 59 explicitly calling L<X509_check_host(3)>. Hostname checks may be out 96 /* Name checks were in scope and matched the peername */
|
| H A D | X509_check_purpose.pod | 15 This function checks if certificate I<x> was created with the purpose 33 The checks performed take into account the X.509 extensions 38 For non-CA checks 50 For CA checks the below integers could be returned with the following meanings:
|
| /netbsd-src/external/gpl3/binutils.old/dist/gas/doc/ |
| H A D | c-tilegx.texi | 194 This modifier yields the same value as @code{hw0}, but it also checks 199 This modifier yields the same value as @code{hw1}, but it also checks 204 This modifier yields the same value as @code{hw2}, but it also checks 223 checks that the value does not overflow. 228 GOT entry corresponding to the symbol, and it also checks that the 257 checks that the value does not overflow. 262 a plt entry, and it also checks that the value does not overflow. 273 checks that the value does not overflow. 279 TLS accesses. It also checks that the value does not overflow. 290 checks that the value does not overflow. [all …]
|
| /netbsd-src/external/gpl3/binutils/dist/gas/doc/ |
| H A D | c-tilegx.texi | 194 This modifier yields the same value as @code{hw0}, but it also checks 199 This modifier yields the same value as @code{hw1}, but it also checks 204 This modifier yields the same value as @code{hw2}, but it also checks 223 checks that the value does not overflow. 228 GOT entry corresponding to the symbol, and it also checks that the 257 checks that the value does not overflow. 262 a plt entry, and it also checks that the value does not overflow. 273 checks that the value does not overflow. 279 TLS accesses. It also checks that the value does not overflow. 290 checks that the value does not overflow. [all …]
|
| /netbsd-src/tests/usr.sbin/certctl/ |
| H A D | t_certctl.sh | 95 checks() function 227 checks certs1 238 checks certs1 certs2 250 checks certs1 certs3 387 checks certs1 "$(pwd)/$evildir" 412 checks certs1
|
| /netbsd-src/crypto/external/bsd/openssl.old/dist/doc/man3/ |
| H A D | SSL_set1_host.pod | 19 These functions configure server hostname checks in the SSL client. 24 checks are not performed on the peer certificate. When a nonempty 25 B<name> is specified, certificate verification automatically checks 42 L<X509_check_host(3)> when name checks are applicable, by default 59 explicitly calling L<X509_check_host(3)>. Hostname checks may be out 96 /* Name checks were in scope and matched the peername */
|
| /netbsd-src/crypto/external/bsd/openssl.old/dist/apps/ |
| H A D | prime.c | 38 int hex = 0, checks = 20, generate = 0, bits = 0, safe = 0, ret = 1; in prime_main() local 67 checks = atoi(opt_arg()); in prime_main() 124 BN_is_prime_ex(bn, checks, NULL, NULL) in prime_main()
|
| /netbsd-src/external/gpl3/binutils/dist/binutils/ |
| H A D | ChangeLog-2014 | 41 (read_cie): Add range checks. 52 * dwarf.c (display_gdb_index): Add more range checks. 91 * readelf.c (dump_ia64_unwind): Add range checks. 93 range checks. 94 (process_version_sections): Add range checks. 176 (setup_archive): Add checks for invalid archives. 177 (get_archive_member_name): Add range checks. 179 * readelf.c (process_archive): Add range checks. 209 (read_and_display_attr_value): Add range checks. 214 (display_debug_frames): Add checks for read_cie failing. Add [all …]
|
| /netbsd-src/external/gpl3/binutils.old/dist/binutils/ |
| H A D | ChangeLog-2014 | 41 (read_cie): Add range checks. 52 * dwarf.c (display_gdb_index): Add more range checks. 91 * readelf.c (dump_ia64_unwind): Add range checks. 93 range checks. 94 (process_version_sections): Add range checks. 176 (setup_archive): Add checks for invalid archives. 177 (get_archive_member_name): Add range checks. 179 * readelf.c (process_archive): Add range checks. 209 (read_and_display_attr_value): Add range checks. 214 (display_debug_frames): Add checks for read_cie failing. Add [all …]
|
| /netbsd-src/external/gpl3/gcc.old/dist/libcpp/ |
| H A D | configure.ac | 129 # Enable expensive internal checks 138 [enable expensive run-time checks. With LIST, 139 enable only specific categories of checks. 143 # Determine the default checks. 157 # these enable particular checks 169 [Define to 1 if you want more run-time sanity checks.])
|