Searched defs:checks (Results 1 - 19 of 19) sorted by relevance

/external/chromium_org/third_party/openssl/openssl/apps/
H A Dprime.c64 int checks=20; local
92 else if(!strcmp(*argv,"-checks"))
96 checks=atoi(*++argv);
147 BN_is_prime_ex(bn,checks,NULL,NULL) ? "" : "not ");
158 BIO_printf(bio_err,"%-14s number of checks\n","-checks <n>");
/external/openssl/apps/
H A Dprime.c64 int checks=20; local
92 else if(!strcmp(*argv,"-checks"))
96 checks=atoi(*++argv);
147 BN_is_prime_ex(bn,checks,NULL,NULL) ? "" : "not ");
158 BIO_printf(bio_err,"%-14s number of checks\n","-checks <n>");
/external/bison/
H A Dcfg.mk43 local-checks-to-skip = \
H A Dmaint.mk155 ## Sanity checks. ##
166 local-checks-available += $(syntax-check-rules)
168 local-checks-available += no-vc-detected
172 .PHONY: $(local-checks-available)
196 $(filter-out $(local-checks-to-skip), $(local-checks-available)))
1203 # This is useful because help-version cross-checks prog --version
1384 submodule-checks ?= no-submodule-changes public-submodule-commit
1412 alpha beta stable: $(local-check) writable-files $(submodule-checks)
1601 # The second nm|grep checks fo
[all...]
/external/chromium_org/third_party/openssl/openssl/crypto/bn/
H A Dbn_depr.c94 int BN_is_prime(const BIGNUM *a, int checks, void (*callback)(int,int,void *), argument
99 return BN_is_prime_ex(a, checks, ctx_passed, &cb);
102 int BN_is_prime_fasttest(const BIGNUM *a, int checks, argument
109 return BN_is_prime_fasttest_ex(a, checks, ctx_passed,
H A Dbn_prime.c166 int checks = BN_prime_checks_for_size(bits); local
199 i=BN_is_prime_fasttest_ex(ret,checks,ctx,0,cb);
211 for (i=0; i<checks; i++)
238 int BN_is_prime_ex(const BIGNUM *a, int checks, BN_CTX *ctx_passed, BN_GENCB *cb) argument
240 return BN_is_prime_fasttest_ex(a, checks, ctx_passed, 0, cb);
243 int BN_is_prime_fasttest_ex(const BIGNUM *a, int checks, BN_CTX *ctx_passed, argument
256 if (checks == BN_prime_checks)
257 checks = BN_prime_checks_for_size(BN_num_bits(a));
320 for (i = 0; i < checks; i++)
/external/openssl/crypto/bn/
H A Dbn_depr.c94 int BN_is_prime(const BIGNUM *a, int checks, void (*callback)(int,int,void *), argument
99 return BN_is_prime_ex(a, checks, ctx_passed, &cb);
102 int BN_is_prime_fasttest(const BIGNUM *a, int checks, argument
109 return BN_is_prime_fasttest_ex(a, checks, ctx_passed,
H A Dbn_prime.c166 int checks = BN_prime_checks_for_size(bits); local
199 i=BN_is_prime_fasttest_ex(ret,checks,ctx,0,cb);
211 for (i=0; i<checks; i++)
238 int BN_is_prime_ex(const BIGNUM *a, int checks, BN_CTX *ctx_passed, BN_GENCB *cb) argument
240 return BN_is_prime_fasttest_ex(a, checks, ctx_passed, 0, cb);
243 int BN_is_prime_fasttest_ex(const BIGNUM *a, int checks, BN_CTX *ctx_passed, argument
256 if (checks == BN_prime_checks)
257 checks = BN_prime_checks_for_size(BN_num_bits(a));
320 for (i = 0; i < checks; i++)
/external/chromium_org/third_party/icu/source/test/intltest/
H A Ditutil.cpp119 : checks(countChecks), dests(countDests) {}
127 ++checks;
129 int32_t &checks; member in class:MyErrorCode
/external/chromium_org/third_party/icu/source/test/cintltst/
H A Dspooftest.c295 int32_t checks; local
299 checks = uspoof_getChecks(sc, &status);
301 TEST_ASSERT_EQ(USPOOF_ALL_CHECKS, checks);
303 checks &= ~(USPOOF_SINGLE_SCRIPT | USPOOF_MIXED_SCRIPT_CONFUSABLE);
304 uspoof_setChecks(sc, checks, &status);
307 TEST_ASSERT_EQ(checks, checks2);
309 /* The checks that were disabled just above are the same ones that the "scMixed" test fails.
337 /* Limit checks to USPOOF_CHAR_LIMIT. Some of the test data has whole script confusables also,
/external/icu4c/test/cintltst/
H A Dspooftest.c319 int32_t checks; local
323 checks = uspoof_getChecks(sc, &status);
325 TEST_ASSERT_EQ(USPOOF_ALL_CHECKS, checks);
327 checks &= ~(USPOOF_SINGLE_SCRIPT | USPOOF_MIXED_SCRIPT_CONFUSABLE);
328 uspoof_setChecks(sc, checks, &status);
331 TEST_ASSERT_EQ(checks, checks2);
333 /* The checks that were disabled just above are the same ones that the "scMixed" test fails.
361 /* Limit checks to USPOOF_CHAR_LIMIT. Some of the test data has whole script confusables also,
/external/icu4c/test/intltest/
H A Ditutil.cpp146 : checks(countChecks), dests(countDests) {}
154 ++checks;
156 int32_t &checks; member in class:MyErrorCode
/external/chromium_org/third_party/icu/source/i18n/
H A Duspoof.cpp98 uspoof_setChecks(USpoofChecker *sc, int32_t checks, UErrorCode *status) { argument
104 // Verify that the requested checks are all ones (bits) that
106 if (checks & ~USPOOF_ALL_CHECKS) {
111 This->fChecks = checks;
243 // These are the checks that need to be done on NFKD input
/external/icu4c/i18n/
H A Duspoof.cpp160 uspoof_setChecks(USpoofChecker *sc, int32_t checks, UErrorCode *status) { argument
166 // Verify that the requested checks are all ones (bits) that
168 if (checks & ~USPOOF_ALL_CHECKS) {
173 This->fChecks = checks;
493 // These are the checks that need to be done on NFD input
/external/chromium_org/gpu/command_buffer/client/
H A Dgles2_implementation.cc2914 const ExtensionCheck checks[] = { local
2924 const size_t kNumChecks = sizeof(checks)/sizeof(checks[0]);
2926 const ExtensionCheck& check = checks[ii];
/external/chromium_org/v8/test/cctest/
H A Dtest-debug.cc817 // checks: An array of expressions and expected results
820 // Structure for holding checks to do.
827 // Array of checks to do.
828 struct EvaluateCheck* checks = NULL; variable in typeref:struct:EvaluateCheck
847 for (int i = 0; checks[i].expr != NULL; i++) {
850 v8::String::New(checks[i].expr),
851 checks[i].expected };
855 v8::String::Utf8Value utf8(checks[i].expected->ToString());
856 V8_Fatal(__FILE__, __LINE__, "%s != %s", checks[i].expr, *utf8);
2464 checks
[all...]
/external/v8/test/cctest/
H A Dtest-debug.cc803 // checks: An array of expressions and expected results
806 // Structure for holding checks to do.
811 // Array of checks to do.
812 struct EvaluateCheck* checks = NULL; variable in typeref:struct:EvaluateCheck
831 for (int i = 0; checks[i].expr != NULL; i++) {
834 v8::String::New(checks[i].expr),
835 checks[i].expected };
839 v8::String::AsciiValue ascii(checks[i].expected->ToString());
840 V8_Fatal(__FILE__, __LINE__, "%s != %s", checks[i].expr, *ascii);
2437 checks
[all...]
/external/chromium_org/v8/src/
H A Dhydrogen-instructions.h747 // only add pieces of information to it (like bounds checks, map checks,
748 // smi checks...).
2686 // type checks if we have already performed an instance type check
2845 InductionVariableCheck* checks() { return checks_; } function in class:v8::InductionVariableData::ChecksRelatedToLength
2946 ChecksRelatedToLength* checks() { return checks_; } function in class:v8::InductionVariableData
5893 // Establish some checks around our packed fields
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...

Completed in 1578 milliseconds