HomeSort by: relevance | last modified time | path
    Searched defs:checks (Results 1 - 25 of 32) sorted by relevancy

1 2

  /src/crypto/external/apache2/openssl/dist/providers/implementations/encode_decode/
encode_key2blob.c 61 int checks[] = { local
72 for (i = 0; i < OSSL_NELEM(checks); i++) {
73 int check1 = (selection & checks[i]) != 0;
74 int check2 = (selection_mask & checks[i]) != 0;
encode_key2any.c 1176 int checks[] = { local
1187 for (i = 0; i < OSSL_NELEM(checks); i++) {
1188 int check1 = (selection & checks[i]) != 0;
1189 int check2 = (selection_mask & checks[i]) != 0;
  /src/crypto/external/bsd/openssl/dist/providers/implementations/encode_decode/
encode_key2blob.c 61 int checks[] = { local
72 for (i = 0; i < OSSL_NELEM(checks); i++) {
73 int check1 = (selection & checks[i]) != 0;
74 int check2 = (selection_mask & checks[i]) != 0;
decode_der2key.c 153 int checks[] = { local
164 for (i = 0; i < OSSL_NELEM(checks); i++) {
165 int check1 = (selection & checks[i]) != 0;
166 int check2 = (desc->selection_mask & checks[i]) != 0;
encode_key2any.c 1019 int checks[] = { local
1030 for (i = 0; i < OSSL_NELEM(checks); i++) {
1031 int check1 = (selection & checks[i]) != 0;
1032 int check2 = (selection_mask & checks[i]) != 0;
  /src/crypto/external/bsd/openssl.old/dist/apps/
prime.c 31 {"checks", OPT_CHECKS, 'p', "Number of checks"},
38 int hex = 0, checks = 20, generate = 0, bits = 0, safe = 0, ret = 1; local
67 checks = atoi(opt_arg());
124 BN_is_prime_ex(bn, checks, NULL, NULL)
  /src/crypto/external/bsd/openssl.old/dist/crypto/bn/
bn_prime.c 62 int checks = BN_prime_checks_for_size(bits); local
104 i = BN_is_prime_fasttest_ex(ret, checks, ctx, 0, cb);
117 for (i = 0; i < checks; i++) {
145 int BN_is_prime_ex(const BIGNUM *a, int checks, BN_CTX *ctx_passed,
148 return BN_is_prime_fasttest_ex(a, checks, ctx_passed, 0, cb);
151 int BN_is_prime_fasttest_ex(const BIGNUM *a, int checks, BN_CTX *ctx_passed,
168 if (checks == BN_prime_checks)
169 checks = BN_prime_checks_for_size(BN_num_bits(a));
218 for (i = 0; i < checks; i++) {
  /src/external/bsd/nsd/dist/simdzone/src/westmere/
ip4.h 171 __m128i checks = _mm_or_si128(check_lz, check_of); local
172 uint32_t check_mask = (uint32_t)_mm_movemask_epi8(checks);
  /src/tests/usr.sbin/certctl/
t_certctl.sh 91 # checks <certsN>...
93 # Run various checks with certctl.
95 checks() function
227 checks certs1
238 checks certs1 certs2
250 checks certs1 certs3
387 checks certs1 "$(pwd)/$evildir"
412 checks certs1
  /src/external/apache2/llvm/dist/clang/utils/check_cfc/
check_cfc.py 6 different compilation processes. It checks that code is not unduly affected by
15 -Enable the desired checks in check_cfc.cfg (in the same directory as the
18 [Checks]
256 checks."""
313 # Create configuration defaults from list of checks
315 [Checks]
319 checks = [cls.__name__ for cls in vars()['WrapperCheck'].__subclasses__()] variable in class:dash_s_no_change
321 for c in checks:
344 for check_name in checks
345 if config.getboolean('Checks', check_name)
    [all...]
  /src/external/gpl3/autoconf/dist/
cfg.mk 110 local-checks-to-skip ?= \
maint.mk 124 ## Sanity checks. ##
135 local-checks-available += $(syntax-check-rules)
137 local-checks-available += no-vc-detected
141 .PHONY: $(local-checks-available)
165 $(filter-out $(local-checks-to-skip), $(local-checks-available)))
1155 # This is useful because help-version cross-checks prog --version
1308 submodule-checks ?= no-submodule-changes public-submodule-commit
1335 alpha beta stable: $(local-check) writable-files $(submodule-checks)
1490 # The second nm|grep checks for file-scope variables with 'extern' scope
    [all...]
  /src/crypto/external/apache2/openssl/dist/crypto/bn/
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); local
170 i = bn_is_prime_int(ret, checks, ctx, 0, cb);
183 for (i = 0; i < checks; i++) {
228 int BN_is_prime_ex(const BIGNUM *a, int checks, BN_CTX *ctx_passed,
231 return ossl_bn_check_prime(a, checks, ctx_passed, 0, cb);
234 int BN_is_prime_fasttest_ex(const BIGNUM *w, int checks, BN_CTX *ctx,
237 return ossl_bn_check_prime(w, checks, ctx, do_trial_division, cb);
241 /* Wrapper around bn_is_prime_int that sets the minimum number of checks */
242 int ossl_bn_check_prime(const BIGNUM *w, int checks, BN_CTX *ctx
    [all...]
  /src/crypto/external/bsd/openssl/dist/crypto/bn/
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); local
172 i = bn_is_prime_int(ret, checks, ctx, 0, cb);
185 for (i = 0; i < checks; i++) {
230 int BN_is_prime_ex(const BIGNUM *a, int checks, BN_CTX *ctx_passed,
233 return ossl_bn_check_prime(a, checks, ctx_passed, 0, cb);
236 int BN_is_prime_fasttest_ex(const BIGNUM *w, int checks, BN_CTX *ctx,
239 return ossl_bn_check_prime(w, checks, ctx, do_trial_division, cb);
243 /* Wrapper around bn_is_prime_int that sets the minimum number of checks */
244 int ossl_bn_check_prime(const BIGNUM *w, int checks, BN_CTX *ctx
    [all...]
  /src/external/bsd/nvi/dist/motif_l/
m_search.c 405 Widget box, form, label, text, checks, buttons, form2;
473 checks = create_check_boxes( form, toggle_data, XtNumber(toggle_data) );
475 checks = (Widget) __vi_create_search_toggles( form, search_toggles );
477 XtVaSetValues( checks,
396 Widget box, form, label, text, checks, buttons, form2; local
  /src/external/bsd/pcc/dist/pcc/mip/
mkext.c 62 struct checks { struct
65 } checks[] = { variable in typeref:struct:checks
134 struct checks *ch;
167 for (ch = checks; ch->op != 0; ch++) {
  /src/external/ibm-public/postfix/dist/src/cleanup/
cleanup_message.c 522 MAPS *checks; local
533 (header_class == class && (map_class = var_name, checks = maps) != 0)
549 if ((value = maps_find(checks, header, 0)) != 0) {
561 } else if (checks->error) {
564 state->queue_id, checks->title);
1128 /* Turn off content checks if bouncing or forwarding mail. */
  /src/external/public-domain/xz/dist/src/xz/
list.c 109 uint32_t checks; member in struct:__anon24653
632 /// \param checks Bit mask of Checks to print
639 uint32_t checks, bool space_after_comma)
641 // If we get called when there are no Checks to print, set checks
644 if (checks == 0)
645 checks = 1;
654 if (checks & (UINT32_C(1) << i)) {
681 char checks[CHECKS_STR_SIZE] local
918 char checks[CHECKS_STR_SIZE]; local
1034 char checks[CHECKS_STR_SIZE]; local
1093 char checks[CHECKS_STR_SIZE]; local
    [all...]
  /src/external/gpl3/gcc/dist/gcc/cp/
parser.h 27 /* A token's value and its associated deferred access checks and
33 /* The checks that have been associated with value. */
34 vec<deferred_access_check, va_gc> *checks; variable
parser.cc 1277 associated checks and return the value. */
1282 /* Perform any access checks that were deferred. */ local
1283 vec<deferred_access_check, va_gc> *checks;
1285 checks = check_value->checks;
1286 if (checks)
1289 FOR_EACH_VEC_SAFE_ELT (checks, i, chk)
7293 /* Retrieve any deferred checks. Do not pop this access checks yet
7298 token->u.tree_check_value->checks = get_deferred_access_checks ()
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/cp/
parser.h 27 /* A token's value and its associated deferred access checks and
33 /* The checks that have been associated with value. */
34 vec<deferred_access_check, va_gc> *checks; variable
  /src/external/public-domain/xz/dist/src/liblzma/common/
index.c 177 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;
854 dest->checks = lzma_index_checks(dest) | src->checks;
  /src/crypto/external/apache2/openssl/dist/test/
fake_rsaprov.c 899 int checks[] = { local
910 for (i = 0; i < OSSL_NELEM(checks); i++) {
911 int check1 = (selection & checks[i]) != 0;
912 int check2 = (desc->selection_mask & checks[i]) != 0;
  /src/external/gpl3/gcc/dist/gcc/
tree-vect-data-refs.cc 240 "will not create alias checks, as"
241 " --param vect-max-version-for-alias-checks"
259 const vec<tree> &checks = LOOP_VINFO_CHECK_NONZERO (loop_vinfo); local
260 for (unsigned int i = 0; i < checks.length(); ++i)
261 if (checks[i] == value)
374 Note that the alias checks will be removed if the VF ends up
2223 then see if loop versioning checks can be used to make all data
2242 - The cost of peeling (the extra runtime checks, the increase
2689 4) the number of runtime alignment checks is within reason. */
3911 Merge several alias checks into one if possible
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/
tree-vect-data-refs.cc 197 "will not create alias checks, as"
198 " --param vect-max-version-for-alias-checks"
216 const vec<tree> &checks = LOOP_VINFO_CHECK_NONZERO (loop_vinfo); local
217 for (unsigned int i = 0; i < checks.length(); ++i)
218 if (checks[i] == value)
325 Note that the alias checks will be removed if the VF ends up
1927 then see if loop versioning checks can be used to make all data
1946 - The cost of peeling (the extra runtime checks, the increase
2391 4) the number of runtime alignment checks is within reason. */
3614 Merge several alias checks into one if possible
    [all...]

Completed in 57 milliseconds

1 2