Searched refs:checks (Results 1 - 25 of 26) sorted by relevance

12

/freebsd-10.2-release/crypto/openssl/crypto/bn/
H A Dbn_depr.c96 int BN_is_prime(const BIGNUM *a, int checks, argument
102 return BN_is_prime_ex(a, checks, ctx_passed, &cb);
105 int BN_is_prime_fasttest(const BIGNUM *a, int checks, argument
112 return BN_is_prime_fasttest_ex(a, checks, ctx_passed,
H A Dbn_prime.c170 int checks = BN_prime_checks_for_size(bits); local
199 i = BN_is_prime_fasttest_ex(ret, checks, ctx, 0, cb);
212 for (i = 0; i < checks; i++) {
241 int BN_is_prime_ex(const BIGNUM *a, int checks, BN_CTX *ctx_passed, argument
244 return BN_is_prime_fasttest_ex(a, checks, ctx_passed, 0, cb);
247 int BN_is_prime_fasttest_ex(const BIGNUM *a, int checks, BN_CTX *ctx_passed, argument
260 if (checks == BN_prime_checks)
261 checks = BN_prime_checks_for_size(BN_num_bits(a));
321 for (i = 0; i < checks; i++) {
/freebsd-10.2-release/crypto/openssl/apps/
H A Dprime.c63 int checks = 20; local
90 else if (!strcmp(*argv, "-checks"))
94 checks = atoi(*++argv);
138 BN_is_prime_ex(bn, checks, NULL, NULL) ? "" : "not ");
149 BIO_printf(bio_err, "%-14s number of checks\n", "-checks <n>");
/freebsd-10.2-release/contrib/xz/src/xz/
H A Dlist.c106 uint32_t checks; member in struct:__anon5125
588 /// \param checks Bit mask of Checks to print
595 uint32_t checks, bool space_after_comma)
597 assert(checks != 0);
606 if (checks & (UINT32_C(1) << i)) {
633 char checks[CHECKS_STR_SIZE]; local
634 get_check_names(checks, lzma_index_checks(xfi->idx), false);
645 checks,
664 uint32_t checks, uint64_t stream_padding)
667 get_check_names(checks_str, checks, tru
594 get_check_names(char buf[CHECKS_STR_SIZE], uint32_t checks, bool space_after_comma) argument
662 print_adv_helper(uint64_t stream_count, uint64_t block_count, uint64_t compressed_size, uint64_t uncompressed_size, uint32_t checks, uint64_t stream_padding) argument
868 char checks[CHECKS_STR_SIZE]; local
980 char checks[CHECKS_STR_SIZE]; local
1037 char checks[CHECKS_STR_SIZE]; local
[all...]
/freebsd-10.2-release/usr.bin/dtc/
H A Ddtc.cc102 fdt::checking::check_manager checks; local
236 if (!checks.disable_checker(arg))
242 if (!checks.enable_checker(arg))
314 if (!(checks.run_checks(&tree, true) || keep_going))
/freebsd-10.2-release/contrib/atf/atf-sh/
H A Datf-check.cpp577 run_status_checks(const std::vector< status_check >& checks, argument
582 for (std::vector< status_check >::const_iterator iter = checks.begin();
583 !ok && iter != checks.end(); iter++) {
676 run_output_checks(const std::vector< output_check >& checks, argument
681 for (std::vector< output_check >::const_iterator iter = checks.begin();
682 iter != checks.end(); iter++) {
/freebsd-10.2-release/contrib/subversion/subversion/libsvn_wc/
H A Dwc-checks.sql1 /* wc-checks.sql -- trigger-based checks for the wc-metadata database.
H A Dwc-queries.sql1724 -- include: wc-checks
/freebsd-10.2-release/gnu/usr.bin/dtc/
H A DMakefile11 SRCS= dtc.c checks.c fstree.c livetree.c treesource.c data.c \
/freebsd-10.2-release/contrib/xz/src/liblzma/common/
H A Dindex.c177 uint32_t checks; member in struct:lzma_index_s
390 i->checks = 0;
581 uint32_t checks = i->checks; local
586 checks |= UINT32_C(1) << s->stream_flags.check;
588 return checks;
851 dest->checks = lzma_index_checks(dest) | src->checks;
/freebsd-10.2-release/contrib/dtc/Documentation/
H A Ddtc-paper.tex489 format, \dtc performs a number of checks on the tree:
491 \item \emph{syntactic structure}: \dtc checks that node and property
493 It checks that a node does not have multiple properties or subnodes
495 \item \emph{semantic structure}: In some cases, \dtc checks that
497 values. For example, it checks that \texttt{reg} properties have a
500 checks that properties such as \texttt{interrupt-parent} contain a
502 \item \emph{Linux requirements}: \dtc checks that the device tree
507 These checks are useful to catch simple problems with the device tree,
532 number of checks on the device tree, they are rather haphazard. In
/freebsd-10.2-release/contrib/ntp/scripts/update-leap/
H A Dupdate-leap.sh34 # Recent NTP checks for new file daily, so there's nothing to do
77 <none> - ntpd checks file daily
/freebsd-10.2-release/contrib/gcc/cp/
H A Dsemantics.c99 maintains a VEC of all deferred checks.
130 /* The current mode of access checks. */
161 /* Resume deferring access checks again after we stopped doing
172 /* Stop deferring access checks. */
182 /* Discard the current deferred access checks and restore the
194 /* Returns a TREE_LIST representing the deferred checks.
209 /* Take current deferred checks and combine with the
210 previous states if we also defer checks previously.
211 Otherwise perform checks now. */
220 VEC (deferred_access_check,gc) *checks;
[all...]
H A Dparser.c51 /* A token's value and its associated deferred access checks and
58 /* The checks that have been associated with value. */
59 VEC (deferred_access_check, gc)* checks;
2483 /* This routine checks that type_decl is a class or class object followed by a '.'
4122 /* Retrieve any deferred checks. Do not pop this access checks yet
4126 token->u.tree_check_value->checks = get_deferred_access_checks ();
7774 /* Defer access checks until we know what is being declared; the
7775 checks for names appearing in the decl-specifier-seq should be
7794 /* We no longer need to defer access checks
11500 cp_parser_init_declarator(cp_parser* parser, cp_decl_specifier_seq *decl_specifiers, VEC (deferred_access_check,gc)* checks, bool function_definition_allowed_p, bool member_p, int declares_class_or_enum, bool* function_definition_p) argument
16333 cp_parser_single_declaration(cp_parser* parser, VEC (deferred_access_check,gc)* checks, bool member_p, bool* friend_p) argument
[all...]
/freebsd-10.2-release/share/mk/
H A Dbsd.sys.mk6 # Enable various levels of compiler warning checks. These may be
/freebsd-10.2-release/contrib/subversion/
H A DMakefile.in914 subversion/libsvn_wc/wc-queries.h: $(abs_srcdir)/subversion/libsvn_wc/wc-checks.sql
H A Dbuild.conf48 subversion/libsvn_wc/wc-checks.h
570 ### Java targets don't do up-to-date checks yet.
582 ### Java targets don't do up-to-date checks yet.
/freebsd-10.2-release/contrib/gcc/doc/include/
H A Dtexinfo.tex499 % defines \thisenv, so the current environment is known; @end checks
1766 % Count depth in font-changes, for error checks
2197 % Need this before the \...aftertitlepage checks so that if they are
/freebsd-10.2-release/contrib/amd/doc/
H A Dtexinfo.tex490 % defines \thisenv, so the current environment is known; @end checks
1690 % Count depth in font-changes, for error checks
2034 % Need this before the \...aftertitlepage checks so that if they are
/freebsd-10.2-release/contrib/groff/doc/
H A Dtexinfo.tex491 % defines \thisenv, so the current environment is known; @end checks
1700 % Count depth in font-changes, for error checks
2096 % Need this before the \...aftertitlepage checks so that if they are
/freebsd-10.2-release/contrib/unbound/
H A Dconfigure1474 --enable-alloc-checks enable to memory allocation statistics, for debug
1489 --enable-lock-checks enable to check lock and unlock calls, for debug
7593 # 'pass_all' -- all dependencies passed with no checks.
15154 # Check whether --enable-alloc-checks was given.
15540 # Various other checks:
/freebsd-10.2-release/contrib/gcc/
H A Dconfigure868 enable expensive run-time checks. With LIST,
869 enable only specific categories of checks.
6474 # Enable expensive internal checks
6481 # Determine the default checks.
6523 # these enable particular checks
7943 # works later. *sigh* This needs to come before all header checks.
14703 # Target-specific assembler checks.
/freebsd-10.2-release/contrib/gcclibs/libcpp/
H A Dconfigure855 --enable-checking enable expensive run-time checks
/freebsd-10.2-release/contrib/ntp/sntp/libevent/
H A Dconfigure1454 --enable-gcc-hardening enable compiler security checks
6123 # 'pass_all' -- all dependencies passed with no checks.
15148 # Various other checks:
/freebsd-10.2-release/contrib/binutils/gas/
H A Dconfigure1013 --enable-checking enable run-time checks
4026 # 'pass_all' -- all dependencies passed with no checks.

Completed in 403 milliseconds

12