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

/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/chromium/third_party/icu/source/test/intltest/
H A Ditutil.cpp106 : checks(countChecks), dests(countDests) {}
114 ++checks;
116 int32_t &checks; member in class:MyErrorCode
/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/webkit/WebKit/android/
H A DRenderSkinRadio.cpp41 static const char* checks[] = { "btn_check_off.png", variable
57 String path = drawableDirectory + checks[0];
59 path = drawableDirectory + checks[1];
61 path = drawableDirectory + checks[2];
63 path = drawableDirectory + checks[3];
/external/icu4c/test/intltest/
H A Ditutil.cpp119 : checks(countChecks), dests(countDests) {}
127 ++checks;
129 int32_t &checks; member in class:MyErrorCode
/external/chromium/third_party/icu/source/test/cintltst/
H A Dspooftest.c314 int32_t checks; local
318 checks = uspoof_getChecks(sc, &status);
320 TEST_ASSERT_EQ(USPOOF_ALL_CHECKS, checks);
322 checks &= ~(USPOOF_SINGLE_SCRIPT | USPOOF_MIXED_SCRIPT_CONFUSABLE);
323 uspoof_setChecks(sc, checks, &status);
326 TEST_ASSERT_EQ(checks, checks2);
328 /* The checks that were disabled just above are the same ones that the "scMixed" test fails.
356 /* Limit checks to USPOOF_CHAR_LIMIT. Some of the test data has whole script confusables also,
/external/icu4c/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/chromium/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.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/v8/test/cctest/
H A Dtest-debug.cc727 // checks: An array of expressions and expected results
730 // Structure for holding checks to do.
735 // Array of checks to do.
736 struct EvaluateCheck* checks = NULL; variable in typeref:struct:EvaluateCheck
754 for (int i = 0; checks[i].expr != NULL; i++) {
757 v8::String::New(checks[i].expr),
758 checks[i].expected };
762 v8::String::AsciiValue ascii(checks[i].expected->ToString());
763 V8_Fatal(__FILE__, __LINE__, "%s != %s", checks[i].expr, *ascii);
2149 checks
[all...]

Completed in 335 milliseconds